Home | History | Annotate | Download | only in common

Lines Matching refs:right

466   // is the right side bogus?
625 * one way to do this is to right-shift the value to
1510 UChar *right = left + length - 1; // -1 for inclusive boundary (length>=2)
1514 // Before the loop we know left<right because length>=2.
1517 hasSupplementary |= (UBool)U16_IS_LEAD(*left++ = *right);
1518 *right-- = swap;
1519 } while(left < right);
1529 right = left + length - 1; // -1 so that we can look at *(left+1) if left<right
1530 while(left < right) {