Home
last modified time | relevance | path

Searched refs:src_stride (Results 1 – 25 of 55) sorted by relevance

123

/external/libvpx/vp8/encoder/
Dsad_c.c16 int src_stride, in vp8_sad16x16_c() argument
32 src_ptr += src_stride; in vp8_sad16x16_c()
43 int src_stride, in sad_mx_n_c() argument
60 src_ptr += src_stride; in sad_mx_n_c()
70 int src_stride, in vp8_sad8x8_c() argument
76 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, 8, 8); in vp8_sad8x8_c()
82 int src_stride, in vp8_sad16x8_c() argument
88 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, 16, 8); in vp8_sad16x8_c()
95 int src_stride, in vp8_sad8x16_c() argument
101 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, 8, 16); in vp8_sad8x16_c()
[all …]
Dmcomp.c189 #define DIST(r,c) vfp->svf( PRE(r,c), d->pre_stride, SP(c),SP(r), z,b->src_stride,&sse) // returns …
223 besterr = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step_iteratively()
339 bestmse = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
345 left = vfp->svf_halfpix_h(y - 1, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
355 right = vfp->svf_halfpix_h(y, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
367 up = vfp->svf_halfpix_v(y - d->pre_stride, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
377 down = vfp->svf_halfpix_v(y, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
398 diag = vfp->svf_halfpix_hv(y - 1 - d->pre_stride, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
403 diag = vfp->svf_halfpix_hv(y - d->pre_stride, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
408 diag = vfp->svf_halfpix_hv(y - 1, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step()
[all …]
Dtemporal_filter.c170 int src_stride = b->src_stride; in vp8_temporal_filter_find_matching_mb_c() local
177 b->src_stride = arf_frame->y_stride; in vp8_temporal_filter_find_matching_mb_c()
270 b->src_stride = src_stride; in vp8_temporal_filter_find_matching_mb_c()
Dblock.h47 int src_stride; member
/external/libyuv/files/source/
Dscale.cc69 void ScaleRowDown2Int_NEON(const uint8* src_ptr, int src_stride, in ScaleRowDown2Int_NEON() argument
91 "+r"(src_stride), // %1 in ScaleRowDown2Int_NEON()
124 static void ScaleRowDown4Int_NEON(const uint8* src_ptr, int src_stride, in ScaleRowDown4Int_NEON() argument
166 : "r"(src_stride) // %3 in ScaleRowDown4Int_NEON()
270 static void ScaleRowDown2_SSE2(const uint8* src_ptr, int src_stride, in ScaleRowDown2_SSE2() argument
298 static void ScaleRowDown2Int_SSE2(const uint8* src_ptr, int src_stride, in ScaleRowDown2Int_SSE2() argument
342 static void ScaleRowDown4_SSE2(const uint8* src_ptr, int src_stride, in ScaleRowDown4_SSE2() argument
374 static void ScaleRowDown4Int_SSE2(const uint8* src_ptr, int src_stride, in ScaleRowDown4Int_SSE2() argument
433 static void ScaleRowDown8_SSE2(const uint8* src_ptr, int src_stride, in ScaleRowDown8_SSE2() argument
466 static void ScaleRowDown8Int_SSE2(const uint8* src_ptr, int src_stride, in ScaleRowDown8Int_SSE2() argument
[all …]
Drotate.cc57 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, in TransposeWx8_SSSE3() argument
161 static void TransposeUVWx8_SSE2(const uint8* src, int src_stride, in TransposeUVWx8_SSE2() argument
289 static void TransposeWx8_SSSE3(const uint8* src, int src_stride, in TransposeWx8_SSSE3() argument
366 : "r"(static_cast<intptr_t>(src_stride)), // %3 in TransposeWx8_SSSE3()
374 extern "C" void TransposeUVWx8_SSE2(const uint8* src, int src_stride,
504 static void TransposeWx8_FAST_SSSE3(const uint8* src, int src_stride, in TransposeWx8_FAST_SSSE3() argument
633 : "r"(static_cast<intptr_t>(src_stride)), // %3 in TransposeWx8_FAST_SSSE3()
640 static void TransposeUVWx8_SSE2(const uint8* src, int src_stride, in TransposeUVWx8_SSE2() argument
[all …]
Drotate_priv.h20 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,
/external/libvpx/vp8/encoder/x86/
Dsad_sse3.asm16 %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 …]
Dsad_sse2.asm16 ; 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
Dsad_sse4.asm160 ; 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
Dsad_mmx.asm22 ; 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
Dx86_csystemdependent.c69 void vp8_subtract_b_mmx_impl(unsigned char *z, int src_stride,
75 unsigned int src_stride = be->src_stride; in subtract_b_mmx() local
78 vp8_subtract_b_mmx_impl(z, src_stride, diff, predictor, pitch); in subtract_b_mmx()
125 void vp8_subtract_b_sse2_impl(unsigned char *z, int src_stride,
131 unsigned int src_stride = be->src_stride; in subtract_b_sse2() local
134 vp8_subtract_b_sse2_impl(z, src_stride, diff, predictor, pitch); in subtract_b_sse2()
Dsad_ssse3.asm151 ; 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/common/mips/
Dreconinter_mips.c26 int src_stride, in vp8_copy_mem16x16_mips() argument
36 prefetch_load_int(src + src_stride); in vp8_copy_mem16x16_mips()
53 src += src_stride; in vp8_copy_mem16x16_mips()
61 int src_stride, in vp8_copy_mem8x8_mips() argument
69 prefetch_load_int(src + src_stride); in vp8_copy_mem8x8_mips()
83 src += src_stride; in vp8_copy_mem8x8_mips()
91 int src_stride, in vp8_copy_mem8x4_mips() argument
99 prefetch_load_int(src + src_stride); in vp8_copy_mem8x4_mips()
113 src += src_stride; in vp8_copy_mem8x4_mips()
/external/libvpx/vp8/common/x86/
Drecon_mmx.asm64 ; 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/encoder/ppc/
Dsad_altivec.asm148 ;# r4 int src_stride
168 ;# r4 int src_stride
188 ;# r4 int src_stride
208 ;# r4 int src_stride
246 ;# r4 int src_stride
Dcsystemdependent.c51 unsigned int (*vp8_get16x16pred_error)(unsigned char *src_ptr, int src_stride, unsigned char *ref_p…
91 extern unsigned int vp8_get16x16pred_error_c(unsigned char *src_ptr, int src_stride, unsigned char …
/external/webp/src/dec/
Dalpha.c24 static void CopyPlane(const uint8_t* src, int src_stride, in CopyPlane() argument
28 src += src_stride; in CopyPlane()
/external/libvpx/vp8/encoder/arm/neon/
Dsad8_neon.asm23 ; int src_stride,
80 ; int src_stride,
177 ; int src_stride,
/external/webp/src/utils/
Drescaler.c125 const uint8_t* src, int src_stride) { in WebPRescalerImport() argument
132 src += src_stride; in WebPRescalerImport()
Drescaler.h55 const uint8_t* src, int src_stride);
/external/libvpx/vp8/common/
Dreconinter.c33 int src_stride, in vp8_copy_mem16x16_c() argument
67 src += src_stride; in vp8_copy_mem16x16_c()
76 int src_stride, in vp8_copy_mem8x8_c() argument
97 src += src_stride; in vp8_copy_mem8x8_c()
106 int src_stride, in vp8_copy_mem8x4_c() argument
127 src += src_stride; in vp8_copy_mem8x4_c()
Dfilter.c275 unsigned int src_stride, in filter_block2d_bil_first_pass() argument
295 src_ptr += src_stride - width; in filter_block2d_bil_first_pass()
/external/llvm/test/CodeGen/X86/
D2008-02-22-LocalRegAllocBug.ll5 define void @transpose4x4(i8* %dst, i8* %src, i32 %dst_stride, i32 %src_stride) {
15 store i32 %src_stride, i32* %src_stride_addr
/external/libvpx/vp8/common/arm/neon/
Dcopymem8x4_neon.asm18 ;void copy_mem8x4_neon( unsigned char *src, int src_stride, unsigned char *dst, int dst_stride)

123