Home | History | Annotate | Download | only in callgrind

Lines Matching refs:table

44    bbs.table = (BB**) CLG_MALLOC("cl.bb.ibh.1",
47 for (i = 0; i < bbs.size; i++) bbs.table[i] = NULL;
65 /* double size of bb table */
83 if (bbs.table[i] == NULL) continue;
85 curr = bbs.table[i];
103 VG_(free)(bbs.table);
111 bbs.table = new_table;
127 /* check fill degree of bb hash table and resize if needed (>80%) */
153 /* insert into BB hash table */
155 bb->next = bbs.table[idx];
156 bbs.table[idx] = bb;
185 bb = bbs.table[idx];
298 bb = bbs.table[idx];
320 /* unlink it from hash table */
324 tl_assert(bb == bbs.table[idx]);
325 bbs.table[idx] = bb->next;
327 tl_assert(bb != bbs.table[idx]);