Searched defs:ref_stride (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/neon/
H A Dsad_neon.c17 int ref_stride) {
28 ref_ptr += ref_stride;
35 ref_ptr += ref_stride;
51 int ref_stride) {
62 ref_ptr += ref_stride;
69 ref_ptr += ref_stride;
85 int ref_stride) {
95 ref_ptr += ref_stride;
102 ref_ptr += ref_stride;
116 int ref_stride) {
13 vp8_sad8x8_neon( unsigned char *src_ptr, int src_stride, unsigned char *ref_ptr, int ref_stride) argument
47 vp8_sad8x16_neon( unsigned char *src_ptr, int src_stride, unsigned char *ref_ptr, int ref_stride) argument
81 vp8_sad4x4_neon( unsigned char *src_ptr, int src_stride, unsigned char *ref_ptr, int ref_stride) argument
112 vp8_sad16x16_neon( unsigned char *src_ptr, int src_stride, unsigned char *ref_ptr, int ref_stride) argument
149 vp8_sad16x8_neon( unsigned char *src_ptr, int src_stride, unsigned char *ref_ptr, int ref_stride) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dsad_c.c18 const unsigned char *ref_ptr, int ref_stride,
35 ref_ptr += ref_stride;
46 const unsigned char *ref_ptr, int ref_stride,
49 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, max_sad, 16, 16);
53 const unsigned char *ref_ptr, int ref_stride,
56 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, max_sad, 8, 8);
60 const unsigned char *ref_ptr, int ref_stride,
63 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, max_sad, 16, 8);
68 const unsigned char *ref_ptr, int ref_stride,
71 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, max_sa
17 sad_mx_n_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad, int m, int n) argument
45 vp8_sad16x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) argument
52 vp8_sad8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) argument
59 vp8_sad16x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) argument
67 vp8_sad8x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) argument
74 vp8_sad4x4_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) argument
81 vp8_sad16x16x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array) argument
90 vp8_sad16x16x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array) argument
104 vp8_sad16x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array) argument
113 vp8_sad16x8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array) argument
127 vp8_sad8x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array) argument
136 vp8_sad8x8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array) argument
150 vp8_sad8x16x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array) argument
159 vp8_sad8x16x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array) argument
173 vp8_sad4x4x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array) argument
182 vp8_sad4x4x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array) argument
196 vp8_sad16x16x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
206 vp8_sad16x8x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
216 vp8_sad8x8x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
226 vp8_sad8x16x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
236 vp8_sad4x4x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/arm/neon/
H A Dvp9_sad_neon.c38 const uint8_t *ref, int ref_stride) {
52 ref += ref_stride;
74 const uint8_t *ref, int ref_stride) {
85 ref += ref_stride;
99 const uint8_t *ref, int ref_stride) {
108 ref += ref_stride;
118 const uint8_t *ref, int ref_stride) {
126 ref += ref_stride;
37 vp9_sad64x64_neon(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride) argument
73 vp9_sad32x32_neon(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride) argument
98 vp9_sad16x16_neon(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride) argument
117 vp9_sad8x8_neon(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride) argument
H A Dvp9_variance_neon.c80 const uint8_t *ref_ptr, int ref_stride,
82 variance_neon_w8(src_ptr, source_stride, ref_ptr, ref_stride, kWidth8,
95 const uint8_t *ref_ptr, int ref_stride,
97 variance_neon_w8(src_ptr, source_stride, ref_ptr, ref_stride, kWidth16,
197 const uint8_t *ref_ptr, int ref_stride,
199 variance_neon_w8(src_ptr, source_stride, ref_ptr, ref_stride, kWidth32,
79 vp9_get8x8var_neon(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum) argument
94 vp9_get16x16var_neon(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum) argument
196 vp9_get32x32var_neon(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
H A Dvp9_sad4d_intrin_avx2.c16 int ref_stride,
51 ref0+= ref_stride;
52 ref1+= ref_stride;
53 ref2+= ref_stride;
54 ref3+= ref_stride;
86 int ref_stride,
136 ref0+= ref_stride;
137 ref1+= ref_stride;
138 ref2+= ref_stride;
139 ref3+= ref_stride;
13 vp9_sad32x32x4d_avx2(uint8_t *src, int src_stride, uint8_t *ref[4], int ref_stride, unsigned int res[4]) argument
83 vp9_sad64x64x4d_avx2(uint8_t *src, int src_stride, uint8_t *ref[4], int ref_stride, unsigned int res[4]) argument
[all...]
H A Dvp9_variance_avx2.c16 const uint8_t *ref, int ref_stride,
20 const uint8_t *ref, int ref_stride,
24 const uint8_t *ref, int ref_stride,
45 const uint8_t *ref, int ref_stride,
58 &ref[ref_stride * i + j], ref_stride, &sse0, &sum0);
67 const uint8_t *ref, int ref_stride,
70 variance_avx2(src, src_stride, ref, ref_stride, 16, 16,
76 const uint8_t *ref, int ref_stride,
79 vp9_get16x16var_avx2(src, src_stride, ref, ref_stride, ss
44 variance_avx2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, int w, int h, unsigned int *sse, int *sum, get_var_avx2 var_fn, int block_size) argument
66 vp9_variance16x16_avx2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
75 vp9_mse16x16_avx2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
83 vp9_variance32x16_avx2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
92 vp9_variance32x32_avx2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
101 vp9_variance64x64_avx2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
110 vp9_variance64x32_avx2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
[all...]
H A Dvp9_variance_sse2.c19 const unsigned char *ref, int ref_stride,
42 const uint8_t *ref, int ref_stride,
47 const __m128i ref0 = _mm_unpacklo_epi8(READ64(ref, ref_stride, 0), zero);
48 const __m128i ref1 = _mm_unpacklo_epi8(READ64(ref, ref_stride, 2), zero);
70 const uint8_t *ref, int ref_stride,
81 (const __m128i *)(ref + i * ref_stride)), zero);
87 (const __m128i *)(ref + (i + 1) * ref_stride)), zero);
111 const uint8_t *ref, int ref_stride,
136 ref += ref_stride;
155 const unsigned char *ref, int ref_stride,
41 vp9_get4x4var_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse, int *sum) argument
69 vp9_get8x8var_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse, int *sum) argument
110 vp9_get16x16var_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse, int *sum) argument
154 variance_sse2(const unsigned char *src, int src_stride, const unsigned char *ref, int ref_stride, int w, int h, unsigned int *sse, int *sum, variance_fn_t var_fn, int block_size) argument
175 vp9_variance4x4_sse2(const unsigned char *src, int src_stride, const unsigned char *ref, int ref_stride, unsigned int *sse) argument
183 vp9_variance8x4_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
192 vp9_variance4x8_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
201 vp9_variance8x8_sse2(const unsigned char *src, int src_stride, const unsigned char *ref, int ref_stride, unsigned int *sse) argument
209 vp9_variance16x8_sse2(const unsigned char *src, int src_stride, const unsigned char *ref, int ref_stride, unsigned int *sse) argument
218 vp9_variance8x16_sse2(const unsigned char *src, int src_stride, const unsigned char *ref, int ref_stride, unsigned int *sse) argument
227 vp9_variance16x16_sse2(const unsigned char *src, int src_stride, const unsigned char *ref, int ref_stride, unsigned int *sse) argument
235 vp9_variance32x32_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
244 vp9_variance32x16_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
253 vp9_variance16x32_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
262 vp9_variance64x64_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
271 vp9_variance64x32_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
280 vp9_variance32x64_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
289 vp9_mse8x8_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
296 vp9_mse8x16_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
303 vp9_mse16x8_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
310 vp9_mse16x16_sse2(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
[all...]
/external/chromium_org/third_party/libwebp/enc/
H A Dpicture_psnr.c27 const uint8_t* ref, int ref_stride,
38 const double value = (double)ref[y * ref_stride + x];
26 AccumulateLSIM(const uint8_t* src, int src_stride, const uint8_t* ref, int ref_stride, int w, int h) argument
/external/libvpx/libvpx/vp8/common/
H A Dsad_c.c18 const unsigned char *ref_ptr, int ref_stride,
35 ref_ptr += ref_stride;
46 const unsigned char *ref_ptr, int ref_stride,
49 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, max_sad, 16, 16);
53 const unsigned char *ref_ptr, int ref_stride,
56 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, max_sad, 8, 8);
60 const unsigned char *ref_ptr, int ref_stride,
63 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, max_sad, 16, 8);
68 const unsigned char *ref_ptr, int ref_stride,
71 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, max_sa
17 sad_mx_n_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad, int m, int n) argument
45 vp8_sad16x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) argument
52 vp8_sad8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) argument
59 vp8_sad16x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) argument
67 vp8_sad8x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) argument
74 vp8_sad4x4_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) argument
81 vp8_sad16x16x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array) argument
90 vp8_sad16x16x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array) argument
104 vp8_sad16x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array) argument
113 vp8_sad16x8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array) argument
127 vp8_sad8x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array) argument
136 vp8_sad8x8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array) argument
150 vp8_sad8x16x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array) argument
159 vp8_sad8x16x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array) argument
173 vp8_sad4x4x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array) argument
182 vp8_sad4x4x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned short *sad_array) argument
196 vp8_sad16x16x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
206 vp8_sad16x8x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
216 vp8_sad8x8x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
226 vp8_sad8x16x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
236 vp8_sad4x4x4d_c(const unsigned char *src_ptr, int src_stride, const unsigned char * const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
[all...]
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_sad4d_intrin_avx2.c16 int ref_stride,
51 ref0+= ref_stride;
52 ref1+= ref_stride;
53 ref2+= ref_stride;
54 ref3+= ref_stride;
86 int ref_stride,
136 ref0+= ref_stride;
137 ref1+= ref_stride;
138 ref2+= ref_stride;
139 ref3+= ref_stride;
13 vp9_sad32x32x4d_avx2(uint8_t *src, int src_stride, uint8_t *ref[4], int ref_stride, unsigned int res[4]) argument
83 vp9_sad64x64x4d_avx2(uint8_t *src, int src_stride, uint8_t *ref[4], int ref_stride, unsigned int res[4]) argument
[all...]
/external/webp/src/enc/
H A Dpicture_psnr.c27 const uint8_t* ref, int ref_stride,
38 const double value = (double)ref[y * ref_stride + x];
26 AccumulateLSIM(const uint8_t* src, int src_stride, const uint8_t* ref, int ref_stride, int w, int h) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_variance.c161 const uint8_t *ref_ptr, int ref_stride,
163 variance(src_ptr, source_stride, ref_ptr, ref_stride, 16, 16, sse, sum);
167 const uint8_t *ref_ptr, int ref_stride,
169 variance(src_ptr, source_stride, ref_ptr, ref_stride, 8, 8, sse, sum);
173 const uint8_t *ref, int ref_stride,
176 variance(src, src_stride, ref, ref_stride, 16, 16, sse, &sum);
181 const uint8_t *ref, int ref_stride,
184 variance(src, src_stride, ref, ref_stride, 16, 8, sse, &sum);
189 const uint8_t *ref, int ref_stride,
192 variance(src, src_stride, ref, ref_stride,
160 vp9_get16x16var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum) argument
166 vp9_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum) argument
172 vp9_mse16x16_c(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
180 vp9_mse16x8_c(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
188 vp9_mse8x16_c(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
196 vp9_mse8x8_c(const uint8_t *src, int src_stride, const uint8_t *ref, int ref_stride, unsigned int *sse) argument
256 vp9_comp_avg_pred(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride) argument
625 vp9_high_comp_avg_pred(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, const uint8_t *ref8, int ref_stride) argument
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconintra.c313 int ref_stride, uint8_t *dst, int dst_stride,
358 left_col[i] = ref[i * ref_stride - 1];
362 left_col[i] = ref[i * ref_stride - 1];
364 left_col[i] = ref[(extend_bottom - 1) * ref_stride - 1];
369 left_col[i] = ref[i * ref_stride - 1];
376 const uint8_t *above_ref = ref - ref_stride;
438 const uint8_t *ref, int ref_stride,
450 build_intra_predictors(xd, ref, ref_stride, dst, dst_stride, mode, tx_size,
312 build_intra_predictors(const MACROBLOCKD *xd, const uint8_t *ref, int ref_stride, uint8_t *dst, int dst_stride, MB_PREDICTION_MODE mode, TX_SIZE tx_size, int up_available, int left_available, int right_available, int x, int y, int plane) argument
436 vp9_predict_intra_block(const MACROBLOCKD *xd, int block_idx, int bwl_in, TX_SIZE tx_size, MB_PREDICTION_MODE mode, const uint8_t *ref, int ref_stride, uint8_t *dst, int dst_stride, int aoff, int loff, int plane) argument
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_sad.c38 const uint8_t *ref_ptr, int ref_stride, \
40 return sad(src_ptr, src_stride, ref_ptr, ref_stride, m, n); \
43 const uint8_t *ref_ptr, int ref_stride, \
47 vp9_comp_avg_pred(comp_pred, second_pred, m, n, ref_ptr, ref_stride); \
66 const uint8_t* const ref_ptr[], int ref_stride,
70 sad_array[i] = vp9_sad64x32(src_ptr, src_stride, ref_ptr[i], ref_stride,
75 const uint8_t* const ref_ptr[], int ref_stride,
79 sad_array[i] = vp9_sad32x64(src_ptr, src_stride, ref_ptr[i], ref_stride,
84 const uint8_t* const ref_ptr[], int ref_stride,
88 sad_array[i] = vp9_sad32x16(src_ptr, src_stride, ref_ptr[i], ref_stride,
65 vp9_sad64x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
74 vp9_sad32x64x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
83 vp9_sad32x16x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
92 vp9_sad16x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
101 vp9_sad64x64x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sad_array) argument
110 vp9_sad32x32x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sad_array) argument
119 vp9_sad64x64x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sad_array) argument
128 vp9_sad32x32x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sad_array) argument
137 vp9_sad16x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sad_array) argument
146 vp9_sad16x16x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array) argument
155 vp9_sad16x8x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sad_array) argument
164 vp9_sad16x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array) argument
173 vp9_sad8x8x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sad_array) argument
182 vp9_sad8x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array) argument
191 vp9_sad8x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sad_array) argument
200 vp9_sad8x16x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array) argument
209 vp9_sad4x4x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sad_array) argument
218 vp9_sad4x4x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array) argument
227 vp9_sad64x64x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
236 vp9_sad32x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
245 vp9_sad16x16x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
254 vp9_sad16x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
263 vp9_sad8x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
272 vp9_sad8x16x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
281 vp9_sad8x4x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
290 vp9_sad8x4x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array) argument
299 vp9_sad4x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
308 vp9_sad4x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array) argument
317 vp9_sad4x4x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_t* const ref_ptr[], int ref_stride, unsigned int *sad_array) argument
[all...]
H A Dvp9_variance.c421 const uint8_t *ref_ptr, int ref_stride,
423 variance(src_ptr, source_stride, ref_ptr, ref_stride, 16, 16, sse, sum);
466 const uint8_t *ref_ptr, int ref_stride,
468 variance(src_ptr, source_stride, ref_ptr, ref_stride, 8, 8, sse, sum);
1104 int height, const uint8_t *ref, int ref_stride) {
1115 ref += ref_stride;
420 vp9_get_sse_sum_16x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum) argument
465 vp9_get_sse_sum_8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum) argument
1103 vp9_comp_avg_pred(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride) argument
H A Dvp9_firstpass.c384 const int ref_stride = xd->plane[0].pre[0].stride; local
387 fn(src, src_stride, ref, ref_stride, &sse);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_reconintra.c627 int ref_stride,
675 left_col[i] = ref[i * ref_stride - 1];
679 left_col[i] = ref[i * ref_stride - 1];
681 left_col[i] = ref[(extend_bottom - 1) * ref_stride - 1];
686 left_col[i] = ref[i * ref_stride - 1];
696 const uint16_t *above_ref = ref - ref_stride;
763 int ref_stride, uint8_t *dst, int dst_stride,
806 left_col[i] = ref[i * ref_stride - 1];
810 left_col[i] = ref[i * ref_stride - 1];
812 left_col[i] = ref[(extend_bottom - 1) * ref_stride
625 build_intra_predictors_high(const MACROBLOCKD *xd, const uint8_t *ref8, int ref_stride, uint8_t *dst8, int dst_stride, PREDICTION_MODE mode, TX_SIZE tx_size, int up_available, int left_available, int right_available, int x, int y, int plane, int bd) argument
762 build_intra_predictors(const MACROBLOCKD *xd, const uint8_t *ref, int ref_stride, uint8_t *dst, int dst_stride, PREDICTION_MODE mode, TX_SIZE tx_size, int up_available, int left_available, int right_available, int x, int y, int plane) argument
884 vp9_predict_intra_block(const MACROBLOCKD *xd, int block_idx, int bwl_in, TX_SIZE tx_size, PREDICTION_MODE mode, const uint8_t *ref, int ref_stride, uint8_t *dst, int dst_stride, int aoff, int loff, int plane) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dfirstpass.c420 int ref_stride = x->e_mbd.pre.y_stride; local
431 vp8_mse16x16 ( src_ptr, src_stride, ref_ptr, ref_stride,
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c420 int ref_stride = x->e_mbd.pre.y_stride; local
431 vp8_mse16x16 ( src_ptr, src_stride, ref_ptr, ref_stride,

Completed in 493 milliseconds