Searched refs:v128_andn (Results 1 – 6 of 6) sorted by relevance
/external/libaom/libaom/aom_dsp/simd/ |
D | v128_intrinsics_x86.h | 386 SIMD_INLINE v128 v128_andn(v128 a, v128 b) { return _mm_andnot_si128(b, a); } in v128_andn() function 474 return v128_or(v128_and(b, c), v128_andn(a, c)); in v128_blend_8() 625 t = v128_sub_16(v128_or(v128_and(b, t), v128_andn(a, t)), in v128_sad_u16() 626 v128_or(v128_and(a, t), v128_andn(b, t))); in v128_sad_u16()
|
D | v128_intrinsics_arm.h | 193 SIMD_INLINE v128 v128_andn(v128 x, v128 y) { return vbicq_s64(x, y); } in v128_andn() function 385 return v128_or(v128_and(b, c), v128_andn(a, c)); in v128_blend_8()
|
D | v256_intrinsics_v128.h | 181 return v256_from_v128(v128_andn(a.val[1], b.val[1]), in v256_andn() 182 v128_andn(a.val[0], b.val[0])); in v256_andn()
|
D | v128_intrinsics.h | 93 SIMD_INLINE v128 v128_andn(v128 a, v128 b) { return c_v128_andn(a, b); } in v128_andn() function
|
/external/libaom/libaom/test/ |
D | simd_impl.h | 546 SIMD_TUPLE(v128_andn, 0U, 0U), SIMD_TUPLE(v128_mullo_s16, 0U, 0U),
|
D | simd_cmp_impl.h | 697 MAP(v128_andn),
|