Searched defs:hashtab (Results 1 - 14 of 14) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Dlookup.c32 static struct syment *hashtab[HASHSIZE]; variable in typeref:struct:syment
120 for (s = hashtab[n]; s != NULL; s = s->s_next) {
143 s->s_next = hashtab[n];
144 hashtab[n] = s;
/illumos-gate/usr/src/cmd/spell/
H A Dhash.c52 static signed char hashtab[] = { variable
75 c = hashtab[c-' '];
/illumos-gate/usr/src/tools/cscope-fast/
H A Dlookup.c100 static struct keystruct *hashtab[HASHMOD]; /* pointer table */ variable in typeref:struct:keystruct
113 p->next = hashtab[j];
114 hashtab[j] = p;
127 for (p = hashtab[hash(ident) % HASHMOD]; p != NULL; p = p->next) {
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dheap.c268 static unsigned char hashtab[SM_HEAP_TABLE_SIZE] = variable
315 h = hashtab[n & 0xFF];
316 h = hashtab[h ^ ((n >> 8) & 0xFF)];
317 h = hashtab[h ^ ((n >> 16) & 0xFF)];
318 h = hashtab[h ^ ((n >> 24) & 0xFF)];
325 h = hashtab[n & 0xFF];
326 h = hashtab[h ^ ((n >> 8) & 0xFF)];
327 h = hashtab[h ^ ((n >> 16) & 0xFF)];
328 h = hashtab[h ^ ((n >> 24) & 0xFF)];
329 h = hashtab[
[all...]
/illumos-gate/usr/src/cmd/lastcomm/
H A Dlc_utils.c50 static struct devhash *hashtab; variable in typeref:struct:devhash
171 (void) strcpy(hashtab->dev_name,
173 hashtab->dev_nxt = dev_chain;
174 dev_chain = hashtab;
175 hashtab++;
191 hashtab = malloc(NDEVS * sizeof (struct devhash));
192 if (hashtab == NULL) {
/illumos-gate/usr/src/cmd/make/lib/mksh/
H A Dglobals.cc93 Name_set hashtab; variable
/illumos-gate/usr/src/cmd/sendmail/db/include/
H A Dlock.h114 DB_HASHTAB *hashtab; /* Beginning of hash table. */ member in struct:__db_locktab
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dload_elf.c57 Elf_Hashelt *hashtab; member in struct:elf_file
673 ef->hashtab = (Elf_Hashelt*)(uintptr_t)(dp[i].d_un.d_ptr + off);
700 if (ef->hashtab == NULL || ef->symtab == NULL ||
703 COPYOUT(ef->hashtab, &ef->nbuckets, sizeof(ef->nbuckets));
704 COPYOUT(ef->hashtab + 1, &ef->nchains, sizeof(ef->nchains));
705 ef->buckets = ef->hashtab + 2;
/illumos-gate/usr/src/uts/common/os/
H A Dmodsubr.c510 find_mbind(char *name, struct bind **hashtab, int deleted) argument
514 for (mb = hashtab[nm_hash(name)]; mb; mb = mb->b_next) {
537 make_mbind(char *name, int num, char *bind_name, struct bind **hashtab) argument
542 ASSERT(hashtab != NULL);
546 if (find_mbind(name, hashtab, 0) != NULL)
557 pmb = &hashtab[nm_hash(name)];
569 delete_mbind(char *name, struct bind **hashtab) argument
573 for (mb = hashtab[nm_hash(name)]; mb; mb = mb->b_next) {
592 purge_mbind(int num, struct bind **hashtab) argument
599 for (mb = hashtab[
[all...]
H A Dmodsysfile.c2258 * a pre-allocated hashtable in "struct bind **hashtab".
2261 read_binding_file(char *bindfile, struct bind **hashtab, argument
2279 if (hashtab != NULL) {
2280 clear_binding_hash(hashtab);
2355 hashtab) == 0)
/illumos-gate/usr/src/uts/common/sys/nxge/
H A Dnxge_mac.h244 uint16_t hashtab[MAC_MAX_HASH_ENTRY]; member in struct:_nxge_mac
/illumos-gate/usr/src/cmd/mdb/common/modules/mdb_ks/
H A Dmdb_ks.c982 find_mbind(const char *name, uintptr_t *hashtab) argument
990 mb = hashtab[hashndx];
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Dupdate.c215 Word *hashtab; /* hash table pointer */ local
280 hashtab = (Word *)(ofl->ofl_oshash->os_outdata->d_buf);
281 hashbkt = &hashtab[2];
282 hashchain = &hashtab[2 + ofl->ofl_hashbkts];
283 hashtab[0] = ofl->ofl_hashbkts;
284 hashtab[1] = DYNSYM_ALL_CNT(ofl);
/illumos-gate/usr/src/lib/libproc/common/
H A DPcontrol.h201 struct ps_lwphandle **hashtab; /* hash table for LWPs (Lgrab()) */ member in struct:ps_prochandle

Completed in 119 milliseconds