Lines Matching defs:up
172 * read ctmp file, build up urec-srec data structures for
179 struct urec *up;
188 up = NULL;
198 if (up == NULL || cb.ct_uid != up->ur_uid ||
199 !EQN(cb.ct_name, up->ur_name)) {
200 if (up == NULL)
201 up = ur;
202 if (++up >= &ur[a_usize]) {
209 up = &ur[a_usize - A_USIZE];
211 up->ur_uid = cb.ct_uid;
212 CPYN(up->ur_name, cb.ct_name);
213 up->ur_srec = sp;
214 up->ur_cnt = 0;
232 up->ur_cnt++;
234 if (up != NULL)
235 urlast = ++up;
252 struct urec *up;
260 for (up = ur; up < urlast && uid >= up->ur_uid; up++)
261 if (uid == up->ur_uid) {
262 sp = up->ur_srec;
263 splast = sp+up->ur_cnt;
268 return(up->ur_name);
272 guess = up->ur_name;