Searched defs:base_u16 (Results 1 – 1 of 1) sorted by relevance
791 struct base_u16 { struct792 uint16x8_t value;793 static const int SIZE = sizeof(value);797 simdutf_really_inline base_u16(const uint16x8_t _value) : value(_value) {} in base_u16() function798 simdutf_really_inline operator const uint16x8_t&() const { return this->value; } in operator const uint16x8_t&()799 simdutf_really_inline operator uint16x8_t&() { return this->value; } in operator uint16x8_t&()801 …_really_inline simd16<T> operator|(const simd16<T> other) const { return vorrq_u16(*this, other); } in operator |()802 …_really_inline simd16<T> operator&(const simd16<T> other) const { return vandq_u16(*this, other); } in operator &()803 …_really_inline simd16<T> operator^(const simd16<T> other) const { return veorq_u16(*this, other); } in operator ^()804 …really_inline simd16<T> bit_andnot(const simd16<T> other) const { return vbicq_u16(*this, other); } in bit_andnot()[all …]