/external/libaom/libaom/av1/common/x86/ |
D | selfguided_sse4.c | 48 int buf_stride) { in integral_images() argument 56 A[(i + 1) * buf_stride] = B[(i + 1) * buf_stride] = 0; in integral_images() 65 const __m128i above1 = xx_load_128(B + ABj + i * buf_stride); in integral_images() 66 const __m128i above2 = xx_load_128(A + ABj + i * buf_stride); in integral_images() 77 xx_store_128(B + ABj + (i + 1) * buf_stride, row1); in integral_images() 78 xx_store_128(A + ABj + (i + 1) * buf_stride, row2); in integral_images() 92 int32_t *B, int buf_stride) { in integral_images_highbd() argument 100 A[(i + 1) * buf_stride] = B[(i + 1) * buf_stride] = 0; in integral_images_highbd() 109 const __m128i above1 = xx_load_128(B + ABj + i * buf_stride); in integral_images_highbd() 110 const __m128i above2 = xx_load_128(A + ABj + i * buf_stride); in integral_images_highbd() [all …]
|
D | selfguided_avx2.c | 88 int buf_stride) { in integral_images() argument 95 A[(i + 1) * buf_stride] = B[(i + 1) * buf_stride] = 0; in integral_images() 104 const __m256i above1 = yy_load_256(B + ABj + i * buf_stride); in integral_images() 105 const __m256i above2 = yy_load_256(A + ABj + i * buf_stride); in integral_images() 118 yy_store_256(B + ABj + (i + 1) * buf_stride, row1); in integral_images() 119 yy_store_256(A + ABj + (i + 1) * buf_stride, row2); in integral_images() 135 int32_t *B, int buf_stride) { in integral_images_highbd() argument 143 A[(i + 1) * buf_stride] = B[(i + 1) * buf_stride] = 0; in integral_images_highbd() 152 const __m256i above1 = yy_load_256(B + ABj + i * buf_stride); in integral_images_highbd() 153 const __m256i above2 = yy_load_256(A + ABj + i * buf_stride); in integral_images_highbd() [all …]
|
/external/libaom/libaom/av1/common/arm/ |
D | selfguided_neon.c | 39 const int buf_stride) { in calc_ab_fast_internal_common() argument 85 store_u32_4x4((uint32_t *)src1, buf_stride, p0, p1, p2, p3); in calc_ab_fast_internal_common() 89 dst_A16[x * buf_stride + y] = x_by_xplus1[src1[x * buf_stride + y]]; in calc_ab_fast_internal_common() 92 load_u16_4x4(dst_A16, buf_stride, &d0, &d1, &d2, &d3); in calc_ab_fast_internal_common() 114 store_s32_4x4(src2, buf_stride, vreinterpretq_s32_u32(p0), in calc_ab_fast_internal_common() 125 uint16_t *dst_A16, int32_t *dst2, const int buf_stride) { in calc_ab_internal_common() argument 212 store_u32_4x4((uint32_t *)src1, buf_stride, p0, p1, p2, p3); in calc_ab_internal_common() 213 store_u32_4x4((uint32_t *)src1 + 4, buf_stride, p4, p5, p6, p7); in calc_ab_internal_common() 217 dst_A16[x * buf_stride + y] = x_by_xplus1[src1[x * buf_stride + y]]; in calc_ab_internal_common() 220 load_u16_8x4(dst_A16, buf_stride, &s16_4, &s16_5, &s16_6, &s16_7); in calc_ab_internal_common() [all …]
|
/external/libaom/libaom/av1/common/ |
D | restoration.c | 281 const int buf_stride = rsb->stripe_boundary_stride; in setup_processing_stripe_boundary() local 306 const int buf_off = buf_x0_off + buf_row * buf_stride; in setup_processing_stripe_boundary() 326 const int buf_off = buf_x0_off + buf_row * buf_stride; in setup_processing_stripe_boundary() 676 int buf_stride = ((width_ext + 3) & ~3) + 16; in calculate_intermediate_result() local 685 width_ext, height_ext, dgd_stride, r, 0, B, buf_stride); in calculate_intermediate_result() 687 width_ext, height_ext, dgd_stride, r, 1, A, buf_stride); in calculate_intermediate_result() 688 A += SGRPROJ_BORDER_VERT * buf_stride + SGRPROJ_BORDER_HORZ; in calculate_intermediate_result() 689 B += SGRPROJ_BORDER_VERT * buf_stride + SGRPROJ_BORDER_HORZ; in calculate_intermediate_result() 694 const int k = i * buf_stride + j; in calculate_intermediate_result() 767 int buf_stride = ((width_ext + 3) & ~3) + 16; in selfguided_restoration_fast_internal() local [all …]
|
/external/webp/src/demux/ |
D | anim_decode.c | 154 static void ZeroFillFrameRect(uint8_t* buf, int buf_stride, int x_offset, in ZeroFillFrameRect() argument 157 assert(width * NUM_CHANNELS <= buf_stride); in ZeroFillFrameRect() 158 buf += y_offset * buf_stride + x_offset * NUM_CHANNELS; in ZeroFillFrameRect() 161 buf += buf_stride; in ZeroFillFrameRect()
|
/external/mesa3d/src/gallium/auxiliary/translate/ |
D | translate_sse.c | 1088 struct x86_reg buf_stride = in init_inputs() local 1138 x86_mov(p->func, p->tmp2_EDX, buf_stride); in init_inputs() 1188 struct x86_reg buf_stride = in get_buffer_ptr() local 1217 x86_mov(p->func, p->tmp2_EDX, buf_stride); in get_buffer_ptr() 1251 struct x86_reg buf_stride = in incr_inputs() local 1256 x86_mov(p->func, p->tmp_EAX, buf_stride); in incr_inputs()
|
/external/libaom/libaom/av1/encoder/ |
D | temporal_filter.c | 142 static void apply_temporal_filter_self(const uint8_t *pred, int buf_stride, in apply_temporal_filter_self() argument 153 const int pixel_value = pred[i * buf_stride + j]; in apply_temporal_filter_self() 162 const uint8_t *pred8, int buf_stride, unsigned int block_width, in highbd_apply_temporal_filter_self() argument 172 const int pixel_value = pred[i * buf_stride + j]; in highbd_apply_temporal_filter_self()
|
/external/u-boot/arch/arm/include/asm/arch-tegra/ |
D | dc.h | 310 uint buf_stride; /* _WIN_BUF_STRIDE_0 */ member
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 569 int xs, ys, x0, y0, x0_16, y0_16, frame_width, frame_height, buf_stride, in dec_build_inter_predictors() local 640 buf_stride = pre_buf->stride; in dec_build_inter_predictors() 668 const uint8_t *const buf_ptr1 = ref_frame + y0 * buf_stride + x0; in dec_build_inter_predictors() 673 extend_and_predict(buf_ptr1, buf_stride, x0, y0, b_w, b_h, frame_width, in dec_build_inter_predictors() 685 highbd_inter_predictor(CONVERT_TO_SHORTPTR(buf_ptr), buf_stride, in dec_build_inter_predictors() 689 inter_predictor(buf_ptr, buf_stride, dst, dst_buf->stride, subpel_x, in dec_build_inter_predictors() 693 inter_predictor(buf_ptr, buf_stride, dst, dst_buf->stride, subpel_x, subpel_y, in dec_build_inter_predictors()
|
/external/u-boot/drivers/video/ |
D | tegra.c | 81 writel(0, &dc->win.buf_stride); in update_window()
|
/external/libaom/libaom/av1/decoder/ |
D | decodeframe.c | 532 int buf_stride = pre_buf->stride; in extend_mc_border() local 538 highbd_build_mc_border(buf_ptr, buf_stride, mc_buf, b_w, block.x0, in extend_mc_border() 542 build_mc_border(buf_ptr, buf_stride, mc_buf, b_w, block.x0, block.y0, b_w, in extend_mc_border()
|