Searched refs:hashtab (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/crypto/heimdal/lib/asn1/
H A Dhash.h48 struct hashtab { /* Hash table */ struct
55 typedef struct hashtab Hashtab;
/freebsd-13-stable/contrib/sendmail/libsm/
H A Dheap.c266 static unsigned char hashtab[SM_HEAP_TABLE_SIZE] = variable
313 h = hashtab[n & 0xFF];
314 h = hashtab[h ^ ((n >> 8) & 0xFF)];
315 h = hashtab[h ^ ((n >> 16) & 0xFF)];
316 h = hashtab[h ^ ((n >> 24) & 0xFF)];
323 h = hashtab[n & 0xFF];
324 h = hashtab[h ^ ((n >> 8) & 0xFF)];
325 h = hashtab[h ^ ((n >> 16) & 0xFF)];
326 h = hashtab[h ^ ((n >> 24) & 0xFF)];
327 h = hashtab[
[all...]
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_compress.c96 int hashtab [HSIZE]; member in struct:private_data
196 memset(state->hashtab, 0xff, sizeof(state->hashtab));
358 if (state->hashtab[i] == state->cur_fcode) {
362 if (state->hashtab[i] < 0) /* Empty slot. */
373 if (state->hashtab[i] == state->cur_fcode) {
377 if (state->hashtab[i] >= 0)
386 state->hashtab[i] = state->cur_fcode;
405 memset(state->hashtab, 0xff, sizeof(state->hashtab));
[all...]
/freebsd-13-stable/usr.sbin/lpr/pac/
H A Dpac.c95 static struct hent *hashtab[HSHSIZE]; /* Hash table proper */ variable in typeref:struct:hent
263 hp = hashtab[0];
268 hp = hashtab[hno++];
306 hp = hashtab[i];
348 hp->h_link = hashtab[h];
349 hashtab[h] = hp;
365 for (hp = hashtab[h]; hp != NULL; hp = hp->h_link)
/freebsd-13-stable/contrib/ncurses/ncurses/tty/
H A Dhashmap.c111 #define hashtab(sp) ((sp)->hashtab) macro
293 if (hashtab(SP_PARM))
294 free(hashtab(SP_PARM));
295 hashtab(SP_PARM) = typeMalloc(HASHMAP,
297 if (!hashtab(SP_PARM)) {
341 memset(hashtab(SP_PARM), '\0',
342 sizeof(*(hashtab(SP_PARM)))
347 for (hsp = hashtab(SP_PARM); hsp->hashval; hsp++)
357 for (hsp = hashtab(SP_PAR
[all...]
/freebsd-13-stable/stand/common/
H A Dload_elf.c59 Elf_Hashelt *hashtab; member in struct:elf_file
838 ef->hashtab =
870 if (ef->hashtab == NULL || ef->symtab == NULL ||
873 COPYOUT(ef->hashtab, &ef->nbuckets, sizeof(ef->nbuckets));
874 COPYOUT(ef->hashtab + 1, &ef->nchains, sizeof(ef->nchains));
875 ef->buckets = ef->hashtab + 2;
/freebsd-13-stable/libexec/rtld-elf/
H A Drtld.c1091 const Elf_Hashelt *hashtab; local
1188 hashtab = (const Elf_Hashelt *)(obj->relocbase +
1190 obj->nbuckets = hashtab[0];
1191 obj->nchains = hashtab[1];
1192 obj->buckets = hashtab + 2;
1201 hashtab = (const Elf_Hashelt *)(obj->relocbase +
1203 obj->nbuckets_gnu = hashtab[0];
1204 obj->symndx_gnu = hashtab[1];
1205 nmaskwords = hashtab[2];
1208 obj->shift2_gnu = hashtab[
[all...]
/freebsd-13-stable/sys/kern/
H A Dlink_elf.c565 const Elf_Hashelt *hashtab = (const Elf_Hashelt *) local
567 ef->nbuckets = hashtab[0];
568 ef->nchains = hashtab[1];
569 ef->buckets = hashtab + 2;
/freebsd-13-stable/contrib/ncurses/ncurses/base/
H A Dlib_set_term.c189 FreeIfNeeded(sp->hashtab);

Completed in 480 milliseconds