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

  /dalvik/libcore/math/src/main/java/java/math/
Primality.java 96 int gapSize = 1024; // for searching of the next probable prime number
98 boolean isDivisible[] = new boolean[gapSize];
123 modules[i] = BigInt.remainderByPositiveInt(startPoint, primes[i]) - gapSize;
131 modules[i] = (modules[i] + gapSize) % primes[i];
133 for (; j < gapSize; j += primes[i]) {
139 for (j = 0; j < gapSize; j++) {
148 startPoint.addPositiveInt(gapSize);
  /dalvik/vm/jdwp/
ExpandBuf.h 50 u1* expandBufAddSpace(ExpandBuf* pBuf, int gapSize);
ExpandBuf.c 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);

Completed in 38 milliseconds