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

/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.cpp379 TreeList<Chunk> *curTL, *prevTL; local
387 for (prevTL = curTL = root(); curTL != NULL;) {
388 if (curTL->size() == size) { // exact match
391 prevTL = curTL;
392 if (curTL->size() < size) { // proceed to right sub-tree
393 curTL = curTL->right();
395 assert(curTL->size() > size, "size inconsistency");
396 curTL
470 TreeList<Chunk>* curTL; local
500 TreeList<Chunk> *curTL = root(); local
657 TreeList<Chunk>* curTL = tl; local
709 TreeList<Chunk> *curTL, *prevTL; local
[all...]

Completed in 45 milliseconds