Home
last modified time | relevance | path

Searched refs:base_x (Results 1 – 18 of 18) sorted by relevance

/external/igt-gpu-tools/tests/i915/
Dgem_tiled_pread_basic.c92 int base_x, base_y; member
109 dbg->base_x = tile_index % tiles_per_row * (tile_width/4); in calculate_expected()
115 return (dbg->base_y + dbg->tile_y) * WIDTH + dbg->base_x + dbg->tile_x; in calculate_expected()
216 dbg.base_x, dbg.base_y,
Dgem_tiled_wc.c96 int base_x = tile_index % tiles_per_row * (tile_width/4); in calculate_expected() local
103 __func__, offset, base_x, base_y, tile_x, tile_y, in calculate_expected()
104 (base_y + tile_y) * WIDTH + base_x + tile_x); in calculate_expected()
105 return (base_y + tile_y) * WIDTH + base_x + tile_x; in calculate_expected()
Dgem_tiled_wb.c103 int base_x = tile_index % tiles_per_row * (tile_width/4); in calculate_expected() local
109 igt_debug("%3d, %3d, %3d,%3d\n", base_x, base_y, tile_x, tile_y); in calculate_expected()
110 return (base_y + tile_y) * WIDTH + base_x + tile_x; in calculate_expected()
/external/angle/src/libANGLE/
Dgen_overlay_fonts.py195 base_x = (charIndex % output_cols) * glyph_width
217 base_x += offset_x
230 font_array_col = (base_x + x) // 32
231 font_array_bit = (base_x + x) % 32
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/kernels/
Dpooling.cc124 const int64_t base_x = -attr.padding.prepended.w; in GenerateAveragePoolingCode() local
127 !(x_in_bounds(base_x) && in GenerateAveragePoolingCode()
128 x_in_bounds(base_x + output_shape_max_x * attr.strides.w) && in GenerateAveragePoolingCode()
/external/libaom/libaom/aom_dsp/x86/
Dintrapred_avx2.c1989 int base_x = (-y * dx) >> frac_bits_x; in highbd_dr_prediction_32bit_z2_Nx4_avx2() local
1991 if (base_x < (min_base_x - 1)) { in highbd_dr_prediction_32bit_z2_Nx4_avx2()
1992 base_shift = (min_base_x - base_x) >> upsample_above; in highbd_dr_prediction_32bit_z2_Nx4_avx2()
1995 (min_base_x - base_x + upsample_above) >> upsample_above; in highbd_dr_prediction_32bit_z2_Nx4_avx2()
2007 a0_x128 = _mm_loadu_si128((__m128i *)(above + base_x + base_shift)); in highbd_dr_prediction_32bit_z2_Nx4_avx2()
2037 if (base_x < min_base_x) { in highbd_dr_prediction_32bit_z2_Nx4_avx2()
2115 int base_x = (-y * dx) >> frac_bits_x; in highbd_dr_prediction_z2_Nx4_avx2() local
2117 if (base_x < (min_base_x - 1)) { in highbd_dr_prediction_z2_Nx4_avx2()
2118 base_shift = (min_base_x - base_x) >> upsample_above; in highbd_dr_prediction_z2_Nx4_avx2()
2121 (min_base_x - base_x + upsample_above) >> upsample_above; in highbd_dr_prediction_z2_Nx4_avx2()
[all …]
/external/libgav1/libgav1/src/dsp/arm/
Dintrapred_directional_neon.cc987 const int16x4_t base_x = vadd_s16(vdup_n_s16(top_base_x), index_offset); in DirectionalZone1_4xH() local
988 const uint16x4_t max_base_mask = vclt_s16(base_x, max_base); in DirectionalZone1_4xH()
1043 int16x8_t base_x = vaddq_s16(vdupq_n_s16(top_base_x), index_offset); in DirectionalZone1_WxH() local
1047 const uint16x8_t max_base_mask = vcltq_s16(base_x, max_base_x); in DirectionalZone1_WxH()
1058 base_x = vaddq_s16(base_x, block_step); in DirectionalZone1_WxH()
1131 int16x8_t base_x = vaddq_s16(vdupq_n_s16(top_base_x), index_offset); in DirectionalZone1_Large() local
1138 base_x = vaddq_s16(base_x, block_step)) { in DirectionalZone1_Large()
1139 const uint16x8_t max_base_mask = vcltq_s16(base_x, max_base_x); in DirectionalZone1_Large()
/external/rust/crates/plotters/src/style/font/
Dttf.rs162 (base_x, base_y): (i32, i32), in draw() argument
176 result = draw(x + base_x, y + base_y, v); in draw()
/external/boringssl/src/crypto/ec_extra/
Dec_asn1.c377 CBS prime, a, b, base_x, base_y, order; in EC_KEY_parse_parameters() local
378 if (!parse_explicit_prime_curve(cbs, &prime, &a, &b, &base_x, &base_y, in EC_KEY_parse_parameters()
396 integers_equal(&base_x, curve->params + param_len * 3, param_len) && in EC_KEY_parse_parameters()
/external/rust/crates/quiche/deps/boringssl/src/crypto/ec_extra/
Dec_asn1.c392 CBS prime, a, b, base_x, base_y, order; in EC_KEY_parse_parameters() local
393 if (!parse_explicit_prime_curve(cbs, &prime, &a, &b, &base_x, &base_y, in EC_KEY_parse_parameters()
411 integers_equal(&base_x, curve->params + param_len * 3, param_len) && in EC_KEY_parse_parameters()
/external/libaom/libaom/av1/common/
Dreconintra.c575 const int base_x = x >> frac_bits_x; in av1_dr_prediction_z2_c() local
576 if (base_x >= min_base_x) { in av1_dr_prediction_z2_c()
578 val = above[base_x] * (32 - shift) + above[base_x + 1] * shift; in av1_dr_prediction_z2_c()
713 const int base_x = x >> frac_bits_x; in av1_highbd_dr_prediction_z2_c() local
714 if (base_x >= min_base_x) { in av1_highbd_dr_prediction_z2_c()
716 val = above[base_x] * (32 - shift) + above[base_x + 1] * shift; in av1_highbd_dr_prediction_z2_c()
/external/libgav1/libgav1/src/tile/
Dtile.cc1569 bool Tile::TransformBlock(const Block& block, Plane plane, int base_x, in TransformBlock() argument
1575 const int start_x = base_x + MultiplyBy4(x); in TransformBlock()
1784 const int base_x = MultiplyBy4(column_chunk4x4 >> subsampling_x); in Residual() local
1786 if (!TransformTree(block, base_x, base_y, plane_size, mode)) { in Residual()
1790 const int base_x = MultiplyBy4(block.column4x4 >> subsampling_x); in Residual() local
1799 block, static_cast<Plane>(plane), base_x, base_y, tx_size, in Residual()
2023 const int base_x = MultiplyBy4(block.column4x4 >> subsampling_x); in ComputePrediction() local
2038 IntraPrediction, block, static_cast<Plane>(plane), base_x, base_y, in ComputePrediction()
2089 if (!InterPrediction(block, static_cast<Plane>(plane), base_x + x, in ComputePrediction()
Dprediction.cc976 const int64_t base_x = static_cast<int64_t>(orig_x) * scale_x - in ScaleMotionVector() local
980 base_x, kReferenceScaleShift + kSubPixelBits - kScaleSubPixelBits) + in ScaleMotionVector()
/external/pdfium/core/fxge/dib/
Dcstretchengine.cpp271 double base_x = m_DestWidth > 0 ? 0.0f : m_DestWidth; in CStretchEngine() local
273 double src_left = scale_x * (clip_rect.left + base_x); in CStretchEngine()
274 double src_right = scale_x * (clip_rect.right + base_x); in CStretchEngine()
/external/harfbuzz_ng/src/
Dhb-ot-layout-gpos-table.hh488 float mark_x, mark_y, base_x, base_y; in apply() local
492 glyph_anchor.get_anchor (c, buffer->info[glyph_pos].codepoint, &base_x, &base_y); in apply()
495 o.x_offset = roundf (base_x - mark_x); in apply()
/external/libgav1/libgav1/src/
Dtile.h519 bool TransformBlock(const Block& block, Plane plane, int base_x, int base_y,
/external/mesa3d/src/freedreno/vulkan/
Dtu_cmd_buffer.c3862 uint32_t base_x, in tu_CmdDispatchBase() argument
3876 info.offsets[0] = base_x; in tu_CmdDispatchBase()
/external/mesa3d/src/amd/vulkan/
Dradv_cmd_buffer.c5801 uint32_t base_x, in radv_CmdDispatchBase() argument
5815 info.offsets[0] = base_x; in radv_CmdDispatchBase()