Lines Matching refs:debug
160 #define HASHMAP_DEBUG_FIELDS struct hashmap_debug_info debug;
557 h->debug.rem_count++;
558 h->debug.last_rem_idx = idx;
717 i->put_count = h->debug.put_count;
718 i->rem_count = h->debug.rem_count;
721 assert(i->put_count == h->debug.put_count);
723 assert(i->rem_count == h->debug.rem_count ||
724 (i->rem_count == h->debug.rem_count - 1 &&
725 i->prev_idx == h->debug.last_rem_idx));
727 i->rem_count = h->debug.rem_count;
804 LIST_PREPEND(debug_list, hashmap_debug_list, &h->debug);
805 h->debug.func = func;
806 h->debug.file = file;
807 h->debug.line = line;
859 LIST_REMOVE(debug_list, hashmap_debug_list, &h->debug);
969 h->debug.put_count++;
1062 h->debug.max_entries = MAX(h->debug.max_entries, n_entries(h));
1294 h->b.debug.put_count++;
1295 h->b.debug.rem_count++;
1296 h->b.debug.last_rem_idx = idx;