Home
last modified time | relevance | path

Searched refs:t80 (Results 1 – 14 of 14) 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((int8_t)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((int8_t)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((int8_t)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((int8_t)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((char)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((char)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/llvm-project/llvm/test/CodeGen/Hexagon/
Drdf-filter-defs.ll198 %t80 = phi i8* [ %t33, %b14 ], [ %t79, %b30 ]
199 store i8 0, i8* %t80, align 1
/external/llvm-project/llvm/test/Transforms/PhaseOrdering/X86/
Dnancvt.ll164 %t80 = icmp sle i32 %t79, 2
165 %t8081 = zext i1 %t80 to i8
/external/libgav1/libgav1/src/dsp/x86/
Dloop_filter_sse4.cc108 const __m128i t80 = _mm_set1_epi8(static_cast<int8_t>(0x80)); in Filter4() local
111 const __m128i qps1qps0 = _mm_xor_si128(qp1qp0, t80); in Filter4()
136 const __m128i c = _mm_xor_si128(b, t80); in Filter4()
1229 const __m128i t80 = _mm_set1_epi16(static_cast<int16_t>(1 << (bitdepth - 1))); in Filter4() local
1231 const __m128i vmin = _mm_subs_epi16(_mm_setzero_si128(), t80); in Filter4()
1232 const __m128i vmax = _mm_subs_epi16(t80, t1); in Filter4()
1233 const __m128i ps1 = _mm_subs_epi16(qp1, t80); in Filter4()
1234 const __m128i ps0 = _mm_subs_epi16(qp0, t80); in Filter4()
1262 *oqp1 = _mm_adds_epi16(oqps1, t80); in Filter4()
1263 *oqp0 = _mm_adds_epi16(oqps0, t80); in Filter4()
/external/llvm-project/llvm/test/Transforms/SLPVectorizer/AArch64/
Dgetelementptr.ll327 %t80 = zext i16 %t79 to i64
328 %sub.3 = sub nsw i64 %t77, %t80
/external/llvm-project/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]
/external/mesa3d/src/freedreno/.gitlab-ci/traces/
Dcrash.devcore2727 …5S5\tGXU)PgG"bA?3#KU+]RnCBLhrMO[-Lo;@oT0)2\hF+cmco"d"<<aM8qWXEH0d+;PqA8-TA,"2&`Pl@nh@%C`t80@V'khQ(…