Home | History | Annotate | Download | only in rcorder

Lines Matching defs:hp

143 	struct Hash_Entry **hp;
157 t->bucketPtr = hp = (struct Hash_Entry **)emalloc(sizeof(*hp) * i);
159 *hp++ = NULL;
183 struct Hash_Entry **hp, *h, *nexth;
187 for (hp = t->bucketPtr, i = t->size; --i >= 0;) {
188 for (h = *hp++; h != NULL; h = nexth) {
271 struct Hash_Entry **hp;
297 hp = &t->bucketPtr[h & t->mask];
298 e->next = *hp;
299 *hp = e;
330 Hash_Entry **hp, *p;
334 for (hp = &t->bucketPtr[e->namehash & t->mask];
335 (p = *hp) != NULL; hp = &p->next) {
337 *hp = p->next;
445 Hash_Entry *e, *next, **hp, **xp;
456 t->bucketPtr = hp = (struct Hash_Entry **) emalloc(sizeof(*hp) * i);
458 *hp++ = NULL;
459 for (hp = oldhp, i = oldsize; --i >= 0;) {
460 for (e = *hp++; e != NULL; e = next) {