HomeSort by relevance Sort by last modified time
    Searched refs:ref_stride (Results 51 - 75 of 107) sorted by null

1 23 4 5

  /external/libaom/libaom/av1/encoder/
corner_match.c 85 int ref_stride,
104 ref_stride, correspondences[i].rx + x, correspondences[i].ry + y);
129 ref, ref_stride, correspondences[i].rx, correspondences[i].ry, frm,
145 int height, int frm_stride, int ref_stride,
169 ref_stride, ref_corners[2 * j], ref_corners[2 * j + 1]);
188 improve_correspondence(frm, ref, width, height, frm_stride, ref_stride,
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_vp3_video.h 114 unsigned fence_seq, fw_sizes, last_frame_num, tmp_stride, ref_stride; member in struct:nouveau_vp3_decoder
163 ret = dec->ref_stride * target->valid_ref;
165 ret = dec->ref_stride * (dec->base.max_references+1);
182 if (size > dec->ref_stride) {
183 debug_printf("Overshot ref_stride (%u) with size %u and ofs (%u,%u,%u)\n",
184 dec->ref_stride, size, *y2<<8, *cbcr<<8, *cbcr2<<8);
186 assert(size <= dec->ref_stride);
  /external/libaom/libaom/aom_dsp/x86/
masked_sad_intrin_ssse3.c 34 const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, \
38 return masked_sad_ssse3(src, src_stride, ref, ref_stride, second_pred, \
42 ref_stride, msk, msk_stride, m, n); \
47 const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, \
51 return aom_masked_sad8xh_ssse3(src, src_stride, ref, ref_stride, \
55 ref_stride, msk, msk_stride, n); \
60 const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, \
64 return aom_masked_sad4xh_ssse3(src, src_stride, ref, ref_stride, \
68 ref_stride, msk, msk_stride, n); \
238 int ref_stride, const uint8_t *second_pred8, const uint8_t *msk,
    [all...]
sad_sse2.asm 21 cglobal sad%1x%2, 4, %3, 5, src, src_stride, ref, ref_stride, n_rows
23 cglobal sad%1x%2, 4, %3, 6, src, src_stride, ref, ref_stride, \
28 cglobal sad%1x%2_avg, 5, 1 + %3, 5, src, src_stride, ref, ref_stride, \
32 ref, ref_stride, \
51 ; uint8_t *ref, int ref_stride);
119 ; uint8_t *ref, int ref_stride);
166 ; uint8_t *ref, int ref_stride);
213 ; uint8_t *ref, int ref_stride);
263 ; uint8_t *ref, int ref_stride);
309 ; uint8_t *ref, int ref_stride);
    [all...]
masked_variance_intrin_ssse3.c 56 const uint8_t *ref, int ref_stride, const uint8_t *second_pred, \
65 masked_variance(ref, ref_stride, temp, W, second_pred, W, msk, \
68 masked_variance(ref, ref_stride, second_pred, W, temp, W, msk, \
76 const uint8_t *ref, int ref_stride, const uint8_t *second_pred, \
85 masked_variance8xh(ref, ref_stride, temp, second_pred, msk, msk_stride, \
88 masked_variance8xh(ref, ref_stride, second_pred, temp, msk, msk_stride, \
96 const uint8_t *ref, int ref_stride, const uint8_t *second_pred, \
105 masked_variance4xh(ref, ref_stride, temp, second_pred, msk, msk_stride, \
108 masked_variance4xh(ref, ref_stride, second_pred, temp, msk, msk_stride, \
546 const uint8_t *ref8, int ref_stride, const uint8_t *second_pred8,
    [all...]
jnt_sad_ssse3.c 197 const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, \
200 aom_dist_wtd_comp_avg_pred(comp_pred, second_pred, m, n, ref, ref_stride, \
207 const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, \
210 aom_dist_wtd_comp_avg_pred(comp_pred, second_pred, m, n, ref, ref_stride, \
highbd_sad_sse2.asm 21 cglobal highbd_sad%1x%2, 4, %3, 7, src, src_stride, ref, ref_stride, n_rows
23 cglobal highbd_sad%1x%2, 4, %3, 7, src, src_stride, ref, ref_stride, \
28 cglobal highbd_sad%1x%2_avg, 5, 1 + %3, 7, src, src_stride, ref, ref_stride, \
32 ref, ref_stride, \
57 ; uint8_t *ref, int ref_stride);
165 ; uint8_t *ref, int ref_stride);
235 ; uint8_t *ref, int ref_stride);
307 ; uint8_t *ref, int ref_stride);
  /external/libaom/libaom/aom_dsp/
variance.c 268 int height, const uint8_t *ref, int ref_stride) {
278 ref += ref_stride;
287 int ref_stride, int subpel_search) {
377 ref += ref_stride;
382 aom_convolve8_horiz_c(ref, ref_stride, comp_pred, width, kernel, 16, NULL,
387 aom_convolve8_vert_c(ref, ref_stride, comp_pred, width, NULL, -1, kernel,
399 aom_convolve8_horiz_c(ref - ref_stride * ((filter->taps >> 1) - 1),
400 ref_stride, temp, MAX_SB_SIZE, kernel_x, 16, NULL, -1,
413 int ref_stride, int subpel_search) {
417 subpel_x_q3, subpel_y_q3, ref, ref_stride, subpel_search)
    [all...]
variance.h 63 const uint8_t *ref, int ref_stride,
69 const uint8_t *ref, int ref_stride, const uint8_t *second_pred,
76 int ref_stride, const uint8_t *mask, int mask_stride, int invert_mask,
avg.c 187 const int ref_stride, const int height) {
194 for (i = 0; i < height; ++i) hbuf[idx] += ref[i * ref_stride];
  /external/libaom/libaom/test/
masked_sad_test.cc 32 const uint8_t *ref, int ref_stride,
63 int ref_stride = MAX_SB_SIZE; local
79 ref_ret = ref_maskedSAD_op_(src_ptr, src_stride, ref_ptr, ref_stride,
88 ref_ptr, ref_stride,
94 maskedSAD_op_(src_ptr, src_stride, ref_ptr, ref_stride,
119 const uint8_t *ref, int ref_stride,
155 int ref_stride = MAX_SB_SIZE; local
170 ref_ret = ref_maskedSAD_op_(src8_ptr, src_stride, ref8_ptr, ref_stride,
179 ref8_ptr, ref_stride,
185 maskedSAD_op_(src8_ptr, src_stride, ref8_ptr, ref_stride,
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
sad_sse4.asm 174 ; int ref_stride,
189 movsxd rdx, dword ptr arg(3) ;ref_stride
214 ; int ref_stride,
230 movsxd rdx, dword ptr arg(3) ;ref_stride
251 ; int ref_stride,
267 movsxd rdx, dword ptr arg(3) ;ref_stride
288 ; int ref_stride,
304 movsxd rdx, dword ptr arg(3) ;ref_stride
329 ; int ref_stride,
345 movsxd rdx, dword ptr arg(3) ;ref_stride
    [all...]
sad_sse2.asm 18 cglobal sad%1x%2, 4, %3, 5, src, src_stride, ref, ref_stride, n_rows
20 cglobal sad%1x%2, 4, %3, 6, src, src_stride, ref, ref_stride, \
25 cglobal sad%1x%2_avg, 5, 1 + %3, 5, src, src_stride, ref, ref_stride, \
29 ref, ref_stride, \
48 ; uint8_t *ref, int ref_stride);
91 ; uint8_t *ref, int ref_stride);
136 ; uint8_t *ref, int ref_stride);
182 ; uint8_t *ref, int ref_stride);
226 ; uint8_t *ref, int ref_stride);
highbd_sad_sse2.asm 18 cglobal highbd_sad%1x%2, 4, %3, 7, src, src_stride, ref, ref_stride, n_rows
20 cglobal highbd_sad%1x%2, 4, %3, 7, src, src_stride, ref, ref_stride, \
25 cglobal highbd_sad%1x%2_avg, 5, 1 + %3, 7, src, src_stride, ref, ref_stride, \
29 ref, ref_stride, \
54 ; uint8_t *ref, int ref_stride);
161 ; uint8_t *ref, int ref_stride);
229 ; uint8_t *ref, int ref_stride);
298 ; uint8_t *ref, int ref_stride);
highbd_variance_impl_sse2.asm 21 ; int ref_stride,
40 movsxd rdx, DWORD PTR arg(3) ;[ref_stride]
174 ; int ref_stride,
193 movsxd rdx, DWORD PTR arg(3) ;[ref_stride]
sad_ssse3.asm 155 ; int ref_stride,
204 movsxd rdx, dword ptr arg(3) ;ref_stride
268 ; int ref_stride,
317 movsxd rdx, dword ptr arg(3) ;ref_stride
  /external/libhevc/encoder/
ihevce_frame_process.h 73 WORD32 ref_stride,
hme_subpel.c 572 S32 inp_stride, ref_stride; local
599 ref_stride = ps_inter_ctb_prms->i4_rec_stride;
601 ps_interp_prms->i4_ref_stride = ref_stride;
647 ref_offset = (x_part + x_pic) + (y_pic + y_part) * ref_stride;
1234 S32 ref_stride = ps_prms->i4_ref_stride; local
1333 S32 ref_stride = ps_prms->i4_ref_stride; local
1506 S32 ref_stride = ps_prms->i4_ref_stride; local
1665 S32 ref_stride = ps_prms->i4_ref_stride; local
1750 S32 ref_stride = ps_prms->i4_ref_stride; local
1852 S32 ref_stride = ps_prms->i4_ref_stride; local
1957 S32 ref_stride = ps_prms->i4_ref_stride; local
2087 S32 ref_stride = ps_prms->i4_ref_stride; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
subpel_variance_neon.c 103 const uint8_t *ref_ptr, int ref_stride, uint32_t *sse) { \
123 return vpx_variance##n##x##m(temp1, n, ref_ptr, ref_stride, sse); \
145 const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, \
169 return vpx_variance##n##x##m(temp0, n, ref_ptr, ref_stride, sse); \
  /external/libhevc/encoder/arm/
ihevce_ssd_calculator_neon.c 236 UWORD32 ref_stride,
272 pu1_ref += ref_stride;
278 ssd = ihevce_4x4_ssd_computer_neon(pu1_inp, pu1_ref, inp_stride, ref_stride, is_chroma);
286 UWORD8 *pu1_inp, UWORD8 *pu1_ref, UWORD32 inp_stride, UWORD32 ref_stride, UWORD32 wd, UWORD32 ht)
288 return ihevce_ssd_calculator_plane_neon(pu1_inp, pu1_ref, inp_stride, ref_stride, wd, ht, 0);
292 UWORD8 *pu1_inp, UWORD8 *pu1_ref, UWORD32 inp_stride, UWORD32 ref_stride, UWORD32 wd, UWORD32 ht)
294 return ihevce_ssd_calculator_plane_neon(pu1_inp, pu1_ref, inp_stride, ref_stride, wd, ht, 1);
ihevce_subpel_neon.c 379 S32 ref_stride = ps_prms->i4_ref_stride; local
387 U08 *pu1_pred = pu1_ref + (i & 0x1) * 8 + (i >> 1) * ref_stride * 8;
391 pu1_src, inp_stride, pu1_pred, ref_stride, NULL, 0, &ai4_satd_4x4[idx], 4, 0);
  /external/libaom/libaom/av1/common/
reconintra.h 34 const uint8_t *ref, int ref_stride, uint8_t *dst,
  /external/libaom/libaom/aom_dsp/mips/
sub_pixel_variance_msa.c 39 int32_t ref_stride,
55 LW4(ref_ptr, ref_stride, ref0, ref1, ref2, ref3);
56 ref_ptr += (4 * ref_stride);
74 int32_t ref_stride,
89 LD_UB4(ref_ptr, ref_stride, ref0, ref1, ref2, ref3);
90 ref_ptr += (4 * ref_stride);
108 int32_t ref_stride,
122 ref_ptr += ref_stride;
131 ref_ptr += ref_stride;
140 ref_ptr += ref_stride;
    [all...]
  /external/libvpx/libvpx/vpx_dsp/mips/
sub_pixel_variance_msa.c 41 int32_t ref_stride,
57 LW4(ref_ptr, ref_stride, ref0, ref1, ref2, ref3);
58 ref_ptr += (4 * ref_stride);
76 int32_t ref_stride,
91 LD_UB4(ref_ptr, ref_stride, ref0, ref1, ref2, ref3);
92 ref_ptr += (4 * ref_stride);
110 int32_t ref_stride,
124 ref_ptr += ref_stride;
133 ref_ptr += ref_stride;
142 ref_ptr += ref_stride;
    [all...]
avg_msa.c 396 const int ref_stride, const int height) {
406 LD_UB8(ref, ref_stride, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7);
407 ref += 8 * ref_stride;
430 LD_UB8(ref, ref_stride, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7);
431 ref += 8 * ref_stride;
448 LD_UB8(ref, ref_stride, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7);
449 ref += 8 * ref_stride;
472 LD_UB8(ref, ref_stride, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7);
473 ref += 8 * ref_stride;
490 LD_UB8(ref, ref_stride, ref0, ref1, ref2, ref3, ref4, ref5, ref6, ref7)
    [all...]

Completed in 798 milliseconds

1 23 4 5