Lines Matching refs:nhash
571 register int nhash; in lookid() local
578 nhash = 0; in lookid()
584 nhash += c; /* Update hash value */ in lookid()
592 nhash += (np - token); /* Fix hash value */ in lookid()
593 dp = symtab[nhash & SBMASK]; /* Starting bucket */ in lookid()
595 if (dp->hash == nhash /* Fast precheck */ in lookid()
615 int nhash; in defendel() local
619 for (nhash = 0, np = name; *np != EOS;) in defendel()
620 nhash += *np++; in defendel()
622 nhash += size; in defendel()
623 prevp = &symtab[nhash & SBMASK]; in defendel()
625 if (dp->hash == nhash in defendel()
643 dp->hash = nhash; in defendel()