Lines Matching defs:arcp

300     arctype	*arcp;
314 for ( arcp = childp -> parents ; arcp ; arcp = arcp -> arc_parentlist ) {
315 parentp = arcp -> arc_parentp;
316 if ( childp == parentp || ( arcp -> arc_flags & DEADARC ) ||
323 arcp -> arc_count , "" );
332 arcp -> arc_time / hz , arcp -> arc_childtime / hz ,
333 arcp -> arc_count , cycleheadp -> npropcall );
344 arctype *arcp;
347 arcp = parentp -> children;
348 for ( arcp = parentp -> children ; arcp ; arcp = arcp -> arc_childlist ) {
349 childp = arcp -> arc_childp;
350 if ( childp == parentp || ( arcp -> arc_flags & DEADARC ) ||
356 "" , "" , "" , "" , arcp -> arc_count , "" );
365 arcp -> arc_time / hz , arcp -> arc_childtime / hz ,
366 arcp -> arc_count , childp -> cyclehead -> npropcall );
403 arctype *arcp;
411 * *arcp the arc you have detached and are inserting.
417 for ( (arcp = parentp -> children)&&(detachedp = arcp -> arc_childlist);
418 arcp ;
419 (arcp = detachedp)&&(detachedp = detachedp -> arc_childlist)) {
421 * consider *arcp as disconnected
427 if ( arccmp( arcp , prevp -> arc_childlist ) != LESSTHAN ) {
431 arcp -> arc_childlist = prevp -> arc_childlist;
432 prevp -> arc_childlist = arcp;
443 arctype *arcp;
451 * *arcp the arc you have detached and are inserting.
457 for ( (arcp = childp -> parents)&&(detachedp = arcp -> arc_parentlist);
458 arcp ;
459 (arcp = detachedp)&&(detachedp = detachedp -> arc_parentlist)) {
461 * consider *arcp as disconnected
467 if ( arccmp( arcp , prevp -> arc_parentlist ) != GREATERTHAN ) {
471 arcp -> arc_parentlist = prevp -> arc_parentlist;
472 prevp -> arc_parentlist = arcp;