Home
last modified time | relevance | path

Searched refs:Maskx (Results 1 – 2 of 2) sorted by relevance

/third_party/re2/util/
Drune.cc44 Maskx = (1<<Bitx)-1, /* 0011 1111 */ enumerator
45 Testx = Maskx ^ 0xFF, /* 1100 0000 */
148 str[1] = Tx | (c & Maskx); in runetochar()
167 str[1] = Tx | ((c >> 1*Bitx) & Maskx); in runetochar()
168 str[2] = Tx | (c & Maskx); in runetochar()
177 str[1] = Tx | ((c >> 2*Bitx) & Maskx); in runetochar()
178 str[2] = Tx | ((c >> 1*Bitx) & Maskx); in runetochar()
179 str[3] = Tx | (c & Maskx); in runetochar()
/third_party/libphonenumber/cpp/src/phonenumbers/utf/
Drune.c39 Maskx = (1<<Bitx)-1, /* 0011 1111 */ enumerator
40 Testx = Maskx ^ 0xFF, /* 1100 0000 */
276 str[1] = (char)(Tx | (c & Maskx)); in runetochar()
297 str[1] = (char)(Tx | ((c >> 1*Bitx) & Maskx)); in runetochar()
298 str[2] = (char)(Tx | (c & Maskx)); in runetochar()
307 str[1] = (char)(Tx | ((c >> 2*Bitx) & Maskx)); in runetochar()
308 str[2] = (char)(Tx | ((c >> 1*Bitx) & Maskx)); in runetochar()
309 str[3] = (char)(Tx | (c & Maskx)); in runetochar()