Lines Matching defs:cptr
482 L_cgarc * cptr, cbucket;
513 cptr = &Cptr[ndx];
515 if (cptr->cg_to == 0) {
525 cptr->cg_to = (caddr_t)(to - Lpc);
526 cptr->cg_from = from;
528 cptr->cg_count = 1;
543 while ((cptr->cg_from != from) &&
544 (cptr->cg_from != PRF_UNKNOWN)) {
545 if (cptr->cg_next != 0)
546 cptr = &Cptr[cptr->cg_next];
548 to = cptr->cg_to;
549 cptr->cg_next = Hptr->hd_ncndx++;
550 cptr = &Cptr[cptr->cg_next];
573 cptr = &cbucket;
578 * prepared to adjust cptr.
580 addr = (caddr_t)((Addr)cptr -
589 cptr = (L_cgarc *)((Addr)addr +
594 cptr->cg_from = from;
595 cptr->cg_to = to;
603 if (cptr->cg_from == PRF_UNKNOWN) {
604 cptr->cg_from = from;
605 cptr->cg_count = 1;
607 cptr->cg_count++;
615 return ((uintptr_t)((Addr)cptr->cg_to + (Addr)Lpc));