Searched defs:NonASCIIMask (Results 1 – 1 of 1) sorted by relevance
82 template<> struct NonASCIIMask<4, char16> { struct83 static inline uint32_t value() { return 0xFF80FF80U; } in value()85 template<> struct NonASCIIMask<4, char> { struct86 static inline uint32_t value() { return 0x80808080U; } in value()88 template<> struct NonASCIIMask<8, char16> { struct89 static inline uint64_t value() { return 0xFF80FF80FF80FF80ULL; } in value()91 template<> struct NonASCIIMask<8, char> { struct92 static inline uint64_t value() { return 0x8080808080808080ULL; } in value()95 template<> struct NonASCIIMask<4, wchar_t> { struct96 static inline uint32_t value() { return 0xFFFFFF80U; } in value()[all …]