Searched defs:delta (Results 1 - 25 of 31) sorted by relevance

12

/dalvik/dx/src/com/android/dx/dex/code/
H A DFixedSizeInsn.java64 public final DalvInsn withRegisterOffset(int delta) { argument
65 return withRegisters(getRegisters().withOffset(delta));
H A DLocalEnd.java59 public DalvInsn withRegisterOffset(int delta) { argument
60 return new LocalEnd(getPosition(), local.withOffset(delta));
H A DLocalSnapshot.java52 public DalvInsn withRegisterOffset(int delta) { argument
53 return new LocalSnapshot(getPosition(), locals.withOffset(delta));
H A DVariableSizeInsn.java46 public final DalvInsn withRegisterOffset(int delta) { argument
47 return withRegisters(getRegisters().withOffset(delta));
H A DZeroSizeInsn.java59 public DalvInsn withRegisterOffset(int delta) { argument
60 return withRegisters(getRegisters().withOffset(delta));
H A DLocalStart.java67 public DalvInsn withRegisterOffset(int delta) { argument
68 return new LocalStart(getPosition(), local.withOffset(delta));
H A DDalvInsn.java382 * register references have been offset by the given delta, and its
385 * @param delta the amount to offset register references by
388 public abstract DalvInsn withRegisterOffset(int delta); argument
/dalvik/dx/src/com/android/dx/rop/code/
H A DInsnList.java110 * @param delta the amount to offset register numbers by
113 public InsnList withRegisterOffset(int delta) { argument
120 result.set0(i, one.withRegisterOffset(delta));
H A DPlainCstInsn.java69 public Insn withRegisterOffset(int delta) { argument
71 getResult().withOffset(delta),
72 getSources().withOffset(delta),
H A DPlainInsn.java90 public Insn withRegisterOffset(int delta) { argument
92 getResult().withOffset(delta),
93 getSources().withOffset(delta));
H A DRopMethod.java126 * @param delta the amount to offset register numbers by
129 public RopMethod withRegisterOffset(int delta) { argument
130 RopMethod result = new RopMethod(blocks.withRegisterOffset(delta),
H A DFillArrayDataInsn.java102 public Insn withRegisterOffset(int delta) { argument
104 getSources().withOffset(delta),
H A DSwitchInsn.java82 public Insn withRegisterOffset(int delta) { argument
84 getResult().withOffset(delta),
85 getSources().withOffset(delta),
H A DThrowingCstInsn.java86 public Insn withRegisterOffset(int delta) { argument
88 getSources().withOffset(delta),
H A DThrowingInsn.java105 public Insn withRegisterOffset(int delta) { argument
107 getSources().withOffset(delta),
H A DBasicBlock.java259 * @param delta the amount to offset register numbers by
262 public BasicBlock withRegisterOffset(int delta) { argument
263 return new BasicBlock(label, insns.withRegisterOffset(delta),
H A DBasicBlockList.java190 * @param delta the amount to offset register numbers by
193 public BasicBlockList withRegisterOffset(int delta) { argument
200 result.set(i, one.withRegisterOffset(delta));
H A DRegisterSpecList.java298 * @param delta the amount to offset the register numbers by
301 public RegisterSpecList withOffset(int delta) { argument
314 result.set0(i, one.withOffset(delta));
H A DRegisterSpecSet.java354 * @param delta the amount to offset the register numbers by
357 public RegisterSpecSet withOffset(int delta) { argument
359 RegisterSpecSet result = new RegisterSpecSet(len + delta);
364 result.put(spec.withOffset(delta));
H A DInsn.java231 * register references have been offset by the given delta.
233 * @param delta the amount to offset register references by
236 public abstract Insn withRegisterOffset(int delta); argument
H A DRegisterSpec.java500 * @param delta the amount to offset the register number by
503 public RegisterSpec withOffset(int delta) { argument
504 if (delta == 0) {
508 return withReg(reg + delta);
/dalvik/dx/src/junit/framework/
H A DAssert.java90 * Asserts that two doubles are equal concerning a delta. If they are not
92 * value is infinity then the delta value is ignored.
94 static public void assertEquals(String message, double expected, double actual, double delta) { argument
100 } else if (!(Math.abs(expected-actual) <= delta)) // Because comparison with NaN always returns false
104 * Asserts that two doubles are equal concerning a delta. If the expected
105 * value is infinity then the delta value is ignored.
107 static public void assertEquals(double expected, double actual, double delta) { argument
108 assertEquals(null, expected, actual, delta);
111 * Asserts that two floats are equal concerning a delta. If they are not
113 * value is infinity then the delta valu
115 assertEquals(String message, float expected, float actual, float delta) argument
128 assertEquals(float expected, float actual, float delta) argument
[all...]
/dalvik/tests/021-string2/src/junit/framework/
H A DAssert.java90 * Asserts that two doubles are equal concerning a delta. If they are not
92 * value is infinity then the delta value is ignored.
94 static public void assertEquals(String message, double expected, double actual, double delta) { argument
100 } else if (!(Math.abs(expected-actual) <= delta)) // Because comparison with NaN always returns false
104 * Asserts that two doubles are equal concerning a delta. If the expected
105 * value is infinity then the delta value is ignored.
107 static public void assertEquals(double expected, double actual, double delta) { argument
108 assertEquals(null, expected, actual, delta);
111 * Asserts that two floats are equal concerning a delta. If they are not
113 * value is infinity then the delta valu
115 assertEquals(String message, float expected, float actual, float delta) argument
128 assertEquals(float expected, float actual, float delta) argument
[all...]
/dalvik/tests/082-inline-execute/src/junit/framework/
H A DAssert.java90 * Asserts that two doubles are equal concerning a delta. If they are not
92 * value is infinity then the delta value is ignored.
94 static public void assertEquals(String message, double expected, double actual, double delta) { argument
100 } else if (!(Math.abs(expected-actual) <= delta)) // Because comparison with NaN always returns false
104 * Asserts that two doubles are equal concerning a delta. If the expected
105 * value is infinity then the delta value is ignored.
107 static public void assertEquals(double expected, double actual, double delta) { argument
108 assertEquals(null, expected, actual, delta);
111 * Asserts that two floats are equal concerning a delta. If they are not
113 * value is infinity then the delta valu
115 assertEquals(String message, float expected, float actual, float delta) argument
128 assertEquals(float expected, float actual, float delta) argument
[all...]
/dalvik/vm/alloc/
H A DHeapWorker.c128 u8 delta = now - heapWorkerInterpStartTime; local
130 if (delta > HEAP_WORKER_WATCHDOG_TIMEOUT &&
143 } else if (delta > HEAP_WORKER_WATCHDOG_TIMEOUT) {
171 delta / 1000,
182 } else if (delta > HEAP_WORKER_WATCHDOG_TIMEOUT / 2) {
186 delta / 1000,

Completed in 1160 milliseconds

12