16 #undef BIHASH_KVP_PER_PAGE 17 #undef BIHASH_32_64_SVM 18 #undef BIHASH_ENABLE_STATS 20 #define BIHASH_TYPE _24_8 21 #define BIHASH_KVP_PER_PAGE 4 23 #ifndef __included_bihash_24_8_h__ 24 #define __included_bihash_24_8_h__ 42 if (v->
key[0] == ~0ULL && v->
value == ~0ULL)
50 #ifdef clib_crc32c_uses_intrinsics 51 return clib_crc32c ((
u8 *) v->
key, 24);
63 s =
format (s,
"key %llu %llu %llu value %llu",
71 #if defined (CLIB_HAVE_VEC512) 72 u64x8 v = u64x8_load_unaligned (a) ^ u64x8_load_unaligned (b);
73 return (u64x8_is_zero_mask (v) & 0x7) == 0;
74 #elif defined(CLIB_HAVE_VEC128) && defined(CLIB_HAVE_VEC128_UNALIGNED_LOAD_STORE) 75 u64x2 v = { a[2] ^ b[2], 0 };
76 v |= u64x2_load_unaligned (a) ^ u64x2_load_unaligned (b);
77 return u64x2_is_all_zero (v);
79 return ((a[0] ^ b[0]) | (a[1] ^ b[1]) | (a[2] ^ b[2])) == 0;
83 #undef __included_bihash_template_h__
Fixed length block allocator.
static u64 clib_xxhash(u64 key)
static u64 clib_bihash_hash_24_8(const clib_bihash_kv_24_8_t *v)
static int clib_bihash_key_compare_24_8(u64 *a, u64 *b)
static int clib_bihash_is_free_24_8(const clib_bihash_kv_24_8_t *v)
epu8_epi32 epu16_epi32 u64x2
static u8 * format_bihash_kvp_24_8(u8 *s, va_list *args)