Home | History | Annotate | Download | only in i18n

Lines Matching defs:ce

47             int64_t ce = left.nextCE(errorCode);
48 leftPrimary = (uint32_t)(ce >> 32);
50 // Variable CE, shift it to quaternary level.
54 // Store only the primary of the variable CE.
55 left.setCurrentCE(ce & INT64_C(0xffffffff00000000));
57 ce = left.nextCE(errorCode);
58 leftPrimary = (uint32_t)(ce >> 32);
72 int64_t ce = right.nextCE(errorCode);
73 rightPrimary = (uint32_t)(ce >> 32);
75 // Variable CE, shift it to quaternary level.
79 // Store only the primary of the variable CE.
80 right.setCurrentCE(ce & INT64_C(0xffffffff00000000));
82 ce = right.nextCE(errorCode);
83 rightPrimary = (uint32_t)(ce >> 32);
195 int64_t ce;
197 ce = left.getCE(leftIndex++);
198 leftCase = (uint32_t)ce;
199 } while((uint32_t)(ce >> 32) == 0 || leftCase == 0);
204 ce = right.getCE(rightIndex++);
205 rightCase = (uint32_t)ce;
206 } while((uint32_t)(ce >> 32) == 0 || rightCase == 0);
212 // Note: A tertiary CE has uppercase case bits (0.0.ut)
216 // Otherwise a tertiary CE's uppercase would be no greater than
217 // a primary/secondary CE's uppercase.
277 // Do not change the artificial uppercase weight of a tertiary CE (0.0.ut),
313 int64_t ce = left.getCE(leftIndex++);
314 leftQuaternary = (uint32_t)ce & 0xffff;
317 leftQuaternary = (uint32_t)(ce >> 32);
319 // Regular CE, not tertiary ignorable.
327 int64_t ce = right.getCE(rightIndex++);
328 rightQuaternary = (uint32_t)ce & 0xffff;
331 rightQuaternary = (uint32_t)(ce >> 32);
333 // Regular CE, not tertiary ignorable.