Home
last modified time | relevance | path

Searched refs:t80 (Results 1 – 11 of 11) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/x86/
Dhighbd_loopfilter_sse2.c23 __m128i t80, max, min; in signed_char_clamp_bd_sse2() local
26 t80 = _mm_set1_epi16(0x80); in signed_char_clamp_bd_sse2()
27 max = _mm_subs_epi16(_mm_subs_epi16(_mm_slli_epi16(one, 8), one), t80); in signed_char_clamp_bd_sse2()
29 t80 = _mm_set1_epi16(0x200); in signed_char_clamp_bd_sse2()
30 max = _mm_subs_epi16(_mm_subs_epi16(_mm_slli_epi16(one, 10), one), t80); in signed_char_clamp_bd_sse2()
32 t80 = _mm_set1_epi16(0x800); in signed_char_clamp_bd_sse2()
33 max = _mm_subs_epi16(_mm_subs_epi16(_mm_slli_epi16(one, 12), one), t80); in signed_char_clamp_bd_sse2()
36 min = _mm_subs_epi16(zero, t80); in signed_char_clamp_bd_sse2()
69 __m128i t4, t3, t80, t1; in vpx_highbd_lpf_horizontal_16_sse2() local
143 t80 = _mm_set1_epi16(0x80); in vpx_highbd_lpf_horizontal_16_sse2()
[all …]
Dloopfilter_sse2.c64 const __m128i t80 = _mm_set1_epi8(0x80); \
67 ps1ps0 = _mm_xor_si128(p1p0, t80); /* ^ 0x80 */ \
68 qs1qs0 = _mm_xor_si128(q1q0, t80); \
103 qs1qs0 = _mm_xor_si128(qs1qs0, t80); /* ^ 0x80 */ \
104 ps1ps0 = _mm_xor_si128(ps1ps0, t80); /* ^ 0x80 */ \
294 const __m128i t80 = _mm_set1_epi8(0x80); in vpx_lpf_horizontal_16_sse2() local
296 __m128i qs1ps1 = _mm_xor_si128(q1p1, t80); in vpx_lpf_horizontal_16_sse2()
297 __m128i qs0ps0 = _mm_xor_si128(q0p0, t80); in vpx_lpf_horizontal_16_sse2()
298 __m128i qs0 = _mm_xor_si128(p0q0, t80); in vpx_lpf_horizontal_16_sse2()
299 __m128i qs1 = _mm_xor_si128(p1q1, t80); in vpx_lpf_horizontal_16_sse2()
[all …]
Dloopfilter_avx2.c87 const __m128i t80 = _mm_set1_epi8(0x80); in vpx_lpf_horizontal_16_avx2() local
89 __m128i qs1ps1 = _mm_xor_si128(q1p1, t80); in vpx_lpf_horizontal_16_avx2()
90 __m128i qs0ps0 = _mm_xor_si128(q0p0, t80); in vpx_lpf_horizontal_16_avx2()
91 __m128i qs0 = _mm_xor_si128(p0q0, t80); in vpx_lpf_horizontal_16_avx2()
92 __m128i qs1 = _mm_xor_si128(p1q1, t80); in vpx_lpf_horizontal_16_avx2()
117 qs0ps0 = _mm_xor_si128(_mm_adds_epi8(qs0ps0, filt), t80); in vpx_lpf_horizontal_16_avx2()
125 qs1ps1 = _mm_xor_si128(_mm_adds_epi8(qs1ps1, filt), t80); in vpx_lpf_horizontal_16_avx2()
461 const __m128i t80 = _mm_set1_epi8(0x80); in vpx_lpf_horizontal_16_dual_avx2() local
467 __m128i ps1 = _mm_xor_si128(p1, t80); in vpx_lpf_horizontal_16_dual_avx2()
468 __m128i ps0 = _mm_xor_si128(p0, t80); in vpx_lpf_horizontal_16_dual_avx2()
[all …]
/external/libaom/libaom/aom_dsp/x86/
Dhighbd_loopfilter_sse2.c216 __m128i *ps1ps0, __m128i *t80, in highbd_filter4_sse2() argument
221 _mm_subs_epi16(_mm_subs_epi16(_mm_slli_epi16(one, bd), one), *t80); in highbd_filter4_sse2()
222 const __m128i pmin = _mm_subs_epi16(zero, *t80); in highbd_filter4_sse2()
228 ps1ps0_work = _mm_subs_epi16(*p1p0, *t80); in highbd_filter4_sse2()
229 qs1qs0_work = _mm_subs_epi16(*q1q0, *t80); in highbd_filter4_sse2()
263 *qs1qs0 = _mm_adds_epi16(qs1qs0_work, *t80); in highbd_filter4_sse2()
264 *ps1ps0 = _mm_adds_epi16(ps1ps0_work, *t80); in highbd_filter4_sse2()
270 __m128i *t80) { in highbd_filter4_dual_sse2() argument
271 __m128i ps0 = _mm_subs_epi16(p[0], *t80); in highbd_filter4_dual_sse2()
272 __m128i ps1 = _mm_subs_epi16(p[1], *t80); in highbd_filter4_dual_sse2()
[all …]
Dloopfilter_sse2.c149 const __m128i t80 = _mm_set1_epi8(0x80); in filter4_sse2() local
150 const __m128i ff = _mm_cmpeq_epi8(t80, t80); in filter4_sse2()
152 ps1ps0_work = _mm_xor_si128(*p1p0, t80); /* ^ 0x80 */ in filter4_sse2()
153 qs1qs0_work = _mm_xor_si128(*q1q0, t80); in filter4_sse2()
188 *qs1qs0 = _mm_xor_si128(qs1qs0_work, t80); /* ^ 0x80 */ in filter4_sse2()
189 *ps1ps0 = _mm_xor_si128(ps1ps0_work, t80); /* ^ 0x80 */ in filter4_sse2()
198 const __m128i t80 = _mm_set1_epi8(0x80); in filter4_dual_sse2() local
202 const __m128i ff = _mm_cmpeq_epi8(t80, t80); in filter4_dual_sse2()
204 ps1ps0_work = _mm_xor_si128(*p1p0, t80); /* ^ 0x80 */ in filter4_dual_sse2()
205 qs1qs0_work = _mm_xor_si128(*q1q0, t80); in filter4_dual_sse2()
[all …]
/external/libvpx/libvpx/vp8/common/x86/
Dloopfilter_block_sse2_x86_64.asm70 pxor %1, [GLOBAL(t80)] ; ps1
71 pxor %4, [GLOBAL(t80)] ; qs1
76 pxor %2, [GLOBAL(t80)] ; ps0
77 pxor %3, [GLOBAL(t80)] ; qs0
98 pxor %3, [GLOBAL(t80)]
109 pxor %2, [GLOBAL(t80)]
116 pand scratch1, [GLOBAL(t80)]
122 pxor %4, [GLOBAL(t80)]
125 pxor %1, [GLOBAL(t80)]
807 t80: label
Dloopfilter_sse2.asm177 movdqa xmm3, [GLOBAL(t80)]
482 movdqa xmm7, [GLOBAL(t80)]
1313 movdqa xmm4, [GLOBAL(t80)]
1617 t80: label
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/
Drdf-filter-defs.ll198 %t80 = phi i8* [ %t33, %b14 ], [ %t79, %b30 ]
199 store i8 0, i8* %t80, align 1
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Dlsr-reuse.ll588 %t80 = getelementptr float* %arg, i64 %t79 ; <float*> [#uses=1]
589 %t81 = bitcast float* %t80 to <4 x float>* ; <<4 x float>*> [#uses=1]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dlsr-reuse.ll589 %t80 = getelementptr float, float* %arg, i64 %t79 ; <float*> [#uses=1]
590 %t81 = bitcast float* %t80 to <4 x float>* ; <<4 x float>*> [#uses=1]
/external/llvm/test/CodeGen/X86/
Dlsr-reuse.ll589 %t80 = getelementptr float, float* %arg, i64 %t79 ; <float*> [#uses=1]
590 %t81 = bitcast float* %t80 to <4 x float>* ; <<4 x float>*> [#uses=1]