Lines Matching refs:tertiary
33 /** The secondary/tertiary lower limit for tailoring before any root elements. */
59 /** Default secondary/tertiary weight lead byte. */
64 /** Lower 16 bits of a CE with a common tertiary weight. */
66 /** Lower 32 bits of a CE with common secondary and tertiary weights. */
72 /** Only the 2*6 bits for the pure tertiary weight. */
74 /** Only the secondary & tertiary bits; no case, no quaternary. */
76 /** Case bits and tertiary bits. */
178 * and the tertiary in bits 15..8.
426 uint32_t tertiary = ce32 & 0xff;
427 if(tertiary < SPECIAL_CE32_LOW_BYTE) {
429 return ((int64_t)(ce32 & 0xffff0000) << 32) | ((ce32 & 0xff00) << 16) | (tertiary << 8);
431 ce32 -= tertiary;
432 if((tertiary & 0xf) == LONG_PRIMARY_TAG) {
437 // assert (tertiary & 0xf) == LONG_SECONDARY_TAG
449 * 16-bit secondary/tertiary weights, and a 2-bit quaternary.