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

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp1329 FreeChunk* CompactibleFreeListSpace::getChunkFromGreater(size_t numWords) { argument
1332 assert(numWords >= MinChunkSize, "Size is less than minimum");
1337 size_t currSize = numWords + MinChunkSize;
1342 ret = getFromListGreater(fl, numWords);
1349 (size_t)(numWords + MinChunkSize));
1356 assert(ret->size() - numWords >= MinChunkSize,
1360 (void) splitChunkAndReturnRemainder(ret, numWords);
1865 FreeChunk* CompactibleFreeListSpace::bestFitSmall(size_t numWords) { argument
1869 size_t start = align_object_size(numWords + MinChunkSize);
1880 FreeChunk* res = getFromListGreater(fl, numWords);
1894 getFromListGreater(FreeList<FreeChunk>* fl, size_t numWords) argument
[all...]

Completed in 48 milliseconds