Home | History | Annotate | Download | only in callgrind

Lines Matching full: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.
248 BBCC** bbccs;
251 bbccs = (BBCC**) CLG_MALLOC("cl.bbcc.nr.1", sizeof(BBCC*) * size);
253 bbccs[i] = 0;
255 CLG_DEBUG(3," new_recursion(size %d): %p\n", size, bbccs);
257 return bbccs;
316 * in the hash key: Only BBCCs with rec level 0 are in hashes.
408 /* update list of BBCCs for same BB */