HomeSort by relevance Sort by last modified time
    Searched refs:src_stride (Results 1 - 25 of 44) sorted by null

1 2

  /external/libvpx/vp8/encoder/
sad_c.c 16 int src_stride,
32 src_ptr += src_stride;
43 int src_stride,
60 src_ptr += src_stride;
70 int src_stride,
76 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, 8, 8);
82 int src_stride,
88 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, 16, 8);
95 int src_stride,
101 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, 8, 16)
    [all...]
mcomp.c 189 #define DIST(r,c) vfp->svf( PRE(r,c), d->pre_stride, SP(c),SP(r), z,b->src_stride,&sse) // returns subpixel variance error function.
223 besterr = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse);
339 bestmse = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse);
345 left = vfp->svf_halfpix_h(y - 1, d->pre_stride, z, b->src_stride, &sse);
355 right = vfp->svf_halfpix_h(y, d->pre_stride, z, b->src_stride, &sse);
367 up = vfp->svf_halfpix_v(y - d->pre_stride, d->pre_stride, z, b->src_stride, &sse);
377 down = vfp->svf_halfpix_v(y, d->pre_stride, z, b->src_stride, &sse);
398 diag = vfp->svf_halfpix_hv(y - 1 - d->pre_stride, d->pre_stride, z, b->src_stride, &sse);
403 diag = vfp->svf_halfpix_hv(y - d->pre_stride, d->pre_stride, z, b->src_stride, &sse);
408 diag = vfp->svf_halfpix_hv(y - 1, d->pre_stride, z, b->src_stride, &sse)
790 int src_stride = b->src_stride; local
    [all...]
block.h 47 int src_stride; member in struct:__anon8475
temporal_filter.c 170 int src_stride = b->src_stride; local
177 b->src_stride = arf_frame->y_stride;
270 b->src_stride = src_stride;
asm_enc_offsets.c 55 DEFINE(vp8_block_src_stride, offsetof(BLOCK, src_stride));
pickinter.c 46 extern unsigned int (*vp8_get16x16pred_error)(unsigned char *src_ptr, int src_stride, unsigned char *ref_ptr, int ref_stride);
73 int what_stride = b->src_stride;
95 int src_stride,
116 src_ptr += src_stride;
159 return VARIANCE_INVOKE(rtcd, get4x4sse_cs)(sptr, be->src_stride, dptr, 16, 0x7fffffff);
274 int uvsrc_stride = mb->block[16].src_stride;
encodemb.c 33 int src_stride = be->src_stride; local
46 src_ptr += src_stride;
  /external/libyuv/files/source/
rotate_priv.h 20 RotatePlane90(const uint8* src, int src_stride,
25 RotatePlane180(const uint8* src, int src_stride,
30 RotatePlane270(const uint8* src, int src_stride,
35 RotateUV90(const uint8* src, int src_stride,
45 RotateUV180(const uint8* src, int src_stride,
51 RotateUV270(const uint8* src, int src_stride,
60 TransposePlane(const uint8* src, int src_stride,
65 TransposeUV(const uint8* src, int src_stride,
rotate.cc 57 void TransposeWx8_NEON(const uint8* src, int src_stride,
60 void TransposeUVWx8_NEON(const uint8* src, int src_stride,
71 static void TransposeWx8_SSSE3(const uint8* src, int src_stride,
78 mov edi, [esp + 12 + 8] // src_stride
161 static void TransposeUVWx8_SSE2(const uint8* src, int src_stride,
171 mov edi, [esp + 16 + 8] // src_stride
289 static void TransposeWx8_SSSE3(const uint8* src, int src_stride,
366 : "r"(static_cast<intptr_t>(src_stride)), // %3
374 extern "C" void TransposeUVWx8_SSE2(const uint8* src, int src_stride,
504 static void TransposeWx8_FAST_SSSE3(const uint8* src, int src_stride,
    [all...]
scale.cc 52 void ScaleRowDown2_NEON(const uint8* src_ptr, int /* src_stride */,
69 void ScaleRowDown2Int_NEON(const uint8* src_ptr, int src_stride,
91 "+r"(src_stride), // %1
103 static void ScaleRowDown4_NEON(const uint8* src_ptr, int /* src_stride */,
124 static void ScaleRowDown4Int_NEON(const uint8* src_ptr, int src_stride,
166 : "r"(src_stride) // %3
270 static void ScaleRowDown2_SSE2(const uint8* src_ptr, int src_stride,
274 // src_stride ignored
298 static void ScaleRowDown2Int_SSE2(const uint8* src_ptr, int src_stride,
303 mov esi, [esp + 4 + 8] // src_stride
    [all...]
  /external/libvpx/vp8/encoder/x86/
sad_sse3.asm 16 %define src_stride rax
32 movsxd rax, dword ptr arg(1) ; src_stride
37 %define src_stride rdx
46 %define src_stride rsi
60 %define src_stride
83 %define src_stride rax
103 movsxd rbx, dword ptr arg(1) ; src_stride
110 %define src_stride rdx
122 %define src_stride rsi
138 %define src_stride
    [all...]
sad_mmx.asm 22 ; int src_stride,
36 movsxd rax, dword ptr arg(1) ;src_stride
114 ; int src_stride,
128 movsxd rax, dword ptr arg(1) ;src_stride
186 ; int src_stride,
200 movsxd rax, dword ptr arg(1) ;src_stride
256 ; int src_stride,
270 movsxd rax, dword ptr arg(1) ;src_stride
345 ; int src_stride,
359 movsxd rax, dword ptr arg(1) ;src_stride
    [all...]
sad_sse2.asm 16 ; int src_stride,
31 movsxd rax, dword ptr arg(1) ;src_stride
87 ; int src_stride,
104 movsxd rbx, dword ptr arg(1) ;src_stride
151 ; int src_stride,
167 movsxd rbx, dword ptr arg(1) ;src_stride
204 ; int src_stride,
219 movsxd rax, dword ptr arg(1) ;src_stride
259 ; int src_stride,
276 movsxd rbx, dword ptr arg(1) ;src_stride
    [all...]
sad_sse4.asm 160 ; int src_stride,
176 movsxd rax, dword ptr arg(1) ;src_stride
201 ; int src_stride,
218 movsxd rax, dword ptr arg(1) ;src_stride
239 ; int src_stride,
256 movsxd rax, dword ptr arg(1) ;src_stride
277 ; int src_stride,
294 movsxd rax, dword ptr arg(1) ;src_stride
318 ; int src_stride,
335 movsxd rax, dword ptr arg(1) ;src_stride
    [all...]
x86_csystemdependent.c 69 void vp8_subtract_b_mmx_impl(unsigned char *z, int src_stride,
75 unsigned int src_stride = be->src_stride; local
78 vp8_subtract_b_mmx_impl(z, src_stride, diff, predictor, pitch);
125 void vp8_subtract_b_sse2_impl(unsigned char *z, int src_stride,
131 unsigned int src_stride = be->src_stride; local
134 vp8_subtract_b_sse2_impl(z, src_stride, diff, predictor, pitch);
sad_ssse3.asm 151 ; int src_stride,
200 movsxd rax, dword ptr arg(1) ;src_stride
262 ; int src_stride,
311 movsxd rax, dword ptr arg(1) ;src_stride
  /external/libvpx/vp8/encoder/ppc/
sad_altivec.asm 148 ;# r4 int src_stride
168 ;# r4 int src_stride
188 ;# r4 int src_stride
208 ;# r4 int src_stride
246 ;# r4 int src_stride
csystemdependent.c 51 unsigned int (*vp8_get16x16pred_error)(unsigned char *src_ptr, int src_stride, unsigned char *ref_ptr, int ref_stride);
91 extern unsigned int vp8_get16x16pred_error_c(unsigned char *src_ptr, int src_stride, unsigned char *ref_ptr, int ref_stride);
  /external/libvpx/vp8/common/x86/
recon_mmx.asm 64 ; int src_stride,
80 movsxd rax, dword ptr arg(1) ;src_stride;
127 ; int src_stride,
143 movsxd rax, dword ptr arg(1) ;src_stride;
171 ; int src_stride,
185 movsxd rax, dword ptr arg(1) ;src_stride;
  /external/libvpx/vp8/common/
filter.c 254 * UINT32 src_stride : Stride of source block.
275 unsigned int src_stride,
295 src_ptr += src_stride - width;
reconinter.c 33 int src_stride,
67 src += src_stride;
76 int src_stride,
97 src += src_stride;
106 int src_stride,
127 src += src_stride;
  /external/libvpx/vp8/common/ppc/
copy_altivec.asm 15 ;# r4 int src_stride
  /external/libyuv/files/include/libyuv/
planar_functions.h 55 const uint8* src_uv, int src_stride,
  /external/libvpx/vp8/common/arm/armv6/
copymem8x4_v6.asm 18 ;void vp8_copy_mem8x4_v6( unsigned char *src, int src_stride, unsigned char *dst, int dst_stride)
copymem8x8_v6.asm 18 ;void copy_mem8x8_v6( unsigned char *src, int src_stride, unsigned char *dst, int dst_stride)

Completed in 326 milliseconds

1 2