Searched refs:childp (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/usr.bin/gprof/
H A Ddfn.c136 dfn_numbered( childp )
137 nltype *childp;
140 return ( childp -> toporder != DFN_NAN && childp -> toporder != DFN_BUSY );
147 dfn_busy( childp )
148 nltype *childp;
151 if ( childp -> toporder == DFN_NAN ) {
161 dfn_findcycle( childp )
162 nltype *childp;
171 if ( childp
[all...]
H A Dlookup.c87 arclookup( parentp , childp )
89 nltype *childp;
93 if ( parentp == 0 || childp == 0 ) {
94 fprintf( stderr, "[arclookup] parentp == 0 || childp == 0\n" );
100 parentp -> name , childp -> name );
111 if ( arcp -> arc_childp == childp ) {
H A Darcs.c53 addarc( parentp , childp , count )
55 nltype *childp;
63 count , parentp -> name , childp -> name );
66 arcp = arclookup( parentp , childp );
84 arcp -> arc_childp = childp;
94 arcp -> arc_parentlist = childp -> parents;
95 childp -> parents = arcp;
270 nltype *childp; local
281 childp = arcp -> arc_childp;
288 if ( childp
771 nltype *childp; local
800 nltype *childp; local
[all...]
H A Dprintgprof.c302 printparents( childp )
303 nltype *childp;
309 if ( childp -> cyclehead != 0 ) {
310 cycleheadp = childp -> cyclehead;
312 cycleheadp = childp;
314 if ( childp -> parents == 0 ) {
319 sortparents( childp );
320 for ( arcp = childp -> parents ; arcp ; arcp = arcp -> arc_parentlist ) {
322 if ( childp == parentp || ( arcp -> arc_flags & DEADARC ) ||
323 ( childp
350 nltype *childp; local
[all...]
H A Dgprof.c329 nltype *childp; local
332 childp = nllookup( rawp -> raw_selfpc );
333 if ( parentp == 0 || childp == 0 )
337 && onlist( ktolist , childp -> name ) ) {
340 childp -> ncall += rawp -> raw_count;
344 parentp -> name , childp -> name , rawp -> raw_count );
347 addarc( parentp , childp , rawp -> raw_count );
/freebsd-9.3-release/gnu/usr.bin/gdb/gdbserver/
H A Dfbsd-low.c347 fbsd_wait_for_process (struct process_info **childp, int *wstatp) argument
352 if (*childp != NULL)
353 to_wait_for = (*childp)->lwpid;
377 *childp = (struct process_info *) find_inferior_id (&all_processes, ret);
379 (*childp)->stopped = 1;
380 (*childp)->pending_is_breakpoint = 0;
386 find_inferior_id (&all_threads, (*childp)->tid);
/freebsd-9.3-release/sys/dev/sound/pci/
H A Dcsa.c117 device_t *pci_devices, *pci_children, *busp, *childp; local
133 for (j = 0, childp = pci_children; j < pci_childcount; j++, childp++) {
134 if (pci_get_vendor(*childp) == 0x8086 && pci_get_device(*childp) == 0x7113) {
135 port = (pci_read_config(*childp, 0x41, 1) << 8) + 0x10;
/freebsd-9.3-release/sys/dev/sis/
H A Dif_sis.c353 device_t *busp, *childp; local
365 for (j = 0, childp = pci_children;
366 j < pci_childcount; j++, childp++) {
367 if (pci_get_vendor(*childp) == SIS_VENDORID &&
368 pci_get_device(*childp) == 0x0008) {
369 child = *childp;

Completed in 98 milliseconds