Lines Matching defs:usym
563 usym_t *usym;
567 usym = xalloc(sizeof(*usym));
568 usym->u_pos = pos;
582 *hte->h_lusym = usym;
583 hte->h_lusym = &usym->u_next;
1141 usym_t **usymp, *usym;
1163 for (usym = hte->h_usyms; usym != NULL && !ofnd; usym = usym->u_next) {
1164 if (usym->u_pos.p_src != sym1->s_pos.p_src)
1227 for (usymp = &hte->h_usyms; (usym = *usymp) != NULL; ) {
1228 if (usym->u_pos.p_src == sym1->s_pos.p_src) {
1229 *usymp = usym->u_next;
1230 if (hte->h_lusym == &usym->u_next)
1232 usym->u_next = NULL;
1233 *nhte->h_lusym = usym;
1234 nhte->h_lusym = &usym->u_next;
1236 usymp = &usym->u_next;