Lines Matching defs:phash
57 LIST_HEAD(phhead, phash);
59 struct phash {
60 LIST_ENTRY(phash) le;
82 static struct phhead phash[PHASH_SIZE];
817 struct phash *ph;
827 ph = emalloc(sizeof(struct phash));
830 LIST_INSERT_HEAD(&phash[pid % PHASH_SIZE], ph, le);
861 struct phash *ph, *tph;
866 LIST_FOREACH_SAFE(ph, &phash[i], le, tph)
883 struct phash *ph;
885 LIST_FOREACH(ph, &phash[pid % PHASH_SIZE], le)