Lines Matching full:k1
46 uint64_t k1; member
77 siphash24(const uint8_t *data, size_t len, uint64_t k0, uint64_t k1) in siphash24() argument
80 uint64_t v1 = k1 ^ 0x646F72616E646F6D; in siphash24()
82 uint64_t v3 = k1 ^ 0x7465646279746573; in siphash24()
118 uint64_t k0 = load_64_le(seed), k1 = load_64_le(seed + 8); in k5_siphash24() local
120 return siphash24(data, len, k0, k1); in k5_siphash24()
137 ht->k1 = load_64_le(seed + 8); in k5_hashtab_create()
139 ht->k0 = ht->k1 = 0; in k5_hashtab_create()
185 j = siphash24(ent->key, ent->klen, ht->k0, ht->k1) % newsize; in resize_table()
215 i = siphash24(key, klen, ht->k0, ht->k1) % ht->nbuckets; in k5_hashtab_add()
228 i = siphash24(key, klen, ht->k0, ht->k1) % ht->nbuckets; in k5_hashtab_remove()
246 i = siphash24(key, klen, ht->k0, ht->k1) % ht->nbuckets; in k5_hashtab_get()