Lines Matching refs:uid_tp
1404 struct uid_blk *uid_tp;
1406 uid_tp = uid_p->link;
1407 uid_p->high = uid_tp->high;
1408 uid_p->link = uid_tp->link;
1410 free(uid_tp);
1418 struct uid_blk *uid_tp;
1420 uid_tp = malloc(sizeof (struct uid_blk));
1421 if (uid_tp == NULL) {
1426 uid_tp->high = uid_tp->low = num;
1427 uid_tp->link = uid_p->link;
1428 uid_p->link = uid_tp;