Home
last modified time | relevance | path

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

/src/contrib/one-true-awk/
H A Drun.c736 Bitx = 6, enumerator
743 Tx = ((1<<(Bitx+1))-1) ^ 0xFF, /* 1000 0000 */
749 Rune1 = (1<<(Bit1+0*Bitx))-1, /* 0000 0000 0000 0000 0111 1111 */
750 Rune2 = (1<<(Bit2+1*Bitx))-1, /* 0000 0000 0000 0111 1111 1111 */
751 Rune3 = (1<<(Bit3+2*Bitx))-1, /* 0000 0000 1111 1111 1111 1111 */
752 Rune4 = (1<<(Bit4+3*Bitx))-1, /* 0011 1111 1111 1111 1111 1111 */
754 Maskx = (1<<Bitx)-1, /* 0011 1111 */
769 str[0] = T2 | (c >> 1*Bitx); in runetochar()
778 str[0] = T3 | (c >> 2*Bitx); in runetochar()
779 str[1] = Tx | ((c >> 1*Bitx) & Maskx); in runetochar()
[all …]