Symbol: nltype
usr.bin/gprof/arcs.c
104
const nltype **npp1 = (const nltype **)v1;
usr.bin/gprof/arcs.c
105
const nltype **npp2 = (const nltype **)v2;
usr.bin/gprof/arcs.c
110
nltype **
usr.bin/gprof/arcs.c
113
nltype *parentp, **timesortnlp;
usr.bin/gprof/arcs.c
196
topsortnlp = (nltype **) calloc( nname , sizeof(nltype *) );
usr.bin/gprof/arcs.c
197
if ( topsortnlp == (nltype **) 0 )
usr.bin/gprof/arcs.c
202
qsort( topsortnlp , nname , sizeof(nltype *) , topcmp );
usr.bin/gprof/arcs.c
232
timesortnlp = (nltype **) calloc( nname + ncycle , sizeof(nltype *) );
usr.bin/gprof/arcs.c
233
if ( timesortnlp == (nltype **) 0 )
usr.bin/gprof/arcs.c
241
qsort( timesortnlp , nname + ncycle , sizeof(nltype *) , totalcmp );
usr.bin/gprof/arcs.c
260
timepropagate(nltype *parentp)
usr.bin/gprof/arcs.c
263
nltype *childp;
usr.bin/gprof/arcs.c
350
register nltype *nlp;
usr.bin/gprof/arcs.c
351
register nltype *cyclenlp;
usr.bin/gprof/arcs.c
353
nltype *memberp;
usr.bin/gprof/arcs.c
372
cyclenl = (nltype *) calloc( ncycle + 1 , sizeof( nltype ) );
usr.bin/gprof/arcs.c
375
( ncycle + 1 ) * sizeof( nltype ) );
usr.bin/gprof/arcs.c
448
nltype *nlp;
usr.bin/gprof/arcs.c
49
addarc(nltype *parentp, nltype *childp, long count)
usr.bin/gprof/arcs.c
517
descend(nltype *node, arctype **stkstart, arctype **stkp)
usr.bin/gprof/arcs.c
757
nltype *cyclenlp;
usr.bin/gprof/arcs.c
758
nltype *childp;
usr.bin/gprof/arcs.c
787
nltype *childp;
usr.bin/gprof/arcs.c
788
nltype *oldhead;
usr.bin/gprof/arcs.c
879
inheritflags(nltype *childp)
usr.bin/gprof/arcs.c
881
nltype *headp;
usr.bin/gprof/arcs.c
883
nltype *parentp;
usr.bin/gprof/arcs.c
884
nltype *memp;
usr.bin/gprof/arcs.c
99
nltype **topsortnlp;
usr.bin/gprof/dfn.c
106
dfn_pre_visit(nltype *parentp)
usr.bin/gprof/dfn.c
128
dfn_numbered(nltype *childp)
usr.bin/gprof/dfn.c
138
dfn_busy(nltype *childp)
usr.bin/gprof/dfn.c
151
dfn_findcycle(nltype *childp)
usr.bin/gprof/dfn.c
154
nltype *cycleheadp;
usr.bin/gprof/dfn.c
155
nltype *tailp;
usr.bin/gprof/dfn.c
259
dfn_self_cycle(nltype *parentp)
usr.bin/gprof/dfn.c
280
dfn_post_visit(nltype *parentp)
usr.bin/gprof/dfn.c
282
nltype *memberp;
usr.bin/gprof/dfn.c
38
nltype *nlentryp;
usr.bin/gprof/dfn.c
60
dfn(nltype *parentp)
usr.bin/gprof/elf.c
105
if ((nl = (nltype *)calloc(nname + 1, sizeof(nltype))) == NULL)
usr.bin/gprof/gprof.c
154
qsort(nl, nname, sizeof(nltype), valcmp);
usr.bin/gprof/gprof.c
308
nltype *parentp;
usr.bin/gprof/gprof.c
309
nltype *childp;
usr.bin/gprof/gprof.c
336
register nltype *nlp;
usr.bin/gprof/gprof.c
377
const nltype *p1 = (const nltype *)v1;
usr.bin/gprof/gprof.c
378
const nltype *p2 = (const nltype *)v2;
usr.bin/gprof/gprof.c
50
nltype **timesortnlp;
usr.bin/gprof/gprof.h
137
EXTERN nltype *nl; /* the whole namelist */
usr.bin/gprof/gprof.h
138
EXTERN nltype *npe; /* the virtual end of the namelist */
usr.bin/gprof/gprof.h
174
EXTERN nltype *cyclenl; /* cycle header namelist */
usr.bin/gprof/gprof.h
249
void addarc(nltype *, nltype *, long);
usr.bin/gprof/gprof.h
254
arctype *arclookup(nltype *, nltype *);
usr.bin/gprof/gprof.h
260
bool descend(nltype *, arctype **, arctype **);
usr.bin/gprof/gprof.h
261
void dfn(nltype *);
usr.bin/gprof/gprof.h
262
bool dfn_busy(nltype *);
usr.bin/gprof/gprof.h
263
void dfn_findcycle(nltype *);
usr.bin/gprof/gprof.h
265
bool dfn_numbered(nltype *);
usr.bin/gprof/gprof.h
266
void dfn_post_visit(nltype *);
usr.bin/gprof/gprof.h
267
void dfn_pre_visit(nltype *);
usr.bin/gprof/gprof.h
268
void dfn_self_cycle(nltype *);
usr.bin/gprof/gprof.h
269
nltype **doarcs(void);
usr.bin/gprof/gprof.h
275
void flatprofline(nltype *);
usr.bin/gprof/gprof.h
278
void gprofline(register nltype *);
usr.bin/gprof/gprof.h
280
void inheritflags(nltype *);
usr.bin/gprof/gprof.h
286
int membercmp(nltype *, nltype *);
usr.bin/gprof/gprof.h
288
nltype *nllookup(unsigned long);
usr.bin/gprof/gprof.h
292
void printchildren(nltype *);
usr.bin/gprof/gprof.h
293
void printcycle(nltype *);
usr.bin/gprof/gprof.h
294
void printgprof(nltype **);
usr.bin/gprof/gprof.h
296
void printmembers(nltype *);
usr.bin/gprof/gprof.h
297
void printname(nltype *);
usr.bin/gprof/gprof.h
298
void printparents(nltype *);
usr.bin/gprof/gprof.h
302
void sortchildren(nltype *);
usr.bin/gprof/gprof.h
303
void sortmembers(nltype *);
usr.bin/gprof/gprof.h
304
void sortparents(nltype *);
usr.bin/gprof/gprof.h
306
void timepropagate(nltype *);
usr.bin/gprof/kernel.c
41
if ((nl = (nltype *)calloc(nname + 1, sizeof(nltype))) == NULL)
usr.bin/gprof/lookup.c
40
nltype *
usr.bin/gprof/lookup.c
86
arclookup(nltype *parentp, nltype *childp)
usr.bin/gprof/printgprof.c
123
flatprofline(register nltype *np)
usr.bin/gprof/printgprof.c
190
gprofline(register nltype *np)
usr.bin/gprof/printgprof.c
215
printgprof(nltype **timesortnlp)
usr.bin/gprof/printgprof.c
218
nltype *parentp;
usr.bin/gprof/printgprof.c
265
const nltype **npp1 = (const nltype **)v1;
usr.bin/gprof/printgprof.c
266
const nltype **npp2 = (const nltype **)v2;
usr.bin/gprof/printgprof.c
267
register const nltype *np1 = *npp1;
usr.bin/gprof/printgprof.c
268
register const nltype *np2 = *npp2;
usr.bin/gprof/printgprof.c
297
printparents(nltype *childp)
usr.bin/gprof/printgprof.c
299
nltype *parentp;
usr.bin/gprof/printgprof.c
301
nltype *cycleheadp;
usr.bin/gprof/printgprof.c
341
printchildren(nltype *parentp)
usr.bin/gprof/printgprof.c
343
nltype *childp;
usr.bin/gprof/printgprof.c
374
printname(nltype *selfp)
usr.bin/gprof/printgprof.c
401
sortchildren(nltype *parentp)
usr.bin/gprof/printgprof.c
441
sortparents(nltype *childp)
usr.bin/gprof/printgprof.c
45
register nltype *np;
usr.bin/gprof/printgprof.c
46
nltype **sortednlp;
usr.bin/gprof/printgprof.c
484
printcycle(nltype *cyclep)
usr.bin/gprof/printgprof.c
508
printmembers(nltype *cyclep)
usr.bin/gprof/printgprof.c
510
nltype *memberp;
usr.bin/gprof/printgprof.c
532
sortmembers(nltype *cyclep)
usr.bin/gprof/printgprof.c
534
nltype *todo;
usr.bin/gprof/printgprof.c
535
nltype *doing;
usr.bin/gprof/printgprof.c
536
nltype *prev;
usr.bin/gprof/printgprof.c
55
sortednlp = (nltype **) calloc( nname , sizeof(nltype *) );
usr.bin/gprof/printgprof.c
56
if ( sortednlp == (nltype **) 0 )
usr.bin/gprof/printgprof.c
562
membercmp(nltype *this, nltype *that)
usr.bin/gprof/printgprof.c
595
nltype *thisparentp = thisp -> arc_parentp;
usr.bin/gprof/printgprof.c
596
nltype *thischildp = thisp -> arc_childp;
usr.bin/gprof/printgprof.c
597
nltype *thatparentp = thatp -> arc_parentp;
usr.bin/gprof/printgprof.c
598
nltype *thatchildp = thatp -> arc_childp;
usr.bin/gprof/printgprof.c
61
qsort( sortednlp , nname , sizeof(nltype *) , timecmp );
usr.bin/gprof/printgprof.c
689
const nltype **npp1 = (const nltype **)v1;
usr.bin/gprof/printgprof.c
690
const nltype **npp2 = (const nltype **)v2;
usr.bin/gprof/printgprof.c
698
nltype **namesortnlp;
usr.bin/gprof/printgprof.c
699
register nltype *nlp;
usr.bin/gprof/printgprof.c
707
namesortnlp = (nltype **) calloc( nname + ncycle , sizeof(nltype *) );
usr.bin/gprof/printgprof.c
708
if ( namesortnlp == (nltype **) 0 )
usr.bin/gprof/printgprof.c
715
qsort( namesortnlp , nnames , sizeof(nltype *) , namecmp );
usr.bin/gprof/printgprof.c
73
const nltype **npp1 = (const nltype **)v1;
usr.bin/gprof/printgprof.c
74
const nltype **npp2 = (const nltype **)v2;