Home | History | Annotate | Download | only in server

Lines Matching refs:LAST

174             // Last fast case.
639 int LAST = array.length-1;
640 while (LAST >= 0 && array[LAST] == null) {
641 LAST--;
643 for (int idx=LAST; idx>=0; idx--) {
645 final int remain = LAST - idx;
649 array[LAST] = null;
650 LAST--;
653 if (LAST < 0) {
655 } else if (LAST < (array.length/2)) {
656 F[] newa = newArray(LAST+2);
657 System.arraycopy(array, 0, newa, 0, LAST+1);