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

/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dtcmalloc.cc512 int used_slots = 0; local
517 ASSERT(used_slots < needed_slots); // Need to leave room for terminator
518 if (used_slots + 3 + t->depth >= needed_slots) {
523 result[used_slots+0] = reinterpret_cast<void*>(static_cast<uintptr_t>(1));
524 result[used_slots+1] = reinterpret_cast<void*>(t->size);
525 result[used_slots+2] = reinterpret_cast<void*>(t->depth);
527 result[used_slots+3+d] = t->stack[d];
529 used_slots += 3 + t->depth;
531 result[used_slots] = reinterpret_cast<void*>(static_cast<uintptr_t>(0));
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dtcmalloc.cc543 int used_slots = 0; local
548 ASSERT(used_slots < needed_slots); // Need to leave room for terminator
549 if (used_slots + 3 + t->depth >= needed_slots) {
554 result[used_slots+0] = reinterpret_cast<void*>(static_cast<uintptr_t>(1));
555 result[used_slots+1] = reinterpret_cast<void*>(t->size);
556 result[used_slots+2] = reinterpret_cast<void*>(t->depth);
558 result[used_slots+3+d] = t->stack[d];
560 used_slots += 3 + t->depth;
562 result[used_slots] = reinterpret_cast<void*>(static_cast<uintptr_t>(0));

Completed in 804 milliseconds