mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
add arm rshift128/rshift128
This commit is contained in:
parent
b67cd7dfd0
commit
86accf41a3
@ -410,5 +410,17 @@ really_inline SuperVector<16> SuperVector<16>::rshift64(uint8_t const N)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
template<>
|
||||||
|
really_inline SuperVector<16> SuperVector<16>::lshift128(uint8_t const N)
|
||||||
|
{
|
||||||
|
return *this << N;
|
||||||
|
}
|
||||||
|
|
||||||
|
template<>
|
||||||
|
really_inline SuperVector<16> SuperVector<16>::rshift128(uint8_t const N)
|
||||||
|
{
|
||||||
|
return *this >> N;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif // SIMD_IMPL_HPP
|
#endif // SIMD_IMPL_HPP
|
||||||
|
Loading…
x
Reference in New Issue
Block a user