OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:jccs
(Results
1 - 3
of
3
) sorted by null
/external/valgrind/callgrind/
jumps.c
39
void CLG_(init_jcc_hash)(jcc_hash*
jccs
)
43
CLG_ASSERT(
jccs
!= 0);
45
jccs
->size = N_JCC_INITIAL_ENTRIES;
46
jccs
->entries = 0;
47
jccs
->table = (jCC**) CLG_MALLOC("cl.jumps.ijh.1",
48
jccs
->size * sizeof(jCC*));
49
jccs
->spontaneous = 0;
51
for (i = 0; i <
jccs
->size; i++)
52
jccs
->table[i] = 0;
threads.c
124
CLG_(init_jcc_hash)( &(t->
jccs
) );
149
/* If we cumulate costs of threads, use TID 1 for all
jccs
/bccs */
152
CLG_(copy_current_jcc_hash) ( &(t->
jccs
) );
173
/* If we cumulate costs of threads, use TID 1 for all
jccs
/bccs */
176
CLG_(set_current_jcc_hash) ( &(t->
jccs
) );
global.h
218
* For fast lookup,
JCCs
are reachable with a hash table, keyed by
342
jCC* jcc_list; /*
JCCs
used for this exit */
369
ULong ret_counter; /* how often returned from
jccs
of this bbcc;
566
* If --separate-threads=no, BBCCs and
JCCs
can be shared by all threads, i.e.
583
jcc_hash
jccs
;
member in struct:_thread_info
Completed in 69 milliseconds