Searched defs:NonASCIIMask (Results 1 – 1 of 1) sorted by relevance
97 template<> struct NonASCIIMask<4, char16> { struct98 static inline uint32_t value() { return 0xFF80FF80U; } in value()100 template<> struct NonASCIIMask<4, char> { struct101 static inline uint32_t value() { return 0x80808080U; } in value()103 template<> struct NonASCIIMask<8, char16> { struct104 static inline uint64_t value() { return 0xFF80FF80FF80FF80ULL; } in value()106 template<> struct NonASCIIMask<8, char> { struct107 static inline uint64_t value() { return 0x8080808080808080ULL; } in value()110 template<> struct NonASCIIMask<4, wchar_t> { struct111 static inline uint32_t value() { return 0xFFFFFF80U; } in value()[all …]