Home | History | Annotate | Download | only in coll

Lines Matching refs:ce

40                 long ce = left.nextCE();
41 leftPrimary = ce >>> 32;
43 // Variable CE, shift it to quaternary level.
47 // Store only the primary of the variable CE.
48 left.setCurrentCE(ce & 0xffffffff00000000L);
50 ce = left.nextCE();
51 leftPrimary = ce >>> 32;
64 long ce = right.nextCE();
65 rightPrimary = ce >>> 32;
67 // Variable CE, shift it to quaternary level.
71 // Store only the primary of the variable CE.
72 right.setCurrentCE(ce & 0xffffffff00000000L);
74 ce = right.nextCE();
75 rightPrimary = ce >>> 32;
191 long ce;
193 ce = left.getCE(leftIndex++);
194 leftCase = (int) ce;
195 } while ((ce >>> 32) == 0 || leftCase == 0);
200 ce = right.getCE(rightIndex++);
201 rightCase = (int) ce;
202 } while ((ce >>> 32) == 0 || rightCase == 0);
208 // Note: A tertiary CE has uppercase case bits (0.0.ut)
212 // Otherwise a tertiary CE's uppercase would be no greater than
213 // a primary/secondary CE's uppercase.
275 // Do not change the artificial uppercase weight of a tertiary CE (0.0.ut),
315 long ce = left.getCE(leftIndex++);
316 leftQuaternary = ce & 0xffff;
319 leftQuaternary = ce >>> 32;
321 // Regular CE, not tertiary ignorable.
329 long ce = right.getCE(rightIndex++);
330 rightQuaternary = ce & 0xffff;
333 rightQuaternary = ce >>> 32;
335 // Regular CE, not tertiary ignorable.