Lines Matching defs:ce
48 int64_t ce = left.nextCE(errorCode);
49 leftPrimary = (uint32_t)(ce >> 32);
51 // Variable CE, shift it to quaternary level.
55 // Store only the primary of the variable CE.
56 left.setCurrentCE(ce & INT64_C(0xffffffff00000000));
58 ce = left.nextCE(errorCode);
59 leftPrimary = (uint32_t)(ce >> 32);
73 int64_t ce = right.nextCE(errorCode);
74 rightPrimary = (uint32_t)(ce >> 32);
76 // Variable CE, shift it to quaternary level.
80 // Store only the primary of the variable CE.
81 right.setCurrentCE(ce & INT64_C(0xffffffff00000000));
83 ce = right.nextCE(errorCode);
84 rightPrimary = (uint32_t)(ce >> 32);
198 int64_t ce;
200 ce = left.getCE(leftIndex++);
201 leftCase = (uint32_t)ce;
202 } while((uint32_t)(ce >> 32) == 0 || leftCase == 0);
207 ce = right.getCE(rightIndex++);
208 rightCase = (uint32_t)ce;
209 } while((uint32_t)(ce >> 32) == 0 || rightCase == 0);
215 // Note: A tertiary CE has uppercase case bits (0.0.ut)
219 // Otherwise a tertiary CE's uppercase would be no greater than
220 // a primary/secondary CE's uppercase.
281 // Do not change the artificial uppercase weight of a tertiary CE (0.0.ut),
317 int64_t ce = left.getCE(leftIndex++);
318 leftQuaternary = (uint32_t)ce & 0xffff;
321 leftQuaternary = (uint32_t)(ce >> 32);
325 // Regular CE, not tertiary ignorable.
333 int64_t ce = right.getCE(rightIndex++);
334 rightQuaternary = (uint32_t)ce & 0xffff;
337 rightQuaternary = (uint32_t)(ce >> 32);
341 // Regular CE, not tertiary ignorable.