Lines Matching defs:tertiary
35 /** The secondary/tertiary lower limit for tailoring before any root elements. */
61 /** Default secondary/tertiary weight lead byte. */
66 /** Lower 16 bits of a CE with a common tertiary weight. */
68 /** Lower 32 bits of a CE with common secondary and tertiary weights. */
74 /** Only the 2*6 bits for the pure tertiary weight. */
76 /** Only the secondary & tertiary bits; no case, no quaternary. */
78 /** Case bits and tertiary bits. */
173 * Bits 15.. 8: Tertiary weight.
180 * and the tertiary in bits 15..8.
186 * Bits 23..16: Tertiary weight tt of the first CE.
428 uint32_t tertiary = ce32 & 0xff;
429 if(tertiary < SPECIAL_CE32_LOW_BYTE) {
431 return ((int64_t)(ce32 & 0xffff0000) << 32) | ((ce32 & 0xff00) << 16) | (tertiary << 8);
433 ce32 -= tertiary;
434 if((tertiary & 0xf) == LONG_PRIMARY_TAG) {
439 // assert (tertiary & 0xf) == LONG_SECONDARY_TAG
451 * 16-bit secondary/tertiary weights, and a 2-bit quaternary.