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 */
81 if (bbs.table[i] == NULL) continue;
83 curr = bbs.table[i];
101 VG_(free)(bbs.table);
109 bbs.table = new_table;
125 /* check fill degree of bb hash table and resize if needed (>80%) */
151 /* insert into BB hash table */
153 bb->next = bbs.table[idx];
154 bbs.table[idx] = bb;
183 bb = bbs.table[idx];
296 bb = bbs.table[idx];
318 /* unlink it from hash table */
322 tl_assert(bb == bbs.table[idx]);
323 bbs.table[idx] = bb->next;
325 tl_assert(bb != bbs.table[idx]);