Lines Matching full:high
397 * 1. Count the number of unique unit values and get the low/high unit values
419 int32_t low, high, prev;
426 /* step 1: examine the input units; set low, high, uniqueCount */
432 prev=high=low;
436 high=bytes[unitIndex];
438 if(high!=prev) {
439 prev=high;
445 count=(high-low)+1;
451 * from low to high
476 high=bytes[unitIndex];
478 if(high!=prev) {
479 /* start of a new subsection for unit high */
482 while(++prev<high) {
486 prev=high;
490 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;