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

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafL2RMultiplier.java 21 int width = Math.max(2, Math.min(16, getWindowSize(k.bitLength())));
97 protected int getWindowSize(int bits)
99 return WNafUtil.getWindowSize(bits);
WNafUtil.java 269 public static int getWindowSize(int bits)
271 return getWindowSize(bits, DEFAULT_WINDOW_SIZE_CUTOFFS);
281 public static int getWindowSize(int bits, int[] windowSizeCutoffs)
  /frameworks/base/core/java/android/widget/
AdapterViewAnimator.java 304 if (whichChild >= getWindowSize()) {
305 mWhichChild = mLoopViews ? 0 : getWindowSize() - 1;
307 mWhichChild = mLoopViews ? getWindowSize() - 1 : 0;
367 int i = modulo(mCurrentWindowStartUnbounded + relativeIndex, getWindowSize());
383 int getWindowSize() {
417 int index = modulo(i, getWindowSize());
489 int rangeStart = modulo(newWindowStart, getWindowSize());
490 int rangeEnd = modulo(newWindowEnd, getWindowSize());
524 int index = modulo(i, getWindowSize());
747 if (mWhichChild >= getWindowSize()) {
    [all...]
StackView.java 430 int index = modulo(i, getWindowSize());
    [all...]

Completed in 159 milliseconds