Home
last modified time | relevance | path

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

/third_party/node/deps/simdutf/
Dsimdutf.cpp265 struct base_u8 { struct
266 uint8x16_t value;
267 static const int SIZE = sizeof(value);
270 simdutf_really_inline base_u8(const uint8x16_t _value) : value(_value) {} in base_u8() argument
271 simdutf_really_inline operator const uint8x16_t&() const { return this->value; } in operator const uint8x16_t&()
272 simdutf_really_inline operator uint8x16_t&() { return this->value; } in operator uint8x16_t&()
273 simdutf_really_inline T first() const { return vgetq_lane_u8(*this,0); } in first()
274 simdutf_really_inline T last() const { return vgetq_lane_u8(*this,15); } in last()
277 …utf_really_inline simd8<T> operator|(const simd8<T> other) const { return vorrq_u8(*this, other); } in operator |()
278 …utf_really_inline simd8<T> operator&(const simd8<T> other) const { return vandq_u8(*this, other); } in operator &()
[all …]