Home | History | Annotate | Download | only in callgrind

Lines Matching refs:table

78    cxts.table   = (Context**) CLG_MALLOC("cl.context.ict.1",
82 cxts.table[i] = 0;
85 /* double size of cxt table */
100 if (cxts.table[i] == NULL) continue;
102 curr = cxts.table[i];
120 VG_(free)(cxts.table);
128 cxts.table = new_table;
184 /* check fill degree of context hash table and resize if needed (>80%) */
212 /* insert into Context hash table */
214 cxt->next = cxts.table[idx];
215 cxts.table[idx] = cxt;
252 cxt = cxts.table[idx];