Lines Matching refs:arcptr
415 Arc *arcptr, **arcnextptr; in __ghs_indgcount() local
447 arcptr = *arcnextptr; in __ghs_indgcount()
450 if(!arcptr) { in __ghs_indgcount()
455 if((arcf_t)arctail == arcptr->arctail) { in __ghs_indgcount()
456 if((arcf_t)archead == arcptr->archead) { in __ghs_indgcount()
458 arcptr->count++; in __ghs_indgcount()
464 arcnextptr = &(arcptr->next); in __ghs_indgcount()
482 arcptr = __ghscallgraph_arcpool + __ghscallgraph_arcpool_next; in __ghs_indgcount()
483 arcptr->archead = (arcf_t)archead; in __ghs_indgcount()
484 arcptr->arctail = (arcf_t)arctail; in __ghs_indgcount()
485 arcptr->count = 1; in __ghs_indgcount()
486 arcptr->next = *arcnextptr; in __ghs_indgcount()
487 *arcnextptr = arcptr; in __ghs_indgcount()