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

/freebsd-11-stable/usr.bin/gprof/
H A Ddfn.c134 dfn_numbered(nltype *childp) argument
137 return ( childp -> toporder != DFN_NAN && childp -> toporder != DFN_BUSY );
144 dfn_busy(nltype *childp) argument
147 if ( childp -> toporder == DFN_NAN ) {
157 dfn_findcycle(nltype *childp) argument
166 if ( childp == cycleheadp ) {
169 if ( childp -> cyclehead != childp &&
170 childp
[all...]
H A Darcs.c55 addarc(nltype *parentp, nltype *childp, long count) argument
62 count , parentp -> name , childp -> name );
65 arcp = arclookup( parentp , childp );
83 arcp -> arc_childp = childp;
93 arcp -> arc_parentlist = childp -> parents;
94 childp -> parents = arcp;
269 nltype *childp; local
280 childp = arcp -> arc_childp;
287 if ( childp == parentp ) {
290 if ( childp
764 nltype *childp; local
793 nltype *childp; local
885 inheritflags(nltype *childp) argument
[all...]
H A Dlookup.c92 arclookup(nltype *parentp, nltype *childp) argument
96 if ( parentp == 0 || childp == 0 ) {
97 fprintf( stderr, "[arclookup] parentp == 0 || childp == 0\n" );
103 parentp -> name , childp -> name );
114 if ( arcp -> arc_childp == childp ) {
H A Dprintgprof.c303 printparents(nltype *childp) argument
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->cycleno != 0 && parentp->cycleno == childp
349 nltype *childp; local
447 sortparents(nltype *childp) argument
[all...]
H A Dgprof.c323 nltype *childp; local
326 childp = nllookup( rawp -> raw_selfpc );
327 if ( parentp == 0 || childp == 0 )
331 && onlist( ktolist , childp -> name ) ) {
334 childp -> ncall += rawp -> raw_count;
338 parentp -> name , childp -> name , rawp -> raw_count );
341 addarc( parentp , childp , rawp -> raw_count );
/freebsd-11-stable/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-11-stable/sys/dev/sound/pci/
H A Dcsa.c116 device_t *pci_devices, *pci_children, *busp, *childp; local
132 for (j = 0, childp = pci_children; j < pci_childcount; j++, childp++) {
133 if (pci_get_vendor(*childp) == 0x8086 && pci_get_device(*childp) == 0x7113) {
134 port = (pci_read_config(*childp, 0x41, 1) << 8) + 0x10;
/freebsd-11-stable/sys/dev/sis/
H A Dif_sis.c354 device_t *busp, *childp; local
366 for (j = 0, childp = pci_children;
367 j < pci_childcount; j++, childp++) {
368 if (pci_get_vendor(*childp) == SIS_VENDORID &&
369 pci_get_device(*childp) == 0x0008) {
370 child = *childp;

Completed in 148 milliseconds