/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | numberformatter.h | 966 * Note: In ICU4J, this functionality is accomplished via the scale of the BigDecimal rounding increment. 1567 Scale scale; // = Scale(); (benign value) member 1596 symbols.copyErrorTo(status) || scale.copyErrorTo(status) || usage.copyErrorTo(status) || in copyErrorTo() 2174 * Sets a scale (multiplier) to be used to scale the number by an arbitrary amount before formatting. 2186 * NumberFormatter::with().scale(Scale::powerOfTen(2)) 2192 * @param scale 2193 * The scale to apply when rendering numbers. 2197 Derived scale(const Scale &scale) cons [all...] |
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | numberformatter.h | 962 * Note: In ICU4J, this functionality is accomplished via the scale of the BigDecimal rounding increment. 1561 Scale scale; // = Scale(); (benign value) member 1590 symbols.copyErrorTo(status) || scale.copyErrorTo(status) || usage.copyErrorTo(status) || in copyErrorTo() 2168 * Sets a scale (multiplier) to be used to scale the number by an arbitrary amount before formatting. 2180 * NumberFormatter::with().scale(Scale::powerOfTen(2)) 2186 * @param scale 2187 * The scale to apply when rendering numbers. 2191 Derived scale(const Scale &scale) cons [all...] |
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
H A D | vl_compositor_gfx.c | 587 // scale in calc_drawn_area() 588 result.x0 = tl.x * layer->viewport.scale[0] + layer->viewport.translate[0]; in calc_drawn_area() 589 result.y0 = tl.y * layer->viewport.scale[1] + layer->viewport.translate[1]; in calc_drawn_area() 590 result.x1 = br.x * layer->viewport.scale[0] + layer->viewport.translate[0]; in calc_drawn_area() 591 result.y1 = br.y * layer->viewport.scale[1] + layer->viewport.translate[1]; in calc_drawn_area() 623 layer->viewport.scale[0] = c->fb_state.width; in gen_vertex_data() 624 layer->viewport.scale[1] = c->fb_state.height; in gen_vertex_data()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/ |
H A D | vktTextureCompressedFormatTests.cpp | 198 static void computeScaleAndBias (const tcu::ConstPixelBufferAccess& reference, const tcu::ConstPixelBufferAccess& result, tcu::Vec4& scale, tcu::Vec4& bias) in computeScaleAndBias() argument 234 scale[c] = (maxVal[c] < eps) ? 1.0f : (1.0f / maxVal[c]); in computeScaleAndBias() 235 bias[c] = (c == 3) ? (1.0f - maxVal[c]*scale[c]) : (0.0f - minVal[c]*scale[c]); in computeScaleAndBias() 239 scale[c] = 1.0f / (maxVal[c] - minVal[c]); in computeScaleAndBias() 240 bias[c] = 0.0f - minVal[c]*scale[c]; in computeScaleAndBias()
|
/third_party/skia/src/core/ |
H A D | SkMipmap.cpp | 724 // Use the smallest scale to match the GPU impl. in ComputeLevel() 725 const SkScalar scale = std::min(scaleSize.width(), scaleSize.height()); in ComputeLevel() local 727 // Ideally we'd pick the smaller scale, to match Ganesh. But ignoring one of the in ComputeLevel() 730 const SkScalar scale = SkScalarSqrt(scaleSize.width() * scaleSize.height()); in ComputeLevel() local 733 if (scale >= SK_Scalar1 || scale <= 0 || !SkScalarIsFinite(scale)) { in ComputeLevel() 737 SkScalar L = -SkScalarLog2(scale); in ComputeLevel()
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | numberformatter.h | 929 * Note: In ICU4J, this functionality is accomplished via the scale of the BigDecimal rounding increment. 1524 Scale scale; // = Scale(); (benign value) member 1553 symbols.copyErrorTo(status) || scale.copyErrorTo(status) || usage.copyErrorTo(status) || in copyErrorTo() 2131 * Sets a scale (multiplier) to be used to scale the number by an arbitrary amount before formatting. 2143 * NumberFormatter::with().scale(Scale::powerOfTen(2)) 2149 * @param scale 2150 * The scale to apply when rendering numbers. 2154 Derived scale(const Scale &scale) cons [all...] |
/third_party/skia/tests/ |
H A D | CanvasTest.cpp | 256 c->scale(SkIntToScalar(1), SkIntToScalar(2)); 337 testCanvas->scale(SkIntToScalar(2), SkIntToScalar(1)); 367 c->scale(SkIntToScalar(3), SkIntToScalar(3)); 384 c->scale(SkIntToScalar(3), SkIntToScalar(3)); 478 canvas.scale(0.5f, 0.75f); in DEF_TEST() 485 filterCanvas.scale(0.75f, 0.5f); in DEF_TEST()
|
/third_party/skia/third_party/externals/freetype/src/base/ |
H A D | ftcalc.c | 772 * we also check that no value becomes zero if we have to scale. in FT_BASE_DEF() 792 FT_Fixed scale = FT_DivFix( maxval, 23170 ); in FT_BASE_DEF() local 795 if ( !FT_DivFix( nonzero_minval, scale ) ) in FT_BASE_DEF() 798 m.xx = FT_DivFix( matrix->xx, scale ); in FT_BASE_DEF() 799 m.xy = FT_DivFix( matrix->xy, scale ); in FT_BASE_DEF() 800 m.yx = FT_DivFix( matrix->yx, scale ); in FT_BASE_DEF() 801 m.yy = FT_DivFix( matrix->yy, scale ); in FT_BASE_DEF()
|
/third_party/skia/third_party/externals/freetype/src/truetype/ |
H A D | ttobjs.c | 930 tt_metrics->scale = 0; in FT_LOCAL_DEF() 996 FT_Fixed scale = size->ttmetrics.scale >> 6; in FT_LOCAL_DEF() local 1004 size->cvt[i] = FT_MulFix( face->cvt[i], scale ); in FT_LOCAL_DEF() 1423 size->ttmetrics.scale = size_metrics->x_scale; in FT_LOCAL_DEF() 1431 size->ttmetrics.scale = size_metrics->y_scale; in FT_LOCAL_DEF()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | ScaledNumber.h | 11 // another represents a scale. The functions are helpers and live in the 35 /// Maximum scale; same as APFloat for easy debug printing. 38 /// Maximum scale; same as APFloat for easy debug printing. 239 /// Compare two 64-bit numbers with different scales. Given that the scale of 260 // Check for the scale. Use getLgFloor to be sure that the scale difference in compare() 282 /// As a convenience, returns the matching scale. If the output value of one 283 /// number is zero, returns the scale of the other. If both are zero, which 284 /// scale is returned is unspecified. 338 assert(LScale < INT16_MAX && "scale to in getSum() 659 int64_t scale(int64_t N) const { scale() function in llvm::ScaledNumber 770 uint64_t ScaledNumber<DigitsT>::scale(uint64_t N) const { scale() function in llvm::ScaledNumber [all...] |
/third_party/vk-gl-cts/modules/gles3/performance/ |
H A D | es3pShaderOptimizationTests.cpp | 364 float scale = 0.0f; in generateProgramData() local 366 scale += 3.2f*(float)i + 4.6f; in generateProgramData() 367 scale = 1.0f / scale; in generateProgramData() 377 " value *= " + toString(scale) + ";\n" in generateProgramData() 386 " value *= " + toString(scale) + ";\n"; in generateProgramData()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/ |
H A D | vktTextureCompressedFormatTests.cpp | 198 static void computeScaleAndBias (const tcu::ConstPixelBufferAccess& reference, const tcu::ConstPixelBufferAccess& result, tcu::Vec4& scale, tcu::Vec4& bias) in computeScaleAndBias() argument 234 scale[c] = (maxVal[c] < eps) ? 1.0f : (1.0f / maxVal[c]); in computeScaleAndBias() 235 bias[c] = (c == 3) ? (1.0f - maxVal[c]*scale[c]) : (0.0f - minVal[c]*scale[c]); in computeScaleAndBias() 239 scale[c] = 1.0f / (maxVal[c] - minVal[c]); in computeScaleAndBias() 240 bias[c] = 0.0f - minVal[c]*scale[c]; in computeScaleAndBias()
|
/third_party/vk-gl-cts/modules/gles2/performance/ |
H A D | es2pShaderOptimizationTests.cpp | 361 float scale = 0.0f; in generateProgramData() local 363 scale += 3.2f*(float)i + 4.6f; in generateProgramData() 364 scale = 1.0f / scale; in generateProgramData() 374 " value *= " + toString(scale) + ";\n" in generateProgramData() 383 " value *= " + toString(scale) + ";\n"; in generateProgramData()
|
/applications/sample/camera/launcher/launcher/src/main/cpp/ |
H A D | view_group_page.h | 38 void SetScale(double scale);
|
/foundation/arkui/ace_engine/frameworks/core/components/scroll/ |
H A D | scroll_fade_effect.h | 46 void SetOpacityAndScale(double opacity, double scale);
|
/foundation/arkui/ace_engine/frameworks/core/pipeline/base/ |
H A D | scoped_canvas_state.h | 77 canvas_->scale(-1.0, 1.0); in FlipHorizontal()
|
/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/vertexprimitive/ |
H A D | geometry_arc.h | 62 * @param scale Is the ratio between viewport coordinates and logical coordinates. 67 void SetApproximationScale(float scale); 71 * @param scale Is the ratio between viewport coordinates and logical coordinates.
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/inc/hw/ |
H A D | ipp.h | 54 uint16_t scale; member
|
/kernel/linux/linux-5.10/tools/testing/selftests/zram/ |
H A D | zram01.sh | 55 echo "zram compression ratio: $(echo "scale=2; $v / 100 " | bc):1: OK"
|
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/inc/hw/ |
H A D | ipp.h | 54 uint16_t scale; member
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/ |
H A D | intel_ddi_buf_trans.h | 23 u8 scale; /* scale value */ member 24 u8 enable; /* scale enable */
|
/kernel/linux/linux-6.6/tools/testing/selftests/zram/ |
H A D | zram01.sh | 55 echo "zram compression ratio: $(echo "scale=2; $v / 100 " | bc):1: OK"
|
/third_party/ffmpeg/libavcodec/ |
H A D | mdct15.h | 59 int ff_mdct15_init(MDCT15Context **ps, int inverse, int N, double scale);
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
H A D | matrix_transform_2d.hpp | 48 /// Builds a scale 3 * 3 matrix created from a vector of 2 components. 51 /// @param v Coordinates of a scale vector. 53 GLM_FUNC_QUALIFIER tmat3x3<T, P> scale(
|
/third_party/skia/docs/examples/ |
H A D | convex_overstroke_quad.cpp | 9 canvas->scale(SCALE, SCALE); in REG_FIDDLE()
|