Home | History | Annotate | Download | only in callgrind

Lines Matching refs:bbccs

43 void CLG_(init_bbcc_hash)(bbcc_hash* bbccs)
47 CLG_ASSERT(bbccs != 0);
49 bbccs->size = N_BBCC_INITIAL_ENTRIES;
50 bbccs->entries = 0;
51 bbccs->table = (BBCC**) CLG_MALLOC("cl.bbcc.ibh.1",
52 bbccs->size * sizeof(BBCC*));
54 for (i = 0; i < bbccs->size; i++) bbccs->table[i] = NULL;
134 /* All BBCCs for recursion level 0 are inserted into a
138 * BBCCs for other recursion levels are in bbcc->rec_array.
246 BBCC** bbccs;
249 bbccs = (BBCC**) CLG_MALLOC("cl.bbcc.nr.1", sizeof(BBCC*) * size);
251 bbccs[i] = 0;
253 CLG_DEBUG(3," new_recursion(size %d): %p\n", size, bbccs);
255 return bbccs;
314 * in the hash key: Only BBCCs with rec level 0 are in hashes.
413 /* update list of BBCCs for same BB */