Searched refs:hi (Results 1 - 25 of 92) sorted by relevance

1234

/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DNodeVector.java644 int hi = hi0;
646 // pause(lo, hi);
647 if (lo >= hi)
651 else if (lo == hi - 1)
657 if (a[lo] > a[hi])
661 a[lo] = a[hi];
662 a[hi] = T;
671 int pivot = a[(lo + hi) / 2];
673 a[(lo + hi) / 2] = a[hi];
[all...]
/dalvik/libcore/luni/src/main/java/java/io/
H A DStreamTokenizer.java495 * Specifies that the characters in the range from {@code low} to {@code hi}
502 * @param hi
505 public void ordinaryChars(int low, int hi) { argument
509 if (hi > tokenTypes.length) {
510 hi = tokenTypes.length - 1;
512 for (int i = low; i <= hi; i++) {
630 * Specifies that the characters in the range from {@code low} to {@code hi}
635 * @param hi
638 public void whitespaceChars(int low, int hi) { argument
642 if (hi > tokenType
660 wordChars(int low, int hi) argument
[all...]
/dalvik/vm/mterp/x86-atom/
H A DOP_CONST_16.S32 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
H A DOP_CONST_HIGH16.S32 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
H A DOP_LONG_TO_DOUBLE.S34 FFETCH_ADV 1, %eax # %eax<- next instruction hi; fetch, advance
H A DOP_LONG_TO_FLOAT.S34 FFETCH_ADV 1, %eax # %eax<- next instruction hi; fetch, advance
H A DOP_MOVE.S35 FFETCH_ADV 1, %eax # %eax<- next instruction hi; fetch, advance
H A DOP_MOVE_16.S33 FFETCH_ADV 3, %eax # %eax<- next instruction hi; fetch, advance
H A DOP_MOVE_FROM16.S32 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
H A DOP_MOVE_RESULT.S35 FFETCH_ADV 1, %ecx # %ecx<- next instruction hi; fetch, advance
H A DOP_MOVE_RESULT_WIDE.S37 FFETCH_ADV 1, %edx # %edx<- next instruction hi; fetch, advance
H A DOP_MOVE_WIDE_16.S33 FFETCH_ADV 3, %eax # %eax<- next instruction hi; fetch, advance
H A DOP_MOVE_WIDE_FROM16.S31 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
H A DbinopD2addr.S51 FFETCH_ADV 1, %edx # %ecx<- next instruction hi; fetch, advance
55 FFETCH_ADV 1, %eax # %ecx<- next instruction hi; fetch, advance
62 FFETCH_ADV 1, %edx # %ecx<- next instruction hi; fetch, advance
H A DOP_REM_DOUBLE.S37 movl %eax, -12(%esp) # push parameter double hi
41 movl %eax, -4(%esp) # push parameter double hi
H A DOP_ARRAY_LENGTH.S34 FFETCH_ADV 1, %edx # %edx<- next instruction hi; fetch, advance
H A DOP_CONST.S34 FFETCH_ADV 3, %eax # %eax<- next instruction hi; fetch, advance
H A DOP_CONST_4.S33 FFETCH_ADV 1, %eax # %eax<- next i nstruction hi; fetch, advance
H A DOP_CONST_WIDE_16.S34 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
H A DOP_CONST_WIDE_32.S36 FFETCH_ADV 3, %eax # %eax<- next instruction hi; fetch, advance
H A DOP_DIV_DOUBLE.S36 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
H A DOP_DIV_FLOAT.S36 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
/dalvik/libcore/luni/src/main/java/java/util/
H A DArrays.java189 int hi = array.length - 1;
191 while (lo <= hi) {
192 int mid = (lo + hi) >>> 1;
198 hi = mid - 1;
220 int hi = array.length - 1;
222 while (lo <= hi) {
223 int mid = (lo + hi) >>> 1;
229 hi = mid - 1;
251 int hi = array.length - 1;
253 while (lo <= hi) {
[all...]
H A DTimSort.java172 static <T> void sort(T[] a, int lo, int hi, Comparator<? super T> c) { argument
174 Arrays.sort(a, lo, hi);
178 rangeCheck(a.length, lo, hi);
179 int nRemaining = hi - lo;
185 int initRunLen = countRunAndMakeAscending(a, lo, hi, c);
186 binarySort(a, lo, hi, lo + initRunLen, c);
199 int runLen = countRunAndMakeAscending(a, lo, hi, c);
218 if (DEBUG) assert lo == hi;
236 * @param hi the index after the last element in the range to be sorted
238 * not already known to be sorted (@code lo <= start <= hi}
242 binarySort(T[] a, int lo, int hi, int start, Comparator<? super T> c) argument
312 countRunAndMakeAscending(T[] a, int lo, int hi, Comparator<? super T> c) argument
339 reverseRange(Object[] a, int lo, int hi) argument
[all...]
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DSSLInputStream.java92 long hi = readUint32();
94 return (hi << 32) | lo;

Completed in 102 milliseconds

1234