Searched refs:highIdx (Results 1 - 2 of 2) sorted by relevance

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicLineNumberMapping.java98 private BasicLineNumberInfo searchLineNumbers(Address addr, int lowIdx, int highIdx) { argument
99 if (highIdx < lowIdx) return null;
100 if (lowIdx == highIdx) {
107 } else if (lowIdx == highIdx - 1) {
110 } else if (check(addr, highIdx)) {
111 return get(highIdx);
116 int midIdx = (lowIdx + highIdx) >> 1;
125 return searchLineNumbers(addr, midIdx, highIdx);
H A DBasicCDebugInfoDataBase.java352 private BlockSym searchBlocks(Address addr, int lowIdx, int highIdx) { argument
353 if (highIdx < lowIdx) return null;
354 if ((lowIdx == highIdx) || (lowIdx == highIdx - 1)) {
355 // Base case: start with highIdx and walk backward. See whether
360 for (int i = highIdx; i >= 0; --i) {
373 int midIdx = (lowIdx + highIdx) >> 1;
378 return searchBlocks(addr, midIdx, highIdx);

Completed in 40 milliseconds