Home
last modified time | relevance | path

Searched refs:v128_andn (Results 1 – 6 of 6) sorted by relevance

/external/libaom/libaom/aom_dsp/simd/
Dv128_intrinsics_x86.h386 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()
Dv128_intrinsics_arm.h193 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()
Dv256_intrinsics_v128.h181 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()
Dv128_intrinsics.h93 SIMD_INLINE v128 v128_andn(v128 a, v128 b) { return c_v128_andn(a, b); } in v128_andn() function
/external/libaom/libaom/test/
Dsimd_impl.h546 SIMD_TUPLE(v128_andn, 0U, 0U), SIMD_TUPLE(v128_mullo_s16, 0U, 0U),
Dsimd_cmp_impl.h697 MAP(v128_andn),