Home | History | Annotate | Download | only in src

Lines Matching defs:tp

133 	struct tbl *tp;
139 tp = ktenter(&specials, initvar_names[i],
141 tp->flag = DEFINED|ISSET;
142 tp->type = ++i;
1176 struct tbl *tp;
1178 tp = ktsearch(&specials, name, hash(name));
1179 return (tp && (tp->flag & ISSET) ? tp->type : V_NONE);
1186 struct tbl *tp;
1188 tp = ktsearch(&specials, name, hash(name));
1189 if (tp)
1190 ktdelete(tp);