Searched refs:delta (Results 1 - 25 of 44) sorted by relevance

12

/dalvik/dx/src/com/android/dx/dex/code/
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 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 DLocalStart.java67 public DalvInsn withRegisterOffset(int delta) { argument
68 return new LocalStart(getPosition(), local.withOffset(delta));
H A DLocalSnapshot.java52 public DalvInsn withRegisterOffset(int delta) { argument
53 return new LocalSnapshot(getPosition(), locals.withOffset(delta));
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/signers/
H A DISO9796d2Signer.java235 int delta = 0;
240 delta = block.length - digSize - 1;
241 digest.doFinal(block, delta);
247 delta = block.length - digSize - 2;
248 digest.doFinal(block, delta);
261 delta -= mR;
263 System.arraycopy(mBuf, 0, block, delta, mR);
268 delta -= messageLength;
270 System.arraycopy(mBuf, 0, block, delta, messageLength);
273 if ((delta
[all...]
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/
H A DAtomicInteger.java148 * @param delta the value to add
151 public final int getAndAdd(int delta) { argument
154 int next = current + delta;
191 * @param delta the value to add
194 public final int addAndGet(int delta) { argument
197 int next = current + delta;
H A DAtomicLong.java173 * @param delta the value to add
176 public final long getAndAdd(long delta) { argument
179 long next = current + delta;
216 * @param delta the value to add
219 public final long addAndGet(long delta) { argument
222 long next = current + delta;
H A DAtomicIntegerArray.java183 * @param delta the value to add
186 public final int getAndAdd(int i, int delta) { argument
189 int next = current + delta;
229 * @param delta the value to add
232 public final int addAndGet(int i, int delta) { argument
235 int next = current + delta;
H A DAtomicLongArray.java182 * @param delta the value to add
185 public final long getAndAdd(int i, long delta) { argument
188 long next = current + delta;
228 * @param delta the value to add
231 public long addAndGet(int i, long delta) { argument
234 long next = current + delta;
/dalvik/dx/src/com/android/dx/rop/code/
H A DPlainCstInsn.java69 public Insn withRegisterOffset(int delta) { argument
71 getResult().withOffset(delta),
72 getSources().withOffset(delta),
H A DSwitchInsn.java82 public Insn withRegisterOffset(int delta) { argument
84 getResult().withOffset(delta),
85 getSources().withOffset(delta),
H A DPlainInsn.java90 public Insn withRegisterOffset(int delta) { argument
92 getResult().withOffset(delta),
93 getSources().withOffset(delta));
H A DFillArrayDataInsn.java102 public Insn withRegisterOffset(int delta) { argument
104 getSources().withOffset(delta),
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 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),
/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/libcore/junit/src/main/java/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/libcore/math/src/main/java/java/math/
H A DConversion.java102 int delta = charsPerInt - previous + currentChar;
103 for (i = 0; i < delta && currentChar > 0; i++) {
226 int delta = 9 - previous + currentChar;
227 for (int i = 0; (i < delta) && (currentChar > 0); i++) {
438 int delta = bitLen - 54;
440 long lVal = val.abs().shiftRight(delta).longValue();
457 && (((mantissa & 2) == 2) || BitLevel.nonZeroDroppedBits(delta,
/dalvik/vm/alloc/
H A DHeapWorker.c129 u8 delta = now - heapWorkerInterpStartTime; local
136 if (delta > HEAP_WORKER_WATCHDOG_TIMEOUT &&
149 } else if (delta > HEAP_WORKER_WATCHDOG_TIMEOUT) {
177 delta / 1000,
188 } else if (delta > HEAP_WORKER_WATCHDOG_TIMEOUT / 2) {
192 delta / 1000,

Completed in 233 milliseconds

12