diff options
Diffstat (limited to 'src/vppinfra/vector_neon.h')
-rw-r--r-- | src/vppinfra/vector_neon.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/vppinfra/vector_neon.h b/src/vppinfra/vector_neon.h index 90451602d2d..37bd1bb0b01 100644 --- a/src/vppinfra/vector_neon.h +++ b/src/vppinfra/vector_neon.h @@ -83,6 +83,14 @@ static_always_inline u32 \ t##s##x##c##_zero_byte_mask (t##s##x##c x) \ { uint8x16_t v = vreinterpretq_u8_u##s (vceqq_##i (vdupq_n_##i(0), x)); \ return u8x16_compare_byte_mask (v); } \ +\ +static_always_inline u##s##x##c \ +t##s##x##c##_is_greater (t##s##x##c a, t##s##x##c b) \ +{ return (u##s##x##c) vcgtq_##i (a, b); } \ +\ +static_always_inline t##s##x##c \ +t##s##x##c##_blend (t##s##x##c dst, t##s##x##c src, u##s##x##c mask) \ +{ return (t##s##x##c) vbslq_##i (mask, src, dst); } foreach_neon_vec128i foreach_neon_vec128u |