HomeSort by relevance Sort by last modified time
    Searched refs:gHashTable (Results 1 - 2 of 2) sorted by null

  /bionic/libc/bionic/
malloc_debug_common.c 55 HashTable gHashTable;
117 if (gHashTable.count == 0) {
126 void** list = (void**)dlmalloc(sizeof(void*) * gHashTable.count);
132 HashEntry* entry = gHashTable.slots[i];
144 *overallSize = *infoSize * gHashTable.count;
155 qsort((void*)list, gHashTable.count, sizeof(void*), hash_entry_compare);
158 const int count = gHashTable.count;
malloc_debug_leak.c 63 extern HashTable gHashTable;
145 HashEntry* entry = find_entry(&gHashTable, slot, backtrace, numEntries, size);
155 entry->next = gHashTable.slots[slot];
161 gHashTable.slots[slot] = entry;
168 gHashTable.count++;
179 HashEntry* e1 = gHashTable.slots[i];
204 gHashTable.slots[entry->slot] = entry->next;
208 gHashTable.count--;

Completed in 18 milliseconds