/external/igt-gpu-tools/tests/i915/ |
D | gem_tiled_pread_basic.c | 92 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,
|
D | gem_tiled_wc.c | 96 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()
|
D | gem_tiled_wb.c | 103 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/ |
D | gen_overlay_fonts.py | 195 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/ |
D | pooling.cc | 124 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/ |
D | intrapred_avx2.c | 1989 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/ |
D | intrapred_directional_neon.cc | 987 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/ |
D | ttf.rs | 162 (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/ |
D | ec_asn1.c | 377 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/ |
D | ec_asn1.c | 392 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/ |
D | reconintra.c | 575 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/ |
D | tile.cc | 1569 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()
|
D | prediction.cc | 976 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/ |
D | cstretchengine.cpp | 271 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/ |
D | hb-ot-layout-gpos-table.hh | 488 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/ |
D | tile.h | 519 bool TransformBlock(const Block& block, Plane plane, int base_x, int base_y,
|
/external/mesa3d/src/freedreno/vulkan/ |
D | tu_cmd_buffer.c | 3862 uint32_t base_x, in tu_CmdDispatchBase() argument 3876 info.offsets[0] = base_x; in tu_CmdDispatchBase()
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_cmd_buffer.c | 5801 uint32_t base_x, in radv_CmdDispatchBase() argument 5815 info.offsets[0] = base_x; in radv_CmdDispatchBase()
|