Home
last modified time | relevance | path

Searched refs:ref_ptr (Results 1 – 25 of 53) sorted by relevance

123

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
Dsad_c.c18 const unsigned char *ref_ptr, int ref_stride, in sad_mx_n_c() argument
28 sad += abs(src_ptr[c] - ref_ptr[c]); in sad_mx_n_c()
35 ref_ptr += ref_stride; in sad_mx_n_c()
46 const unsigned char *ref_ptr, int ref_stride, in vp8_sad16x16_c() argument
49 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, max_sad, 16, 16); in vp8_sad16x16_c()
53 const unsigned char *ref_ptr, int ref_stride, in vp8_sad8x8_c() argument
56 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, max_sad, 8, 8); in vp8_sad8x8_c()
60 const unsigned char *ref_ptr, int ref_stride, in vp8_sad16x8_c() argument
63 return sad_mx_n_c(src_ptr, src_stride, ref_ptr, ref_stride, max_sad, 16, 8); in vp8_sad16x8_c()
68 const unsigned char *ref_ptr, int ref_stride, in vp8_sad8x16_c() argument
[all …]
Drtcd_defs.pl242 …, "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
246 …, "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
251 …, "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
255 …, "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
259 …, "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
267 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
271 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
276 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
280 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
284 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
[all …]
Dvariance_c.c37 const unsigned char *ref_ptr, in variance() argument
54 diff = src_ptr[j] - ref_ptr[j]; in variance()
60 ref_ptr += recon_stride; in variance()
68 const unsigned char *ref_ptr, in vp8_variance16x16_c() argument
76 variance(src_ptr, source_stride, ref_ptr, recon_stride, 16, 16, &var, &avg); in vp8_variance16x16_c()
84 const unsigned char *ref_ptr, in vp8_variance8x16_c() argument
92 variance(src_ptr, source_stride, ref_ptr, recon_stride, 8, 16, &var, &avg); in vp8_variance8x16_c()
100 const unsigned char *ref_ptr, in vp8_variance16x8_c() argument
108 variance(src_ptr, source_stride, ref_ptr, recon_stride, 16, 8, &var, &avg); in vp8_variance16x8_c()
117 const unsigned char *ref_ptr, in vp8_variance8x8_c() argument
[all …]
Dvariance.h24 const unsigned char *ref_ptr,
31 const unsigned char *ref_ptr,
38 const unsigned char *ref_ptr,
46 const unsigned char *ref_ptr,
55 const unsigned char * const ref_ptr[],
64 const unsigned char *ref_ptr,
75 const unsigned char *ref_ptr,
99 const unsigned char *ref_ptr,
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
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, in vp9_sad64x32x4d_c() argument
70 sad_array[i] = vp9_sad64x32(src_ptr, src_stride, ref_ptr[i], ref_stride, in vp9_sad64x32x4d_c()
75 const uint8_t* const ref_ptr[], int ref_stride, in vp9_sad32x64x4d_c() argument
79 sad_array[i] = vp9_sad32x64(src_ptr, src_stride, ref_ptr[i], ref_stride, in vp9_sad32x64x4d_c()
84 const uint8_t* const ref_ptr[], int ref_stride, in vp9_sad32x16x4d_c() argument
88 sad_array[i] = vp9_sad32x16(src_ptr, src_stride, ref_ptr[i], ref_stride, in vp9_sad32x16x4d_c()
[all …]
Dvp9_variance.h22 const uint8_t *ref_ptr,
31 const uint8_t *ref_ptr,
37 const uint8_t *ref_ptr,
44 const uint8_t *ref_ptr,
50 const uint8_t *ref_ptr,
56 const uint8_t* const ref_ptr[],
61 const uint8_t *ref_ptr,
69 const uint8_t *ref_ptr,
77 const uint8_t *ref_ptr,
86 const uint8_t *ref_ptr,
Dvp9_variance.c23 const uint8_t *ref_ptr, in variance() argument
37 diff = src_ptr[j] - ref_ptr[j]; in variance()
43 ref_ptr += recon_stride; in variance()
168 const uint8_t *ref_ptr, in vp9_variance64x32_c() argument
174 variance(src_ptr, source_stride, ref_ptr, recon_stride, 64, 32, &var, &avg); in vp9_variance64x32_c()
225 const uint8_t *ref_ptr, in vp9_variance32x64_c() argument
231 variance(src_ptr, source_stride, ref_ptr, recon_stride, 32, 64, &var, &avg); in vp9_variance32x64_c()
282 const uint8_t *ref_ptr, in vp9_variance32x16_c() argument
288 variance(src_ptr, source_stride, ref_ptr, recon_stride, 32, 16, &var, &avg); in vp9_variance32x16_c()
339 const uint8_t *ref_ptr, in vp9_variance16x32_c() argument
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_rtcd_defs.pl362 …riance32x16/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, …
365 …riance16x32/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, …
368 …riance64x32/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, …
371 …riance32x64/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, …
374 …riance32x32/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, …
377 …riance64x64/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, …
380 …riance16x16/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, …
383 …ariance16x8/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, …
386 …ariance8x16/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, …
389 …variance8x8/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, …
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/
Dvp9_variance_mmx.c20 const unsigned char *ref_ptr,
29 const unsigned char *ref_ptr,
38 const unsigned char *ref_ptr, in vp9_variance4x4_mmx() argument
44 vp9_get4x4var_mmx(src_ptr, source_stride, ref_ptr, recon_stride, &var, &avg); in vp9_variance4x4_mmx()
52 const unsigned char *ref_ptr, in vp9_variance8x8_mmx() argument
58 vp9_get8x8var_mmx(src_ptr, source_stride, ref_ptr, recon_stride, &var, &avg); in vp9_variance8x8_mmx()
67 const unsigned char *ref_ptr, in vp9_mse16x16_mmx() argument
74 vp9_get8x8var_mmx(src_ptr, source_stride, ref_ptr, recon_stride, &sse0, in vp9_mse16x16_mmx()
76 vp9_get8x8var_mmx(src_ptr + 8, source_stride, ref_ptr + 8, recon_stride, in vp9_mse16x16_mmx()
79 ref_ptr + 8 * recon_stride, recon_stride, &sse2, &sum2); in vp9_mse16x16_mmx()
[all …]
Dvp9_sad_sse3.asm17 %define ref_ptr rdi
31 mov rdi, arg(2) ; ref_ptr
40 %define ref_ptr r8
50 %define ref_ptr rdx
65 %define ref_ptr
175 ; unsigned char *ref_ptr,
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 …]
Dvp9_variance_sse2.c21 const unsigned char *ref_ptr,
31 const unsigned char *ref_ptr,
40 const unsigned char *ref_ptr,
47 const unsigned char *ref_ptr,
57 const unsigned char *ref_ptr,
67 const unsigned char *ref_ptr,
77 const unsigned char *ref_ptr,
87 const unsigned char *ref_ptr,
97 const unsigned char *ref_ptr,
109 const unsigned char *ref_ptr,
[all …]
Dvp9_variance_avx2.c19 const unsigned char *ref_ptr,
29 const unsigned char *ref_ptr,
39 const unsigned char *ref_ptr,
72 const unsigned char *ref_ptr, int recon_stride, in variance_avx2() argument
86 ref_ptr + recon_stride * i + j, recon_stride, &sse0, &sum0); in variance_avx2()
97 const unsigned char *ref_ptr, in vp9_variance16x16_avx2() argument
103 variance_avx2(src_ptr, source_stride, ref_ptr, recon_stride, 16, 16, in vp9_variance16x16_avx2()
112 const unsigned char *ref_ptr, in vp9_mse16x16_avx2() argument
117 vp9_get16x16var_avx2(src_ptr, source_stride, ref_ptr, recon_stride, &sse0, in vp9_mse16x16_avx2()
125 const uint8_t *ref_ptr, in vp9_variance32x32_avx2() argument
[all …]
Dvp9_variance_impl_intrin_avx2.c15 const unsigned char *ref_ptr, in vp9_get16x16var_avx2() argument
37 _mm_loadu_si128((__m128i const *) (ref_ptr))); in vp9_get16x16var_avx2()
39 _mm_loadu_si128((__m128i const *)(ref_ptr+recon_stride)), 1); in vp9_get16x16var_avx2()
68 ref_ptr+= ref_2strides; in vp9_get16x16var_avx2()
126 const unsigned char *ref_ptr, in vp9_get32x32var_avx2() argument
141 ref = _mm256_loadu_si256((__m256i const *) (ref_ptr)); in vp9_get32x32var_avx2()
170 ref_ptr+= recon_stride; in vp9_get32x32var_avx2()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
Dvariance_mmx.c43 const unsigned char *ref_ptr,
52 const unsigned char *ref_ptr,
59 const unsigned char *ref_ptr,
70 const unsigned char *ref_ptr,
85 const unsigned char *ref_ptr, in vp8_variance4x4_mmx() argument
92 vp8_get4x4var_mmx(src_ptr, source_stride, ref_ptr, recon_stride, &var, &avg) ; in vp8_variance4x4_mmx()
101 const unsigned char *ref_ptr, in vp8_variance8x8_mmx() argument
108 vp8_get8x8var_mmx(src_ptr, source_stride, ref_ptr, recon_stride, &var, &avg) ; in vp8_variance8x8_mmx()
118 const unsigned char *ref_ptr, in vp8_mse16x16_mmx() argument
126 vp8_get8x8var_mmx(src_ptr, source_stride, ref_ptr, recon_stride, &sse0, &sum0) ; in vp8_mse16x16_mmx()
[all …]
Dvariance_sse2.c24 const unsigned char *ref_ptr,
38 const unsigned char *ref_ptr,
52 const unsigned char *ref_ptr,
61 const unsigned char *ref_ptr,
68 const unsigned char *ref_ptr,
80 const unsigned char *ref_ptr,
90 const unsigned char *ref_ptr,
100 const unsigned char *ref_ptr,
110 const unsigned char *ref_ptr,
120 const unsigned char *ref_ptr,
[all …]
Dsad_sse3.asm17 %define ref_ptr rdi
31 mov rdi, arg(2) ; ref_ptr
40 %define ref_ptr r8
50 %define ref_ptr rdx
65 %define ref_ptr
380 ; unsigned char *ref_ptr,
388 PROCESS_16X2X3 0, src_ptr, ref_ptr, src_stride, ref_stride
389 PROCESS_16X2X3 1, src_ptr, ref_ptr, src_stride, ref_stride
390 PROCESS_16X2X3 1, src_ptr, ref_ptr, src_stride, ref_stride
391 PROCESS_16X2X3 1, src_ptr, ref_ptr, src_stride, ref_stride
[all …]
Dvariance_ssse3.c20 const unsigned char *ref_ptr,
27 const unsigned char *ref_ptr,
37 const unsigned char *ref_ptr,
47 const unsigned char *ref_ptr,
57 const unsigned char *ref_ptr,
Dsad_sse4.asm161 ; const unsigned char *ref_ptr,
174 mov rdi, arg(2) ;ref_ptr
202 ; const unsigned char *ref_ptr,
216 mov rdi, arg(2) ;ref_ptr
240 ; const unsigned char *ref_ptr,
254 mov rdi, arg(2) ;ref_ptr
278 ; const unsigned char *ref_ptr,
292 mov rdi, arg(2) ;ref_ptr
319 ; const unsigned char *ref_ptr,
333 mov rdi, arg(2) ;ref_ptr
/hardware/intel/common/omx-components/videocodec/libvpx_internal/x86/
Dvp8_rtcd.h77 void vp8_copy32xn_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, …
78 …e2(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, …
79 …e3(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, …
80 …n)(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, …
149 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
150 …mx(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
151 …s)(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
220 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
221 …mx(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
222 …mt(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/armv7a-neon/
Dvp8_rtcd.h171 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
174 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
175 …v6(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
176 …on(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
179 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
180 …on(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
183 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
184 …on(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
187 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
188 …v6(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/generic/
Dvp8_rtcd.h118 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
121 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
124 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
127 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
130 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
133 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
136 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
139 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
142 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
145 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/mips/
Dvp8_rtcd.h118 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
121 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
124 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
127 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
130 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
133 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
136 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
139 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
142 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
145 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/armv7a/
Dvp8_rtcd.h145 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
148 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
149 …v6(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
152 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
155 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
158 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
159 …v6(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
162 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
165 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
166 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/mips-dspr2/
Dvp8_rtcd.h136 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
139 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
142 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
145 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
148 …_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride,…
151 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
154 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
157 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
160 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
163 …tr, int source_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride, u…
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ppc/
Dcsystemdependent.c51 unsigned int (*vp8_get4x4sse_cs)(unsigned char *src_ptr, int source_stride, unsigned char *ref_ptr
58 …8_get8x8var_c(unsigned char *src_ptr, int source_stride, unsigned char *ref_ptr, int recon_strid…
88 …et4x4sse_cs_c(unsigned char *src_ptr, int source_stride, unsigned char *ref_ptr, int recon_strid…
118 …get8x8var_ppc(unsigned char *src_ptr, int source_stride, unsigned char *ref_ptr, int recon_strid…
119 …t16x16var_ppc(unsigned char *src_ptr, int source_stride, unsigned char *ref_ptr, int recon_strid…

123