Lines Matching refs:leftSecondary
117 uint32_t leftSecondary;
119 leftSecondary = ((uint32_t)left.getCE(leftIndex++)) >> 16;
120 } while(leftSecondary == 0);
127 if(leftSecondary != rightSecondary) {
128 return (leftSecondary < rightSecondary) ? UCOL_LESS : UCOL_GREATER;
130 if(leftSecondary == Collation::NO_CE_WEIGHT16) { break; }
157 int32_t leftSecondary = 0;
158 while(leftSecondary == 0 && leftIndex > leftStart) {
159 leftSecondary = ((uint32_t)left.getCE(--leftIndex)) >> 16;
167 if(leftSecondary != rightSecondary) {
168 return (leftSecondary < rightSecondary) ? UCOL_LESS : UCOL_GREATER;
170 if(leftSecondary == 0) { break; }