HomeSort by: relevance | last modified time | path
    Searched defs:hashtbl (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/dev/usb/
if_axen.c 239 uint8_t hashtbl[8] = { 0, 0, 0, 0, 0, 0, 0, 0 }; local
275 memset(hashtbl, 0, sizeof(hashtbl));
281 hashtbl[h / 8] |= 1 << (h % 8);
291 axen_cmd(un, AXEN_CMD_MAC_WRITE_FILTER, 8, AXEN_FILTER_MULTI, hashtbl);
if_smsc.c 422 uint32_t hashtbl[2] = { 0, 0 }; local
451 hashtbl[hash >> 5] |= 1 << (hash & 0x1F);
467 smsc_writereg(un, SMSC_HASHH, hashtbl[1]);
468 smsc_writereg(un, SMSC_HASHL, hashtbl[0]);
if_aue.c 617 uint8_t hashtbl[8] = { 0, 0, 0, 0, 0, 0, 0, 0 }; local
641 hashtbl[h >> 3] |= 1 << (h & 0x7);
651 aue_csr_write_1(sc, AUE_MAR0 + i, hashtbl[i]);
if_mue.c 1004 uint32_t hashtbl[MUE_DP_SEL_VHF_HASH_LEN]; local
1013 memset(hashtbl, 0, sizeof(hashtbl));
1042 memset(hashtbl, 0, sizeof(hashtbl));
1056 hashtbl[h / 32] |= 1 << (h % 32);
1080 MUE_DP_SEL_VHF_HASH_LEN, hashtbl);
  /src/external/bsd/less/dist/
ch.c 63 struct bufnode hashtbl[BUFHASH_SIZE]; member in struct:filestate
84 #define END_OF_HCHAIN(h) (&thisfile->hashtbl[h])
110 * Macros to manipulate the list of buffers in thisfile->hashtbl[n].
113 for (bn = thisfile->hashtbl[h].hnext; \
121 (bn)->hnext = thisfile->hashtbl[h].hnext; \
123 thisfile->hashtbl[h].hnext->hprev = (bn); \
124 thisfile->hashtbl[h].hnext = (bn);
771 thisfile->hashtbl[h].hnext = END_OF_HCHAIN(h);
772 thisfile->hashtbl[h].hprev = END_OF_HCHAIN(h);
  /src/external/bsd/libpcap/dist/
optimize.c 335 struct valnode *hashtbl[MODULUS]; member in struct:__anon7260
717 memset((char *)opt_state->hashtbl, 0, sizeof opt_state->hashtbl);
739 for (p = opt_state->hashtbl[hash]; p; p = p->next)
765 p->next = opt_state->hashtbl[hash];
766 opt_state->hashtbl[hash] = p;
  /src/usr.bin/vmstat/
vmstat.c 1908 int hashtbl; /* nlist index for hash table */ member in struct:kernel_hash
1958 hashnl[curhash->hashtbl].n_value == 0)
1972 hashnl[curhash->hashtbl].n_value != 0)
1990 hashnl[curhash->hashtbl].n_value == 0)
2013 deref_kptr((void *)hashnl[curhash->hashtbl].n_value,
2015 hashnl[curhash->hashtbl].n_name);
2020 hashnl[curhash->hashtbl].n_name + 1, hashaddr,
2032 hashnl[curhash->hashtbl].n_name);

Completed in 28 milliseconds