Home
last modified time | relevance | path

Searched defs:base_u16 (Results 1 – 1 of 1) sorted by relevance

/third_party/node/deps/simdutf/
Dsimdutf.cpp776 struct base_u16 { struct
777 uint16x8_t value;
778 static const int SIZE = sizeof(value);
782 simdutf_really_inline base_u16(const uint16x8_t _value) : value(_value) {} in base_u16() argument
783 simdutf_really_inline operator const uint16x8_t&() const { return this->value; } in operator const uint16x8_t&()
784 simdutf_really_inline operator uint16x8_t&() { return this->value; } in operator uint16x8_t&()
786 …_really_inline simd16<T> operator|(const simd16<T> other) const { return vorrq_u16(*this, other); } in operator |()
787 …_really_inline simd16<T> operator&(const simd16<T> other) const { return vandq_u16(*this, other); } in operator &()
788 …_really_inline simd16<T> operator^(const simd16<T> other) const { return veorq_u16(*this, other); } in operator ^()
789 …really_inline simd16<T> bit_andnot(const simd16<T> other) const { return vbicq_u16(*this, other); } in bit_andnot()
[all …]