Lines Matching defs:thte
931 thtab_t *thte;
933 for (thte = thtab[h]; thte != NULL; thte = thte->th_next) {
934 if (strncmp(thte->th_name, cp, len) != 0)
936 if (thte->th_name[len] == '\0')
937 return thte->th_idx;
951 thtab_t *thte;
970 thte = xalloc(sizeof(*thte));
971 thte->th_name = name;
972 thte->th_idx = (unsigned short)tidx;
973 thte->th_next = thtab[h];
974 thtab[h] = thte;