Searched refs:guess (Results 1 - 5 of 5) sorted by relevance

/dalvik/libdex/
H A DDexCatch.cpp59 int guess = (min + max) >> 1; local
60 const DexTry* pTry = &pTries[guess];
64 max = guess - 1;
71 min = guess + 1;
H A DDexDataMap.cpp104 u4 guess = offsets[guessIdx]; local
106 if (offset < guess) {
108 } else if (offset > guess) {
/dalvik/dx/src/com/android/dx/dex/code/
H A DOutputFinisher.java488 * opcode as a first "best guess" and then pessimizes from there
492 * @param guess {@code null-ok;} the current guess as to the best
498 private Dop findOpcodeForInsn(DalvInsn insn, Dop guess) { argument
500 * Note: The initial guess might be null, meaning that an
505 while (guess != null) {
506 if (guess.getFormat().isCompatible(insn)) {
512 guess.getOpcode() != Opcodes.CONST_STRING) {
517 guess = Dops.getNextOrNull(guess, dexOption
[all...]
/dalvik/dexgen/src/com/android/dexgen/util/
H A DIntList.java422 int guess = values[guessIdx];
424 if (value <= guess) {
/dalvik/dx/src/com/android/dx/util/
H A DIntList.java423 int guess = values[guessIdx];
425 if (value <= guess) {

Completed in 622 milliseconds