Searched refs:hashval (Results 1 – 4 of 4) sorted by relevance
205 unsigned int hashval; in __lookupalias() local213 hashval = ch << 4; in __lookupalias()215 hashval += ch; in __lookupalias()218 app = &atab[hashval % ATABSIZE]; in __lookupalias()
621 unsigned int hashval; in cmdlookup() local627 hashval = (unsigned char)*p << 4; in cmdlookup()629 hashval += (unsigned char)*p++; in cmdlookup()630 hashval &= 0x7FFF; in cmdlookup()631 pp = &cmdtable[hashval % CMDTABLESIZE]; in cmdlookup()
653 unsigned int hashval; in hashvar() local655 hashval = ((unsigned char) *p) << 4; in hashvar()657 hashval += (unsigned char) *p++; in hashvar()658 return &vartab[hashval % VTABSIZE]; in hashvar()
354 uint32_t* hashval = buckets + nbuckets + (i - hashtab[1]); in gnu_lookup() local357 uint32_t h2 = *hashval++; in gnu_lookup()1112 uint32_t* hashval; in count_syms() local1118 hashval = buckets + p->ghashtab[0] + (nsym - p->ghashtab[1]); in count_syms()1121 while (!(*hashval++ & 1)); in count_syms()
Completed in 13 milliseconds