Searched defs:source_stride (Results 1 - 4 of 4) sorted by relevance

/external/libvpx/vp8/encoder/x86/
H A Dvariance_sse2.c36 int source_stride,
50 int source_stride,
66 int source_stride,
149 int source_stride,
156 vp8_get4x4var_mmx(src_ptr, source_stride, ref_ptr, recon_stride, &var, &avg) ;
166 int source_stride,
173 vp8_get8x8var_sse2(src_ptr, source_stride, ref_ptr, recon_stride, &var, &avg) ;
183 int source_stride,
192 vp8_get16x16var_sse2(src_ptr, source_stride, ref_ptr, recon_stride, &sse0, &sum0) ;
198 int source_stride,
147 vp8_variance4x4_wmt( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride) argument
163 vp8_variance8x8_wmt( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride) argument
180 vp8_variance16x16_wmt( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
196 vp8_mse16x16_wmt( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
213 vp8_variance16x8_wmt( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
234 vp8_variance8x16_wmt( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
[all...]
H A Dvariance_mmx.c41 int source_stride,
50 int source_stride,
90 int source_stride,
101 vp8_get8x8var_mmx(src_ptr, source_stride, ref_ptr, recon_stride, &sse0, &sum0) ;
102 vp8_get8x8var_mmx(src_ptr + 8, source_stride, ref_ptr + 8, recon_stride, &sse1, &sum1);
103 vp8_get8x8var_mmx(src_ptr + 8 * source_stride, source_stride, ref_ptr + 8 * recon_stride, recon_stride, &sse2, &sum2) ;
104 vp8_get8x8var_mmx(src_ptr + 8 * source_stride + 8, source_stride, ref_ptr + 8 * recon_stride + 8, recon_stride, &sse3, &sum3);
121 int source_stride,
88 vp8_get16x16var_mmx( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned *SSE, unsigned *SUM ) argument
119 vp8_variance4x4_mmx( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
135 vp8_variance8x8_mmx( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
152 vp8_mse16x16_mmx( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
174 vp8_variance16x16_mmx( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, int *sse) argument
196 vp8_variance16x8_mmx( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
217 vp8_variance8x16_mmx( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
420 vp8_variance_halfpixvar16x16_h_mmx( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
432 vp8_variance_halfpixvar16x16_v_mmx( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
444 vp8_variance_halfpixvar16x16_hv_mmx( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
[all...]
/external/libvpx/vp8/encoder/
H A Dvariance_c.c36 int source_stride,
59 src_ptr += source_stride;
68 int source_stride,
76 variance(src_ptr, source_stride, ref_ptr, recon_stride, 8, 8, SSE, Sum);
84 int source_stride,
92 variance(src_ptr, source_stride, ref_ptr, recon_stride, 16, 16, SSE, Sum);
101 int source_stride,
110 variance(src_ptr, source_stride, ref_ptr, recon_stride, 16, 16, &var, &avg);
117 int source_stride,
126 variance(src_ptr, source_stride, ref_pt
34 variance( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, int w, int h, unsigned int *sse, int *sum) argument
65 vp8_get8x8var_c( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *SSE, int *Sum ) argument
81 vp8_get16x16var_c( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *SSE, int *Sum ) argument
99 vp8_variance16x16_c( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
115 vp8_variance8x16_c( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
131 vp8_variance16x8_c( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
148 vp8_variance8x8_c( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
164 vp8_variance4x4_c( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
181 vp8_mse16x16_c( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
393 vp8_variance_halfpixvar16x16_h_c( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
405 vp8_variance_halfpixvar16x16_v_c( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
417 vp8_variance_halfpixvar16x16_hv_c( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, unsigned int *sse) argument
[all...]
H A Dpickinter.c47 extern unsigned int (*vp8_get4x4sse_cs)(unsigned char *src_ptr, int source_stride, unsigned char *ref_ptr, int recon_stride);
128 int source_stride,
145 src_ptr += source_stride;
125 vp8_get4x4sse_cs_c( const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int recon_stride, int max_sad ) argument

Completed in 64 milliseconds