Home | History | Annotate | Download | only in i18n

Lines Matching refs:primary

37     uint32_t primary;
40 primary = (uint32_t)((offset % 251) + 4) << 16;
44 primary = (uint32_t)((offset % 254) + 2) << 16;
48 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24));
56 uint32_t primary = (uint32_t)((offset % 254) + 2) << 8;
62 primary |= (uint32_t)((offset % 251) + 4) << 16;
66 primary |= (uint32_t)((offset % 254) + 2) << 16;
70 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24));
125 uint32_t p = (uint32_t)(dataCE >> 32); // three-byte primary pppppp00
137 uint32_t primary = 2 + (c % 18) * 14;
140 primary |= (2 + (c % 254)) << 8;
142 // Second byte: 251 values 04..FE excluding the primary compression bytes.
143 primary |= (4 + (c % 251)) << 16;
145 return primary | (UNASSIGNED_IMPLICIT_BYTE << 24);