Home
last modified time | relevance | path

Searched refs:scale (Results 1276 - 1300 of 2302) sorted by relevance

1...<<51525354555657585960>>...93

/third_party/skia/bench/
H A DSKPBench.h23 SKPBench(const char* name, const SkPicture*, const SkIRect& devClip, SkScalar scale,
H A DFilteringBench.cpp36 // scale so we will trigger lerping between levels if we mipmapping
37 canvas->scale(0.75f, 0.75f);
/third_party/skia/docs/examples/
H A DCanvas_drawBitmap.cpp19 canvas->scale(4, 4); in REG_FIDDLE()
H A DColor_Type_RGB_101010.cpp7 canvas->scale(16, 16); in REG_FIDDLE()
H A DColor_Type_RGB_565.cpp7 canvas->scale(16, 16); in REG_FIDDLE()
H A DColor_Type_RGB_888.cpp7 canvas->scale(16, 16); in REG_FIDDLE()
H A DImageInfo_MakeA8.cpp19 canvas->scale(4, 4); in REG_FIDDLE()
H A DColor_Type_BGRA_8888.cpp7 canvas->scale(16, 16); in REG_FIDDLE()
H A DColor_Type_RGBA_8888.cpp7 canvas->scale(16, 16); in REG_FIDDLE()
H A DColor_Type_RGBA_1010102.cpp7 canvas->scale(16, 16); in REG_FIDDLE()
H A DColor_Type_ARGB_4444.cpp7 canvas->scale(16, 16); in REG_FIDDLE()
H A D50_percent_gray.cpp30 canvas->scale(0.5, 0.5); in draw()
H A DCanvas_drawPatch_2_a.cpp15 canvas->scale(30, 30); in REG_FIDDLE()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fFboTestCase.hpp59 void readPixels (tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias);
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fFboTestCase.hpp59 void readPixels (tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias);
/kernel/linux/linux-5.10/drivers/clk/rockchip/
H A Dclk.c184 unsigned long scale; in rockchip_fractional_approximation() local
196 * by (scale - fd->nwidth) bits. in rockchip_fractional_approximation()
198 scale = fls_long(*parent_rate / rate - 1); in rockchip_fractional_approximation()
199 if (scale > fd->nwidth) in rockchip_fractional_approximation()
200 rate <<= scale - fd->nwidth; in rockchip_fractional_approximation()
/kernel/linux/linux-5.10/drivers/iio/accel/
H A Dbma400_core.c27 * The G-range selection may be one of 2g, 4g, 8, or 16g. The scale may
63 int scale; member
466 data->scale = BMA400_SCALE_MIN << raw_scale; in bma400_get_accel_scale()
491 data->scale = val; in bma400_set_accel_scale()
690 *val2 = data->scale; in bma400_read_raw()
/kernel/linux/linux-5.10/lib/zstd/
H A Dfse_compress.c589 U64 const rStep = div_u64((((U64)1 << vStepLog) * ToDistribute) + mid, (U32)total); /* scale on remaining */ in FSE_normalizeM2()
622 U64 const scale = 62 - tableLog; in FSE_normalizeCount() local
624 U64 const vStep = 1ULL << (scale - 20); in FSE_normalizeCount()
642 short proba = (short)((count[s] * step) >> scale); in FSE_normalizeCount()
645 proba += (count[s] * step) - ((U64)proba << scale) > restToBeat; in FSE_normalizeCount()
/kernel/linux/linux-6.6/tools/perf/util/
H A Dstat.c404 perf_counts_values__scale(count, config->scale, NULL); in process_counter_values()
538 /* events should have the same name, scale, unit, cgroup but on different PMUs */
544 if (evsel_a->scale != evsel_b->scale) in evsel__is_alias()
739 ret += fprintf(fp, "... scale %d\n", sc.scale); in perf_event__fprintf_stat_config()
/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dfse_compress.c456 U64 const rStep = ZSTD_div64((((U64)1<<vStepLog) * ToDistribute) + mid, (U32)total); /* scale on remaining */ in FSE_normalizeM2()
485 U64 const scale = 62 - tableLog; in FSE_normalizeCount() local
487 U64 const vStep = 1ULL<<(scale-20); in FSE_normalizeCount()
501 short proba = (short)((count[s]*step) >> scale); in FSE_normalizeCount()
504 proba += (count[s]*step) - ((U64)proba<<scale) > restToBeat; in FSE_normalizeCount()
/third_party/ffmpeg/libavfilter/
H A Dvf_colorbalance.c97 const float a = 4.f, b = 0.333f, scale = 0.7f; in get_component() local
99 s *= av_clipf((b - l) * a + 0.5f, 0.f, 1.f) * scale; in get_component()
100 m *= av_clipf((l - b) * a + 0.5f, 0.f, 1.f) * av_clipf((1.f - l - b) * a + 0.5f, 0.f, 1.f) * scale; in get_component()
101 h *= av_clipf((l + b - 1) * a + 0.5f, 0.f, 1.f) * scale; in get_component()
H A Daf_asoftclip.c145 const float scale = oversample > 1 ? oversample * 0.5f : 1.f; in filter_flt() local
247 dst[n] = dst[n * oversample] * scale; in filter_flt()
270 const double scale = oversample > 1 ? oversample * 0.5 : 1.; in filter_dbl() local
372 dst[n] = dst[n * oversample] * scale; in filter_dbl()
/third_party/FreeBSD/sys/dev/usb/
H A Dusb_hid.c839 static const int64_t scale[0x10][2] = { in hid_item_resolution() local
886 (hi->unit_exponent < 0) || (hi->unit_exponent >= nitems(scale))) in hid_item_resolution()
894 resolution = logical_size * multiplier * scale[hi->unit_exponent][0] / in hid_item_resolution()
895 (physical_size * divisor * scale[hi->unit_exponent][1]); in hid_item_resolution()
/third_party/mesa3d/src/broadcom/compiler/
H A Dv3d_nir_lower_io.c582 nir_ssa_def *scale; in v3d_nir_emit_ff_vpm_outputs() local
585 scale = nir_load_viewport_x_scale(b); in v3d_nir_emit_ff_vpm_outputs()
587 scale = nir_load_viewport_y_scale(b); in v3d_nir_emit_ff_vpm_outputs()
588 pos = nir_fmul(b, pos, scale); in v3d_nir_emit_ff_vpm_outputs()
/third_party/mesa3d/src/gallium/frontends/omx/tizonia/
H A Dh264eprc.c247 /* -------------- scale input image --------- */ in enc_HandleTask()
488 priv->scale.xWidth = OMX_VID_ENC_SCALING_WIDTH_DEFAULT; in h264e_prc_ctor()
489 priv->scale.xHeight = OMX_VID_ENC_SCALING_WIDTH_DEFAULT; in h264e_prc_ctor()
536 priv->scale.xWidth : priv->in_port_def_.format.video.nFrameWidth; in h264e_prc_prepare_to_transfer()
538 priv->scale.xHeight : priv->in_port_def_.format.video.nFrameHeight; in h264e_prc_prepare_to_transfer()

Completed in 18 milliseconds

1...<<51525354555657585960>>...93