Lines Matching defs:bits_not_set_anywhere
1914 simdutf_really_inline bool bits_not_set_anywhere() const { return _mm256_testz_si256(*this, *this); }
1915 simdutf_really_inline bool any_bits_set_anywhere() const { return !bits_not_set_anywhere(); }
1916 simdutf_really_inline bool bits_not_set_anywhere(simd8<uint8_t> bits) const { return _mm256_testz_si256(*this, bits); }
1917 simdutf_really_inline bool any_bits_set_anywhere(simd8<uint8_t> bits) const { return !bits_not_set_anywhere(bits); }
2181 simdutf_really_inline bool bits_not_set_anywhere() const { return _mm256_testz_si256(*this, *this); }
2182 simdutf_really_inline bool any_bits_set_anywhere() const { return !bits_not_set_anywhere(); }
2183 simdutf_really_inline bool bits_not_set_anywhere(simd16<uint16_t> bits) const { return _mm256_testz_si256(*this, bits); }
2184 simdutf_really_inline bool any_bits_set_anywhere(simd16<uint16_t> bits) const { return !bits_not_set_anywhere(bits); }
2806 simdutf_really_inline bool bits_not_set_anywhere() const { return _mm_testz_si128(*this, *this); }
2807 simdutf_really_inline bool any_bits_set_anywhere() const { return !bits_not_set_anywhere(); }
2808 simdutf_really_inline bool bits_not_set_anywhere(simd8<uint8_t> bits) const { return _mm_testz_si128(*this, bits); }
2809 simdutf_really_inline bool any_bits_set_anywhere(simd8<uint8_t> bits) const { return !bits_not_set_anywhere(bits); }
2863 simdutf_really_inline bool bits_not_set_anywhere() const { return _mm_testz_si128(*this, *this); }
2864 simdutf_really_inline bool any_bits_set_anywhere() const { return !bits_not_set_anywhere(); }
2865 simdutf_really_inline bool bits_not_set_anywhere(simd8<uint16_t> bits) const { return _mm_testz_si128(*this, bits); }
2866 simdutf_really_inline bool any_bits_set_anywhere(simd8<uint16_t> bits) const { return !bits_not_set_anywhere(bits); }
3146 simdutf_really_inline bool bits_not_set_anywhere() const { return _mm_testz_si128(*this, *this); }
3147 simdutf_really_inline bool any_bits_set_anywhere() const { return !bits_not_set_anywhere(); }
3148 simdutf_really_inline bool bits_not_set_anywhere(simd16<uint16_t> bits) const { return _mm_testz_si128(*this, bits); }
3149 simdutf_really_inline bool any_bits_set_anywhere(simd16<uint16_t> bits) const { return !bits_not_set_anywhere(bits); }
3786 return this->saturating_sub(0b01111111u).bits_not_set_anywhere();
3789 simdutf_really_inline bool bits_not_set_anywhere() const {
3793 return !bits_not_set_anywhere();
3795 simdutf_really_inline bool bits_not_set_anywhere(simd8<uint8_t> bits) const {
3800 return !bits_not_set_anywhere(bits);
26878 return input.reduce_or().saturating_sub(0b01111111u).bits_not_set_anywhere();