Searched refs:initialAllocation (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/back/
H A Dbag.h38 * of the items stored in the bag. initialAllocation is a hint
42 struct bag *bagCreateBag(int itemSize, int initialAllocation);
H A Dbag.c39 bagCreateBag(int itemSize, int initialAllocation) { argument
45 theBag->items = jvmtiAllocate(initialAllocation * itemSize);
51 theBag->allocated = initialAllocation;

Completed in 31 milliseconds