Searched defs:max (Results 1 - 8 of 8) sorted by relevance

/dalvik/libdex/
H A DDexDataMap.h28 u4 max; /* maximum number of items that may be held */ member in struct:DexDataMap
H A DDexCatch.cpp54 // Note: Signed type is important for max and min.
56 int max = triesSize - 1; local
58 while (max >= min) {
59 int guess = (min + max) >> 1;
64 max = guess - 1;
H A DDexDataMap.cpp52 map->max = maxCount;
77 assert(map->count < map->max);
98 // Note: Signed type is important for max and min.
100 int max = map->count - 1; local
103 while (max >= min) {
104 int guessIdx = (min + max) >> 1;
108 max = guessIdx - 1;
/dalvik/dexgen/src/com/android/dexgen/util/
H A DBitIntSet.java32 * @param max the maximum value of ints in this set.
34 public BitIntSet(int max) { argument
35 bits = Bits.makeBitSet(max);
52 Math.max(value + 1, 2 * Bits.getMax(bits)));
H A DBits.java33 * @param max {@code >= 0;} the maximum bit index (exclusive)
36 public static int[] makeBitSet(int max) { argument
37 int size = (max + 0x1f) >> 5;
/dalvik/dx/src/com/android/dx/util/
H A DBitIntSet.java32 * @param max the maximum value of ints in this set.
34 public BitIntSet(int max) { argument
35 bits = Bits.makeBitSet(max);
53 Math.max(value + 1, 2 * Bits.getMax(bits)));
H A DBits.java33 * @param max {@code >= 0;} the maximum bit index (exclusive)
36 public static int[] makeBitSet(int max) { argument
37 int size = (max + 0x1f) >> 5;
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 131 milliseconds