Home
last modified time | relevance | path

Searched refs:scale (Results 751 - 775 of 2778) sorted by relevance

1...<<31323334353637383940>>...112

/kernel/linux/linux-5.10/tools/perf/util/
H A Dpmu.h53 double scale; member
69 double scale; member
120 int perf_pmu__convert_scale(const char *scale, char **end, double *sval);
/kernel/linux/linux-6.6/tools/perf/tests/
H A Devent_update.c37 TEST_ASSERT_VAL("wrong scale", ev->scale.scale == 0.123); in process_event_scale()
101 evsel->scale = 0.123; in test__event_update()
103 TEST_ASSERT_VAL("failed to synthesize attr update scale", in test__event_update()
/third_party/ffmpeg/tests/fate/
H A Ddnxhd.mak17 fate-dnxhd-mbaff: CMD = framecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/dnxhd100_cid1260.mov -pix_fmt yuv422p10le -vf scale
18 fate-dnxhr-444: CMD = framecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/dnxhr444_cid1270.mov -pix_fmt yuv444p10le -vf scale
19 fate-dnxhr-12bit: CMD = framecrc -flags +bitexact -idct simple -i $(TARGET_SAMPLES)/dnxhd/dnxhr_cid1271_12bit.mov -pix_fmt yuv422p12le -vf scale
H A Dea.mak5 fate-ea-cmv: CMD = framecrc -i $(TARGET_SAMPLES)/ea-cmv/TITLE.CMV -pix_fmt rgb24 -vf scale
14 fate-ea-tgv-1: CMD = framecrc -i $(TARGET_SAMPLES)/ea-tgv/INTRO8K-partial.TGV -pix_fmt rgb24 -an -vf scale
15 fate-ea-tgv-2: CMD = framecrc -i $(TARGET_SAMPLES)/ea-tgv/INTEL_S.TGV -pix_fmt rgb24 -an -vf scale
/third_party/skia/src/core/
H A DSkPaintPriv.cpp115 SkScalar scale = std::max(sx, sy); in ComputeResScaleForStroking() local
116 if (scale > 0) { in ComputeResScaleForStroking()
117 return scale; in ComputeResScaleForStroking()
/third_party/optimized-routines/math/
H A Dv_exp2f_1u.c46 v_f32_t n, r, scale, poly, absn; in exp2f_1u() local
62 scale = v_as_f32_u32 (e + v_u32 (0x3f800000)); in exp2f_1u()
73 return scale * poly; in exp2f_1u()
H A Dv_expf_1u.c49 v_f32_t n, r, scale, poly, absn, z; in expf_1u() local
67 scale = v_as_f32_u32 (e + v_u32 (0x3f800000)); in expf_1u()
78 return scale * poly; in expf_1u()
/third_party/skia/include/core/
H A DSkColorPriv.h17 byte into a scale value, so that we can say scale * value >> 8 instead of
140 static SK_ALWAYS_INLINE uint32_t SkAlphaMulQ(uint32_t c, unsigned scale) { in SkAlphaMulQ() argument
143 uint32_t rb = ((c & mask) * scale) >> 8; in SkAlphaMulQ()
144 uint32_t ag = ((c >> 8) & mask) * scale; in SkAlphaMulQ()
/third_party/skia/gm/
H A Dgiantbitmap.cpp112 SkScalar scale = 11*SK_Scalar1/12; variable
113 m.setScale(scale, scale);
/third_party/skia/docs/examples/
H A Dexample3ps.cpp14 canvas->scale(15, -15); in REG_FIDDLE()
50 canvas->scale(-1, 1); in REG_FIDDLE()
56 canvas->scale(15, 15); in REG_FIDDLE()
/third_party/toybox/toys/pending/
H A Dbc.c176 BcStatus bc_num_add(BcNum *a, BcNum *b, BcNum *c, size_t scale);
177 BcStatus bc_num_sub(BcNum *a, BcNum *b, BcNum *c, size_t scale);
178 BcStatus bc_num_mul(BcNum *a, BcNum *b, BcNum *c, size_t scale);
179 BcStatus bc_num_div(BcNum *a, BcNum *b, BcNum *c, size_t scale);
180 BcStatus bc_num_mod(BcNum *a, BcNum *b, BcNum *c, size_t scale);
181 BcStatus bc_num_pow(BcNum *a, BcNum *b, BcNum *c, size_t scale);
182 BcStatus bc_num_sqrt(BcNum *a, BcNum *b, size_t scale);
183 BcStatus bc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d, size_t scale);
185 size_t bc_num_addReq(BcNum *a, BcNum *b, size_t scale);
187 size_t bc_num_mulReq(BcNum *a, BcNum *b, size_t scale);
545 size_t scale; global() member
1134 bc_num_setToZero(BcNum *n, size_t scale) bc_num_setToZero() argument
1259 bc_num_retireMul(BcNum *n, size_t scale, int neg1, int neg2) bc_num_retireMul() argument
1303 bc_num_inv(BcNum *a, BcNum *b, size_t scale) bc_num_inv() argument
1559 bc_num_m(BcNum *a, BcNum *b, BcNum *c, size_t scale) bc_num_m() argument
1599 bc_num_d(BcNum *a, BcNum *b, BcNum *c, size_t scale) bc_num_d() argument
1662 bc_num_r(BcNum *a, BcNum *b, BcNum *c, BcNum *d, size_t scale, size_t ts) bc_num_r() argument
1697 bc_num_rem(BcNum *a, BcNum *b, BcNum *c, size_t scale) bc_num_rem() argument
1710 bc_num_p(BcNum *a, BcNum *b, BcNum *c, size_t scale) bc_num_p() argument
1793 bc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale, BcNumBinaryOp op, size_t req) bc_num_binary() argument
2163 bc_num_addReq(BcNum *a, BcNum *b, size_t scale) bc_num_addReq() argument
2167 bc_num_mulReq(BcNum *a, BcNum *b, size_t scale) bc_num_mulReq() argument
2171 bc_num_powReq(BcNum *a, BcNum *b, size_t scale) bc_num_powReq() argument
2175 bc_num_add(BcNum *a, BcNum *b, BcNum *c, size_t scale) bc_num_add() argument
2180 bc_num_sub(BcNum *a, BcNum *b, BcNum *c, size_t scale) bc_num_sub() argument
2185 bc_num_mul(BcNum *a, BcNum *b, BcNum *c, size_t scale) bc_num_mul() argument
2189 bc_num_div(BcNum *a, BcNum *b, BcNum *c, size_t scale) bc_num_div() argument
2193 bc_num_mod(BcNum *a, BcNum *b, BcNum *c, size_t scale) bc_num_mod() argument
2197 bc_num_pow(BcNum *a, BcNum *b, BcNum *c, size_t scale) bc_num_pow() argument
2201 bc_num_sqrt(BcNum *a, BcNum *b, size_t scale) bc_num_sqrt() argument
2302 bc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d, size_t scale) bc_num_divmod() argument
[all...]
/foundation/multimedia/camera_framework/frameworks/native/camera/src/output/
H A Dmetadata_output.cpp440 constexpr int32_t scale = 1000000; in ProcessRectBox() local
446 topLeftX = scale - offsetBottomRightY; in ProcessRectBox()
447 topLeftY = scale - offsetBottomRightX; in ProcessRectBox()
456 topLeftX = scale - offsetBottomRightY; in ProcessRectBox()
462 topLeftX = topLeftX > scale ? scale : topLeftX; in ProcessRectBox()
464 topLeftY = topLeftY > scale ? scale : topLeftY; in ProcessRectBox()
466 return (Rect){ topLeftX / scale, topLeftY / scale, widt in ProcessRectBox()
[all...]
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/
H A Dsi2168.c163 c->cnr.stat[0].scale = FE_SCALE_DECIBEL; in si2168_read_status()
167 c->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE; in si2168_read_status()
195 c->post_bit_error.stat[0].scale = FE_SCALE_COUNTER; in si2168_read_status()
197 c->post_bit_count.stat[0].scale = FE_SCALE_COUNTER; in si2168_read_status()
200 c->post_bit_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE; in si2168_read_status()
201 c->post_bit_count.stat[0].scale = FE_SCALE_NOT_AVAILABLE; in si2168_read_status()
218 c->block_error.stat[0].scale = FE_SCALE_COUNTER; in si2168_read_status()
221 c->block_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE; in si2168_read_status()
533 c->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE; in si2168_init()
535 c->post_bit_error.stat[0].scale in si2168_init()
[all...]
H A Dtc90522.c252 stats->stat[0].scale = FE_SCALE_NOT_AVAILABLE; in tc90522s_get_frontend()
278 stats->stat[0].scale = FE_SCALE_DECIBEL; in tc90522s_get_frontend()
288 stats->stat[i].scale = FE_SCALE_NOT_AVAILABLE; in tc90522s_get_frontend()
291 stats->stat[i].scale = FE_SCALE_COUNTER; in tc90522s_get_frontend()
301 stats->stat[i].scale = FE_SCALE_NOT_AVAILABLE; in tc90522s_get_frontend()
304 stats->stat[i].scale = FE_SCALE_COUNTER; in tc90522s_get_frontend()
410 stats->stat[0].scale = FE_SCALE_NOT_AVAILABLE; in tc90522t_get_frontend()
438 stats->stat[0].scale = FE_SCALE_DECIBEL; in tc90522t_get_frontend()
448 stats->stat[i].scale = FE_SCALE_NOT_AVAILABLE; in tc90522t_get_frontend()
451 stats->stat[i].scale in tc90522t_get_frontend()
[all...]
/kernel/linux/linux-6.6/drivers/media/dvb-frontends/
H A Dtc90522.c252 stats->stat[0].scale = FE_SCALE_NOT_AVAILABLE; in tc90522s_get_frontend()
278 stats->stat[0].scale = FE_SCALE_DECIBEL; in tc90522s_get_frontend()
288 stats->stat[i].scale = FE_SCALE_NOT_AVAILABLE; in tc90522s_get_frontend()
291 stats->stat[i].scale = FE_SCALE_COUNTER; in tc90522s_get_frontend()
301 stats->stat[i].scale = FE_SCALE_NOT_AVAILABLE; in tc90522s_get_frontend()
304 stats->stat[i].scale = FE_SCALE_COUNTER; in tc90522s_get_frontend()
410 stats->stat[0].scale = FE_SCALE_NOT_AVAILABLE; in tc90522t_get_frontend()
438 stats->stat[0].scale = FE_SCALE_DECIBEL; in tc90522t_get_frontend()
448 stats->stat[i].scale = FE_SCALE_NOT_AVAILABLE; in tc90522t_get_frontend()
451 stats->stat[i].scale in tc90522t_get_frontend()
[all...]
H A Dsi2168.c163 c->cnr.stat[0].scale = FE_SCALE_DECIBEL; in si2168_read_status()
167 c->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE; in si2168_read_status()
195 c->post_bit_error.stat[0].scale = FE_SCALE_COUNTER; in si2168_read_status()
197 c->post_bit_count.stat[0].scale = FE_SCALE_COUNTER; in si2168_read_status()
200 c->post_bit_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE; in si2168_read_status()
201 c->post_bit_count.stat[0].scale = FE_SCALE_NOT_AVAILABLE; in si2168_read_status()
218 c->block_error.stat[0].scale = FE_SCALE_COUNTER; in si2168_read_status()
221 c->block_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE; in si2168_read_status()
521 c->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE; in si2168_init()
523 c->post_bit_error.stat[0].scale in si2168_init()
[all...]
/kernel/linux/linux-6.6/drivers/iio/
H A Dinkern.c630 unsigned int scale) in iio_convert_raw_to_processed_unlocked()
666 * If no channel scaling is available apply consumer scale to in iio_convert_raw_to_processed_unlocked()
669 *processed = raw * scale; in iio_convert_raw_to_processed_unlocked()
675 *processed = raw64 * scale_val * scale; in iio_convert_raw_to_processed_unlocked()
682 *processed += div_s64(raw64 * (s64)scale_val2 * scale, in iio_convert_raw_to_processed_unlocked()
690 *processed += div_s64(raw64 * (s64)scale_val2 * scale, in iio_convert_raw_to_processed_unlocked()
694 *processed = div_s64(raw64 * (s64)scale_val * scale, in iio_convert_raw_to_processed_unlocked()
698 *processed = (raw64 * (s64)scale_val * scale) >> scale_val2; in iio_convert_raw_to_processed_unlocked()
708 int *processed, unsigned int scale) in iio_convert_raw_to_processed()
720 scale); in iio_convert_raw_to_processed()
628 iio_convert_raw_to_processed_unlocked(struct iio_channel *chan, int raw, int *processed, unsigned int scale) iio_convert_raw_to_processed_unlocked() argument
707 iio_convert_raw_to_processed(struct iio_channel *chan, int raw, int *processed, unsigned int scale) iio_convert_raw_to_processed() argument
754 iio_read_channel_processed_scale(struct iio_channel *chan, int *val, unsigned int scale) iio_read_channel_processed_scale() argument
[all...]
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_lut3d.asm52 .scale: resd 3
61 .scale: resd 3
168 ; 4 - scale
171 ; scale
173 mulps m5, m5, %4 ; v * scale
195 ; 2 - scale
491 mulss xm1, xm0, dword [ctxq + LUT3DContext.scale + 0*4]
496 mulss xm1, xm0, dword [ctxq + LUT3DContext.scale + 1*4]
501 mulss xm1, xm0, dword [ctxq + LUT3DContext.scale + 2*4]
525 VBROADCASTSS m0, dword [prelutq + Lut3DPreLut.scale
[all...]
/third_party/mesa3d/src/util/format/
H A Du_format_zs.c73 const float scale = 0xffff; in z32_float_to_z16_unorm() local
74 return (uint16_t)(z * scale + 0.5f); in z32_float_to_z16_unorm()
80 const float scale = 1.0 / 0xffff; in z16_unorm_to_z32_float() local
81 return (float)(z * scale); in z16_unorm_to_z32_float()
87 const double scale = 0xffffff; in z32_float_to_z24_unorm() local
88 return (uint32_t)(z * scale) & 0xffffff; in z32_float_to_z24_unorm()
94 const double scale = 1.0 / 0xffffff; in z24_unorm_to_z32_float() local
95 return (float)(z * scale); in z24_unorm_to_z32_float()
101 const double scale = 0xffffffff; in z32_float_to_z32_unorm() local
102 return (uint32_t)(z * scale); in z32_float_to_z32_unorm()
108 const double scale = 1.0 / 0xffffffff; z32_unorm_to_z32_float() local
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_linearization_info.cpp143 // Find the scale for this plane. in dng_linearize_plane()
154 real64 scale = 1.0 / minRange; in dng_linearize_plane() local
156 fScale = (real32) scale; in dng_linearize_plane()
199 x *= scale; in dng_linearize_plane()
275 x *= scale; in dng_linearize_plane()
308 // Calculate scale table, if any. in dng_linearize_plane()
359 // Apply scale. in dng_linearize_plane()
361 y *= scale; in dng_linearize_plane()
389 // Else we only do the scaling operation in the scale table. in dng_linearize_plane()
412 // Apply scale in dng_linearize_plane()
488 real32 scale = fScale; Process() local
869 real32 scale = fScale; Process() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/animation/
H A Danimatable_arithmetic_proxy.h51 AnimatableArithmeticProxy Multiply(const float scale) const override
56 return AnimatableArithmeticProxy(object_->Multiply(scale));
/foundation/barrierfree/accessibility/frameworks/common/src/
H A Daccessibility_caption.cpp42 void CaptionProperty::SetFontScale(int32_t scale) in SetFontScale() argument
44 fontScale_ = scale; in SetFontScale()
/third_party/ffmpeg/libavcodec/ppc/
H A Dhevcdsp_template.c35 scale(res, res_packed, shift); in FUNC()
41 scale(res, res_packed, shift2); in FUNC()
/third_party/ffmpeg/libavcodec/
H A Dmpegvideoencdsp.h34 int16_t basis[64], int scale);
35 void (*add_8x8basis)(int16_t rem[64], int16_t basis[64], int scale);
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/
H A DMatrixStack.hpp38 void scale(float x, float y, float z);
39 void scale(double x, double y, double z);

Completed in 23 milliseconds

1...<<31323334353637383940>>...112