add expand128() implementation for NEON

This commit is contained in:
Konstantinos Margaritis
2021-01-15 17:33:41 +02:00
parent 4205bf96c4
commit fac944eef9
5 changed files with 48 additions and 7 deletions

View File

@@ -239,6 +239,11 @@ u64a expand64_impl(u64a x, u64a m) {
#endif
}
static really_inline
m128 expand128_impl(m128 x, m128 m) {
return expand128_impl_c(x, m);
}
/* returns the first set bit after begin (if not ~0U). If no bit is set after
* begin returns ~0U
*/