Home | History | Annotate | Download | only in callgrind

Lines Matching refs:table

49    jccs->table = (jCC**) CLG_MALLOC("cl.jumps.ijh.1",
54 jccs->table[i] = 0;
64 dst->table = current_jccs.table;
74 current_jccs.table = h->table;
84 /* double size of jcc table */
102 if (current_jccs.table[i] == NULL) continue;
104 curr_jcc = current_jccs.table[i];
123 VG_(free)(current_jccs.table);
131 current_jccs.table = new_table;
145 /* check fill degree of jcc hash table and resize if needed (>80%) */
173 /* insert into JCC hash table */
175 jcc->next_hash = current_jccs.table[new_idx];
176 current_jccs.table[new_idx] = jcc;
216 jcc = current_jccs.table[idx];