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

  /src/sys/net/agr/
if_agrether_hash.c 34 #include <sys/hash.h>
48 #define HASH(p, l, h) hash32_buf((p), (l), (h))
76 uint32_t hash = HASH32_BUF_INIT; local in function:agrether_hashmbuf
83 return hash;
86 hash = HASH(&eh->ether_dhost, sizeof(eh->ether_dhost), hash);
87 hash = HASH(&eh->ether_shost, sizeof(eh->ether_shost), hash);
    [all...]
  /src/common/lib/libc/atomic/
atomic_init_testset.c 62 #define HASH(PTR) (((uintptr_t)(PTR) >> 3) & 127)
180 lock = &atomic_locks[HASH(ptr)];
198 lock = &atomic_locks[HASH(ptr)];
216 lock = &atomic_locks[HASH(ptr)];
233 lock = &atomic_locks[HASH(ptr)];
  /src/usr.sbin/lockstat/
main.c 136 #define HASH(a) (&bucket[((a) >> 6) & (__arraycount(bucket) - 1)])
637 bp = HASH(lb->lb_lock);
  /src/usr.bin/make/unit-tests/
varmod-select-words.mk 20 HASH= \#
30 mod-squarebrackets-hash \
76 mod-squarebrackets-hash:
168 @echo 'HASH="${HASH}" == "#" ?'
169 @echo 'LIST:[$${HASH}]="${LIST:[${HASH}]}"'
182 @echo 'LIST:[$${LIST:[$${HASH}]}]="${LIST:[${LIST:[${HASH}]}]}"'
  /src/sys/dev/usb/
ohci.c 1575 /* remove xfer's TDs from the hash */
1888 * To make the translation possible (and fast) we use a hash table of
1890 * hash value.
1893 #define HASH(a) (((a) >> 4) % OHCI_HASH_SIZE)
1898 int h = HASH(std->physaddr);
1918 int h = HASH(a);
1933 int h = HASH(sitd->physaddr);
1963 int h = HASH(a);

Completed in 15 milliseconds