Home | History | Annotate | Download | only in coll

Lines Matching full:highlimit

327         int highLimit = scriptStarts[scriptStarts.length - 1];
328 assert(highLimit == (Collation.TRAIL_WEIGHT_BYTE << 8));
385 highLimit = addHighScriptRange(table, index, highLimit);
416 if(lowStart > highLimit) {
417 if((lowStart - (skippedReserved & 0xff00)) <= highLimit) {
462 private int addHighScriptRange(short[] table, int index, int highLimit) {
464 if((limit & 0xff) > (highLimit & 0xff)) {
465 highLimit -= 0x100;
468 highLimit = ((highLimit & 0xff00) - ((limit & 0xff00) - (start & 0xff00))) | (start & 0xff);
469 table[index] = (short)(highLimit >> 8);
470 return highLimit;