HomeSort by relevance Sort by last modified time
    Searched refs:gapSize (Results 1 - 6 of 6) sorted by null

  /libcore/luni/src/main/java/java/math/
Primality.java 89 int gapSize = 1024; // for searching of the next probable prime number
91 boolean isDivisible[] = new boolean[gapSize];
116 modules[i] = BigInt.remainderByPositiveInt(startPoint, primes[i]) - gapSize;
124 modules[i] = (modules[i] + gapSize) % primes[i];
126 for (; j < gapSize; j += primes[i]) {
132 for (j = 0; j < gapSize; j++) {
141 startPoint.addPositiveInt(gapSize);
  /dalvik/vm/jdwp/
ExpandBuf.h 49 u1* expandBufAddSpace(ExpandBuf* pBuf, int gapSize);
ExpandBuf.cpp 108 u1* expandBufAddSpace(ExpandBuf* pBuf, int gapSize)
112 ensureSpace(pBuf, gapSize);
115 pBuf->curLen += gapSize;
  /development/apps/NinePatchLab/src/com/android/ninepatch/
NinePatchLab.java 132 final int gapSize = Math.round(mScale * 8);
133 final int drHeight = (HEIGHT - (N - 1) * gapSize) / N;
143 canvas.translate(0, drHeight + gapSize);
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 375 void shiftPc(int where, int gapSize, boolean exclusive)
378 new Shifter(this, where, gapSize, exclusive).visit();
StackMapTable.java 788 void shiftPc(int where, int gapSize, boolean exclusive)
791 new Shifter(this, where, gapSize, exclusive).doit();

Completed in 479 milliseconds