Home | History | Annotate | Download | only in back

Lines Matching defs:allocated

34     int allocated;  /* space reserved */
51 theBag->allocated = initialAllocation;
60 oldBag->allocated);
96 int allocated = theBag->allocated;
102 if (theBag->used >= allocated) {
104 allocated *= 2;
105 new_items = jvmtiAllocate(allocated * itemSize);
112 theBag->allocated = allocated;