Home
last modified time | relevance | path

Searched refs:hashval (Results 1 – 4 of 4) sorted by relevance

/third_party/uapp/dash/src/
A Dalias.c205 unsigned int hashval; in __lookupalias() local
213 hashval = ch << 4; in __lookupalias()
215 hashval += ch; in __lookupalias()
218 app = &atab[hashval % ATABSIZE]; in __lookupalias()
A Dexec.c621 unsigned int hashval; in cmdlookup() local
627 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()
A Dvar.c653 unsigned int hashval; in hashvar() local
655 hashval = ((unsigned char) *p) << 4; in hashvar()
657 hashval += (unsigned char) *p++; in hashvar()
658 return &vartab[hashval % VTABSIZE]; in hashvar()
/third_party/ulib/musl/ldso/
A Ddynlink.c354 uint32_t* hashval = buckets + nbuckets + (i - hashtab[1]); in gnu_lookup() local
357 uint32_t h2 = *hashval++; in gnu_lookup()
1112 uint32_t* hashval; in count_syms() local
1118 hashval = buckets + p->ghashtab[0] + (nsym - p->ghashtab[1]); in count_syms()
1121 while (!(*hashval++ & 1)); in count_syms()

Completed in 13 milliseconds