/external/libvpx/libvpx/vp9/encoder/ |
vp9_sad_c.c | 23 int ref_stride, \ 25 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, m, n); \ 30 int ref_stride, \ 34 comp_avg_pred(comp_pred, second_pred, m, n, ref_ptr, ref_stride); \ 55 int ref_stride, 58 ref_ptr[0], ref_stride, 0x7fffffff); 60 ref_ptr[1], ref_stride, 0x7fffffff); 62 ref_ptr[2], ref_stride, 0x7fffffff); 64 ref_ptr[3], ref_stride, 0x7fffffff); 70 int ref_stride, [all...] |
vp9_variance.h | 29 int ref_stride, 35 int ref_stride, 42 int ref_stride, 48 int ref_stride, 54 int ref_stride, unsigned int *sad_array); 59 int ref_stride, 84 int ref_stride); 101 int height, const uint8_t *ref, int ref_stride) { 112 ref += ref_stride;
|
/external/libvpx/libvpx/vp8/common/ |
sad_c.c | 18 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_sad, 8, 16) [all...] |
variance.h | 21 int ref_stride, 28 int ref_stride, 35 int ref_stride, 43 int ref_stride, 52 int ref_stride, 61 int ref_stride, 96 int ref_stride
|
rtcd_defs.sh | 242 prototype unsigned int vp8_variance4x4 "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse" 246 prototype unsigned int vp8_variance8x8 "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse" 251 prototype unsigned int vp8_variance8x16 "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse" 255 prototype unsigned int vp8_variance16x8 "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse" 259 prototype unsigned int vp8_variance16x16 "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse" 289 prototype unsigned int vp8_variance_halfpixvar16x16_h "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse" 294 prototype unsigned int vp8_variance_halfpixvar16x16_v "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse" 299 prototype unsigned int vp8_variance_halfpixvar16x16_hv "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse" 307 prototype unsigned int vp8_sad4x4 "const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad" 311 prototype unsigned int vp8_sad8x8 "const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad [all...] |
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_sad_sse3.asm | 18 %define ref_stride rdx 34 movsxd rdx, dword ptr arg(3) ; ref_stride 41 %define ref_stride r9 51 %define ref_stride rcx 66 %define ref_stride 176 ; int ref_stride, 183 PROCESS_16X2X3 0, src_ptr, ref_ptr, src_stride, ref_stride 184 PROCESS_16X2X3 1, src_ptr, ref_ptr, src_stride, ref_stride 185 PROCESS_16X2X3 1, src_ptr, ref_ptr, src_stride, ref_stride 186 PROCESS_16X2X3 1, src_ptr, ref_ptr, src_stride, ref_stride [all...] |
vp9_sad_sse4.asm | 172 ; int ref_stride, 187 movsxd rdx, dword ptr arg(3) ;ref_stride 212 ; int ref_stride, 228 movsxd rdx, dword ptr arg(3) ;ref_stride 249 ; int ref_stride, 265 movsxd rdx, dword ptr arg(3) ;ref_stride 286 ; int ref_stride, 302 movsxd rdx, dword ptr arg(3) ;ref_stride 327 ; int ref_stride, 343 movsxd rdx, dword ptr arg(3) ;ref_stride [all...] |
vp9_sad_mmx.asm | 24 ; int ref_stride) 37 movsxd rdx, dword ptr arg(3) ;ref_stride 116 ; int ref_stride) 129 movsxd rdx, dword ptr arg(3) ;ref_stride 188 ; int ref_stride) 201 movsxd rdx, dword ptr arg(3) ;ref_stride 258 ; int ref_stride) 271 movsxd rdx, dword ptr arg(3) ;ref_stride 347 ; int ref_stride) 360 movsxd rdx, dword ptr arg(3) ;ref_stride [all...] |
vp9_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, 5, 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);
|
vp9_sad_ssse3.asm | 153 ; int ref_stride, 202 movsxd rdx, dword ptr arg(3) ;ref_stride 266 ; int ref_stride, 315 movsxd rdx, dword ptr arg(3) ;ref_stride
|
/external/libvpx/libvpx/vp8/common/x86/ |
sad_sse3.asm | 18 %define ref_stride rdx 34 movsxd rdx, dword ptr arg(3) ; ref_stride 41 %define ref_stride r9 51 %define ref_stride rcx 66 %define ref_stride 94 %define ref_stride rbp 110 movsxd rbp, dword ptr arg(3) ; ref_stride 122 %define ref_stride r9 134 %define ref_stride rcx 150 %define ref_stride [all...] |
sad_mmx.asm | 24 ; int ref_stride) 37 movsxd rdx, dword ptr arg(3) ;ref_stride 116 ; int ref_stride) 129 movsxd rdx, dword ptr arg(3) ;ref_stride 188 ; int ref_stride) 201 movsxd rdx, dword ptr arg(3) ;ref_stride 258 ; int ref_stride) 271 movsxd rdx, dword ptr arg(3) ;ref_stride 347 ; int ref_stride) 360 movsxd rdx, dword ptr arg(3) ;ref_stride [all...] |
sad_sse2.asm | 18 ; int ref_stride) 33 movsxd rdx, dword ptr arg(3) ;ref_stride 91 ; int ref_stride, 107 movsxd rdx, dword ptr arg(3) ;ref_stride 155 ; int ref_stride) 170 movsxd rdx, dword ptr arg(3) ;ref_stride 208 ; int ref_stride) 222 movsxd rdx, dword ptr arg(3) ;ref_stride 263 ; int ref_stride) 279 movsxd rdx, dword ptr arg(3) ;ref_stride [all...] |
sad_sse4.asm | 162 ; int ref_stride, 177 movsxd rdx, dword ptr arg(3) ;ref_stride 203 ; int ref_stride, 219 movsxd rdx, dword ptr arg(3) ;ref_stride 241 ; int ref_stride, 257 movsxd rdx, dword ptr arg(3) ;ref_stride 279 ; int ref_stride, 295 movsxd rdx, dword ptr arg(3) ;ref_stride 320 ; int ref_stride, 336 movsxd rdx, dword ptr arg(3) ;ref_stride [all...] |
sad_ssse3.asm | 153 ; int ref_stride, 202 movsxd rdx, dword ptr arg(3) ;ref_stride 266 ; int ref_stride, 315 movsxd rdx, dword ptr arg(3) ;ref_stride
|
/external/libvpx/libvpx/vp9/common/ |
vp9_rtcd_defs.sh | 328 prototype unsigned int vp9_variance32x16 "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse" 331 prototype unsigned int vp9_variance16x32 "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse" 334 prototype unsigned int vp9_variance64x32 "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse" 337 prototype unsigned int vp9_variance32x64 "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse" 340 prototype unsigned int vp9_variance32x32 "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse" 343 prototype unsigned int vp9_variance64x64 "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse" 346 prototype unsigned int vp9_variance16x16 "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse" 349 prototype unsigned int vp9_variance16x8 "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse" 352 prototype unsigned int vp9_variance8x16 "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse" 355 prototype unsigned int vp9_variance8x8 "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse [all...] |
vp9_sadmxn.h | 20 int ref_stride, 32 ref_ptr += ref_stride;
|
vp9_reconintra.h | 19 const uint8_t *ref, int ref_stride,
|
/external/libvpx/generic/ |
vp8_rtcd.h | 118 unsigned int vp8_variance4x4_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 121 unsigned int vp8_variance8x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 124 unsigned int vp8_variance8x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 127 unsigned int vp8_variance16x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 130 unsigned int vp8_variance16x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 148 unsigned int vp8_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 151 unsigned int vp8_variance_halfpixvar16x16_v_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 154 unsigned int vp8_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 157 unsigned int vp8_sad4x4_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad); 160 unsigned int vp8_sad8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) [all...] |
/external/libvpx/mips/ |
vp8_rtcd.h | 118 unsigned int vp8_variance4x4_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 121 unsigned int vp8_variance8x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 124 unsigned int vp8_variance8x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 127 unsigned int vp8_variance16x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 130 unsigned int vp8_variance16x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 148 unsigned int vp8_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 151 unsigned int vp8_variance_halfpixvar16x16_v_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 154 unsigned int vp8_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 157 unsigned int vp8_sad4x4_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad); 160 unsigned int vp8_sad8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) [all...] |
/external/libvpx/armv7a/ |
vp8_rtcd.h | 145 unsigned int vp8_variance4x4_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 148 unsigned int vp8_variance8x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 149 unsigned int vp8_variance8x8_armv6(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 152 unsigned int vp8_variance8x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 155 unsigned int vp8_variance16x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 158 unsigned int vp8_variance16x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 159 unsigned int vp8_variance16x16_armv6(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 179 unsigned int vp8_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 180 unsigned int vp8_variance_halfpixvar16x16_h_armv6(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 183 unsigned int vp8_variance_halfpixvar16x16_v_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse) [all...] |
/external/libvpx/armv7a-neon/ |
vp8_rtcd.h | 171 unsigned int vp8_variance4x4_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 174 unsigned int vp8_variance8x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 175 unsigned int vp8_variance8x8_armv6(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 176 unsigned int vp8_variance8x8_neon(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 179 unsigned int vp8_variance8x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 180 unsigned int vp8_variance8x16_neon(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 183 unsigned int vp8_variance16x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 184 unsigned int vp8_variance16x8_neon(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 187 unsigned int vp8_variance16x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 188 unsigned int vp8_variance16x16_armv6(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse) [all...] |
/external/libvpx/mips-dspr2/ |
vp8_rtcd.h | 136 unsigned int vp8_variance4x4_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 139 unsigned int vp8_variance8x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 142 unsigned int vp8_variance8x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 145 unsigned int vp8_variance16x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 148 unsigned int vp8_variance16x16_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 166 unsigned int vp8_variance_halfpixvar16x16_h_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 169 unsigned int vp8_variance_halfpixvar16x16_v_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 172 unsigned int vp8_variance_halfpixvar16x16_hv_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 175 unsigned int vp8_sad4x4_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad); 178 unsigned int vp8_sad8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad) [all...] |
/external/libvpx/libvpx/vp8/common/ppc/ |
sad_altivec.asm | 150 ;# r6 int ref_stride 170 ;# r6 int ref_stride 190 ;# r6 int ref_stride 210 ;# r6 int ref_stride 248 ;# r6 int ref_stride
|
/external/libvpx/libvpx/vp8/common/arm/neon/ |
sad8_neon.asm | 25 ; int ref_stride) 82 ; int ref_stride) 179 ; int ref_stride)
|