Home
last modified time | relevance | path

Searched refs:arcp (Results 1 – 6 of 6) sorted by relevance

/freebsd/usr.bin/gprof/
H A Darcs.c51 arctype *arcp; in addarc() local
59 arcp = arclookup( parentp , childp ); in addarc()
60 if ( arcp != 0 ) { in addarc()
67 arcp -> arc_count , count ); in addarc()
70 arcp -> arc_count += count; in addarc()
73 arcp = (arctype *)calloc( 1 , sizeof *arcp ); in addarc()
74 if (arcp == NULL) in addarc()
76 arcp -> arc_parentp = parentp; in addarc()
77 arcp -> arc_childp = childp; in addarc()
78 arcp -> arc_count = count; in addarc()
[all …]
H A Dprintgprof.c300 arctype *arcp; in printparents() local
314 for ( arcp = childp -> parents ; arcp ; arcp = arcp -> arc_parentlist ) { in printparents()
315 parentp = arcp -> arc_parentp; in printparents()
316 if ( childp == parentp || ( arcp -> arc_flags & DEADARC ) || in printparents()
323 arcp -> arc_count , "" ); in printparents()
332 arcp -> arc_time / hz , arcp -> arc_childtime / hz , in printparents()
333 arcp -> arc_count , cycleheadp -> npropcall ); in printparents()
344 arctype *arcp; in printchildren() local
347 arcp = parentp -> children; in printchildren()
348 for ( arcp = parentp -> children ; arcp ; arcp = arcp -> arc_childlist ) { in printchildren()
[all …]
H A Dlookup.c88 arctype *arcp; in arclookup() local
100 for ( arcp = parentp -> children ; arcp ; arcp = arcp -> arc_childlist ) { in arclookup()
104 arcp -> arc_parentp -> name , in arclookup()
105 arcp -> arc_childp -> name ); in arclookup()
108 if ( arcp -> arc_childp == childp ) { in arclookup()
109 return arcp; in arclookup()
H A Ddfn.c62 arctype *arcp; in dfn() local
91 for ( arcp = parentp -> children ; arcp ; arcp = arcp -> arc_childlist ) { in dfn()
92 if ( arcp -> arc_flags & DEADARC ) in dfn()
94 dfn( arcp -> arc_childp ); in dfn()
H A Dgprof.c337 register arctype *arcp; in dumpsum() local
357 for ( arcp = nlp -> children ; arcp ; arcp = arcp -> arc_childlist ) { in dumpsum()
358 arc.raw_frompc = arcp -> arc_parentp -> value; in dumpsum()
359 arc.raw_selfpc = arcp -> arc_childp -> value; in dumpsum()
360 arc.raw_count = arcp -> arc_count; in dumpsum()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp562 KEYWORD(arcp); in LexIdentifier()