Home
last modified time | relevance | path

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

/dalvik/vm/
DAllocTracker.cpp47 #define kNumAllocRecords 512 /* MUST be power of 2 */ macro
115 kNumAllocRecords, kMaxAllocRecordStackDepth, in dvmEnableAllocTracker()
116 sizeof(AllocRecord) * kNumAllocRecords); in dvmEnableAllocTracker()
119 (AllocRecord*) malloc(sizeof(AllocRecord) * kNumAllocRecords); in dvmEnableAllocTracker()
202 if (++gDvm.allocRecordHead == kNumAllocRecords) in dvmDoTrackAllocation()
212 if (gDvm.allocRecordCount < kNumAllocRecords) in dvmDoTrackAllocation()
283 return (gDvm.allocRecordHead+1 + kNumAllocRecords - gDvm.allocRecordCount) in headIndex()
284 & (kNumAllocRecords-1); in headIndex()
351 idx = (idx + 1) & (kNumAllocRecords-1); in populateStringTables()
434 idx = (idx + 1) & (kNumAllocRecords-1); in generateBaseOutput()
[all …]