Lines Matching refs:high
395 * 1. Count the number of unique unit values and get the low/high unit values
417 int32_t low, high, prev;
424 /* step 1: examine the input units; set low, high, uniqueCount */
430 prev=high=low;
434 high=bytes[unitIndex];
436 if(high!=prev) {
437 prev=high;
443 count=(high-low)+1;
449 * from low to high
474 high=bytes[unitIndex];
476 if(high!=prev) {
477 /* start of a new subsection for unit high */
480 while(++prev<high) {
484 prev=high;
488 section[j++]=((uint32_t)high<<UCNV_EXT_TO_U_BYTE_SHIFT)|(uint32_t)i;
716 UChar32 low, high, prev;
724 /* step 1: examine the input units; set low, high, uniqueCount */
730 prev=high=low;
734 high=uchars[unitIndex];
736 if(high!=prev) {
737 prev=high;
760 high=uchars[unitIndex];
762 if(high!=prev) {
763 /* start of a new subsection for unit high */
764 prev=high;
767 sectionUChars[j]=(UChar)high;