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

  /src/common/lib/libc/stdlib/
mi_vector_hash.c 157 const uint32_t *key32 = key; local in function:__weak_alias
159 a += le32toh(key32[0]);
160 b += le32toh(key32[1]);
161 c += le32toh(key32[2]);
163 key32 += 3;
169 c += (le32toh(key32[2]) & mask[len - 9]) << 8;
170 b += le32toh(key32[1]);
171 a += le32toh(key32[0]);
173 b += le32toh(key32[1]) & mask[len - 5];
174 a += le32toh(key32[0])
    [all...]
  /src/dist/pf/sbin/pfctl/
parse.y 3344 $$->key32[0] = arc4random();
3345 $$->key32[1] = arc4random();
3346 $$->key32[2] = arc4random();
3347 $$->key32[3] = arc4random();
3363 &$$->key32[0], &$$->key32[1],
3364 &$$->key32[2], &$$->key32[3]) != 4) {
3380 HTONL($$->key32[0]);
3381 HTONL($$->key32[1])
    [all...]
pfctl_parser.c 503 pool->key.key32[0], pool->key.key32[1],
504 pool->key.key32[2], pool->key.key32[3]);
  /src/sys/dist/pf/net/
pfvar.h 389 u_int32_t key32[4]; member in union:pf_poolhashkey::__anon30a5ecce120a
393 #define key32 pfk.key32 macro
pf.c 2211 u_int32_t a = 0x9e3779b9, b = 0x9e3779b9, c = key->key32[0];
2217 b += key->key32[1];
2219 hash->addr32[0] = c + key->key32[2];
2230 c += key->key32[1];
2235 c += key->key32[2];
2240 c += key->key32[3];

Completed in 57 milliseconds