HomeSort by relevance Sort by last modified time
    Searched defs:bbccs (Results 1 - 2 of 2) sorted by null

  /external/valgrind/callgrind/
bbcc.c 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; local
    [all...]
global.h 296 BBCC* bbcc_list; /* BBCCs for same BB (see next_bbcc in BBCC) */
349 * On demand, multiple BBCCs will be created for the same BB
368 * recursion BBCCs. Shared. */
372 BBCC* next_bbcc; /* Chain of BBCCs for same BB */
566 * If --separate-threads=no, BBCCs and JCCs can be shared by all threads, i.e.
584 bbcc_hash bbccs; member in struct:_thread_info
721 void CLG_(init_bbcc_hash)(bbcc_hash* bbccs);

Completed in 52 milliseconds