Lines Matching defs:xtrahash
54 static struct xtrahash *xlocate(char name[]);
387 struct xtrahash {
391 } xtrahash[XHSIZE];
393 static struct xtrahash *xtab[XHSIZE]; /* F: mid-->machine name */
404 register struct xtrahash *xp, **tp;
408 for (xp = &xtrahash[0]; xp < &xtrahash[XHSIZE]; xp++) {
412 *tp++ = (struct xtrahash *) 0;
427 register struct xtrahash *xp;
431 if (xp == (struct xtrahash *) 0) {
460 static struct xtrahash *
465 register struct xtrahash *xp;
474 xp = &xtrahash[(h + q) % XHSIZE];
481 xp = &xtrahash[(h - q) % XHSIZE];
487 return((struct xtrahash *) 0);