Home
last modified time | relevance | path

Searched refs:getMax (Results 1 – 5 of 5) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
DBitIntSet.java50 if (value >= Bits.getMax(bits)) { in ensureCapacity()
52 Math.max(value + 1, 2 * Bits.getMax(bits))); in ensureCapacity()
60 if (value < Bits.getMax(bits)) { in remove()
67 return (value < Bits.getMax(bits)) && Bits.get(bits, value); in has()
74 ensureCapacity(Bits.getMax(o.bits) + 1); in merge()
DBits.java47 public static int getMax(int[] bits) { in getMax() method in Bits
/dalvik/dx/src/com/android/dx/util/
DBitIntSet.java51 if (value >= Bits.getMax(bits)) { in ensureCapacity()
53 Math.max(value + 1, 2 * Bits.getMax(bits))); in ensureCapacity()
62 if (value < Bits.getMax(bits)) { in remove()
70 return (value < Bits.getMax(bits)) && Bits.get(bits, value); in has()
78 ensureCapacity(Bits.getMax(o.bits) + 1); in merge()
DBits.java47 public static int getMax(int[] bits) { in getMax() method in Bits
/dalvik/dx/junit-tests/com/android/dx/util/
DBitsTest.java49 Bits.getMax(new int[expect])); in test_getMax()