Lines Matching defs:total_count

813   inline int total_count() {
1104 int total_count = CountHeapObjects();
1105 int count = total_count;
1165 Smi::FromInt(total_count),
1403 // count: <total_count>,
1476 int total_count = summary.total_count();
1479 Smi::FromInt(total_count),
1528 int total_count = LiveObjectList::list_count();
1529 int dump_count = total_count;
1532 if (total_count == 0) {
1534 } else if ((start_idx < 0) || (start_idx >= total_count)) {
1604 Smi::FromInt(total_count),
1722 int* total_count,
1740 (*total_count)++;
1743 } else if ((*total_count > start) && ((*index) < dump_limit)) {
1780 int* total_count,
1805 *total_count = 0;
1816 total_count,
1836 total_count,
1891 (*total_count)++;
1895 } else if ((*total_count > start) && (index < dump_limit)) {
1923 if (*total_count == 1 && !last_obj.is_null() && *last_obj == *target) {
1925 *total_count = 0;
2303 int total_count = lol->TotalObjCount();
2304 if (!total_count) {
2308 Element* elements = NewArray<Element>(total_count);
2317 qsort(elements, total_count, sizeof(Element),
2320 ASSERT(count == total_count);
2323 total_count--;
2324 for (int i = 0; i < total_count; ) {
2330 while (!done && (j < total_count)) {
2484 int total_count = lol->TotalObjCount();
2486 Element* elements = NewArray<Element>(total_count);
2496 qsort(elements, total_count, sizeof(Element),
2499 ASSERT(count == total_count);
2510 int number_not_in_heap = total_count;
2526 bsearch(&key, elements, total_count, sizeof(Element),
2555 for (int i = 0; (i < total_count) && (found < number_not_in_heap); i++) {
2559 i, total_count, element.obj_);
2567 OS::Print("number of objects in lol database %d\n", total_count);
2573 if (number_of_matches != total_count) {
2588 ASSERT(number_of_matches == total_count);
2590 ASSERT(number_not_in_lol == (number_of_heap_objects - total_count));
2592 ASSERT(total_count == number_of_heap_objects);