Lines Matching defs:hint
416 // populated, get a chunk associated with the hint for this
419 /* Use the hint to find a size with a surplus, and reset the hint. */
421 while (hintTL->hint() != 0) {
422 assert(hintTL->hint() == 0 || hintTL->hint() > hintTL->size(),
423 "hint points in the wrong direction");
424 hintTL = find_list(hintTL->hint());
428 // No useful hint. Set the hint to NULL and go on.
432 assert(hintTL->size() > size, "hint is inconsistent");
434 // The hint led to a list that has a surplus. Use it.
435 // Set the hint for the candidate to an overpopulated
442 // The evm code reset the hint of the candidate as
444 // the hint pointing to a list that didn't work.
1122 size_t hint;
1124 setTreeHintsClosure(size_t v) { hint = v; }
1126 fl->set_hint(hint);
1127 assert(fl->hint() == 0 || fl->hint() > fl->size(),
1128 "Current hint is inconsistent");
1130 hint = fl->size();