Home
last modified time | relevance | path

Searched refs:buf_stride (Results 1 – 11 of 11) sorted by relevance

/external/libaom/libaom/av1/common/x86/
Dselfguided_sse4.c48 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 …]
Dselfguided_avx2.c88 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/
Dselfguided_neon.c39 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] = av1_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] = av1_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/
Drestoration.c290 const int buf_stride = rsb->stripe_boundary_stride; in setup_processing_stripe_boundary() local
315 const int buf_off = buf_x0_off + buf_row * buf_stride; in setup_processing_stripe_boundary()
335 const int buf_off = buf_x0_off + buf_row * buf_stride; in setup_processing_stripe_boundary()
685 int buf_stride = ((width_ext + 3) & ~3) + 16; in calculate_intermediate_result() local
694 width_ext, height_ext, dgd_stride, r, 0, B, buf_stride); in calculate_intermediate_result()
696 width_ext, height_ext, dgd_stride, r, 1, A, buf_stride); in calculate_intermediate_result()
697 A += SGRPROJ_BORDER_VERT * buf_stride + SGRPROJ_BORDER_HORZ; in calculate_intermediate_result()
698 B += SGRPROJ_BORDER_VERT * buf_stride + SGRPROJ_BORDER_HORZ; in calculate_intermediate_result()
703 const int k = i * buf_stride + j; in calculate_intermediate_result()
776 int buf_stride = ((width_ext + 3) & ~3) + 16; in selfguided_restoration_fast_internal() local
[all …]
/external/igt-gpu-tools/lib/
Digt_draw.h54 uint32_t buf_handle, uint32_t buf_size, uint32_t buf_stride,
Digt_draw.c647 uint32_t buf_handle, uint32_t buf_size, uint32_t buf_stride, in igt_draw_rect() argument
658 .stride = buf_stride, in igt_draw_rect()
/external/webp/src/demux/
Danim_decode.c154 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/
Dtranslate_sse.c1088 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/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c585 int xs, ys, x0, y0, x0_16, y0_16, frame_width, frame_height, buf_stride, in dec_build_inter_predictors() local
656 buf_stride = pre_buf->stride; in dec_build_inter_predictors()
684 const uint8_t *const buf_ptr1 = ref_frame + y0 * buf_stride + x0; in dec_build_inter_predictors()
689 extend_and_predict(twd, buf_ptr1, buf_stride, x0, y0, b_w, b_h, in dec_build_inter_predictors()
701 highbd_inter_predictor(CONVERT_TO_SHORTPTR(buf_ptr), buf_stride, in dec_build_inter_predictors()
705 inter_predictor(buf_ptr, buf_stride, dst, dst_buf->stride, subpel_x, in dec_build_inter_predictors()
709 inter_predictor(buf_ptr, buf_stride, dst, dst_buf->stride, subpel_x, subpel_y, in dec_build_inter_predictors()
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c517 int buf_stride = pre_buf->stride; in extend_mc_border() local
524 highbd_build_mc_border(buf_ptr, buf_stride, mc_buf, b_w, block.x0, in extend_mc_border()
528 build_mc_border(buf_ptr, buf_stride, mc_buf, b_w, block.x0, block.y0, b_w, in extend_mc_border()
533 build_mc_border(buf_ptr, buf_stride, mc_buf, b_w, block.x0, block.y0, b_w, in extend_mc_border()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c4984 int buf_stride = cpi->Source->y_stride; local
5026 buffer + mb_row * block_size * buf_stride + mb_col * block_size;
5032 mb_buffer, buf_stride, zero_pred, block_size,
5037 mb_buffer, buf_stride, zero_pred, block_size);
5042 mb_buffer, buf_stride, zero_pred, block_size);