Searched refs:maxCount (Results 1 - 9 of 9) sorted by relevance

/dalvik/libdex/
H A DDexDataMap.cpp28 DexDataMap* dexDataMapAlloc(u4 maxCount) { argument
39 if (!safe_mul(&size, maxCount, sizeof(u4) + sizeof(u2)) ||
51 map->max = maxCount;
53 map->types = (u2*) (map->offsets + maxCount);
H A DDexDataMap.h36 DexDataMap* dexDataMapAlloc(u4 maxCount);
/dalvik/vm/
H A DReferenceTable.h50 * If "initialCount" != "maxCount", the table will expand as required.
55 int maxCount);
H A DIndirectRefTable.cpp31 size_t maxCount, IndirectRefKind desiredKind)
34 assert(initialCount <= maxCount);
45 max_entries_ = maxCount;
30 init(size_t initialCount, size_t maxCount, IndirectRefKind desiredKind) argument
H A DReferenceTable.cpp26 int maxCount)
29 assert(initialCount <= maxCount);
39 pRef->maxEntries = maxCount;
25 dvmInitReferenceTable(ReferenceTable* pRef, int initialCount, int maxCount) argument
H A DIndirectRefTable.h302 * If "initialCount" != "maxCount", the table will expand as required.
309 bool init(size_t initialCount, size_t maxCount, IndirectRefKind kind);
/dalvik/vm/reflect/
H A DProxy.cpp245 int numInterfaces, maxCount, actualCount, allCount; local
253 maxCount = 3; // 3 methods in java.lang.Object
262 maxCount += clazz->virtualMethodCount;
270 maxCount += iclass->virtualMethodCount;
274 methods = (Method**) malloc(maxCount * sizeof(*methods));
275 allMethods = (Method**) malloc(maxCount * sizeof(*methods));
311 assert(allCount == maxCount);
/dalvik/dx/src/com/android/dx/ssa/back/
H A DFirstFitLocalCombiningAllocator.java1120 int maxCount = 0;
1123 if (maxCount < count[i]) {
1126 maxCount = count[i];
/dalvik/vm/oo/
H A DClass.cpp2870 int maxCount; local
2879 maxCount = clazz->virtualMethodCount;
2881 maxCount += clazz->super->vtableCount;
2888 //ALOGD("+++ max vmethods for '%s' is %d", clazz->descriptor, maxCount);
2898 sizeof(Method*) * maxCount);
2963 assert(actualCount <= maxCount);
2965 if (actualCount < maxCount) {
2975 maxCount, actualCount);

Completed in 159 milliseconds