|
#define | HASH_FLAG_NO_AUTO_GROW (1 << 0) |
|
#define | HASH_FLAG_NO_AUTO_SHRINK (1 << 1) |
|
#define | HASH_FLAG_HASH_NEXT_IN_PROGRESS (1 << 2) |
|
#define | KEY_FUNC_NONE (0) /*< sum = key */ |
|
#define | KEY_FUNC_POINTER_UWORD (1) /*< sum = *(uword *) key */ |
|
#define | KEY_FUNC_POINTER_U32 (2) /*< sum = *(u32 *) key */ |
|
#define | KEY_FUNC_STRING (3) /*< sum = string_key_sum, etc. */ |
|
#define | LOG2_ALLOC_BITS (5) |
|
#define | PAIR_BITS (BITS (uword) - LOG2_ALLOC_BITS) |
|
#define | hash_set3(h, key, value, old_value) |
|
#define | hash_get(h, key) _hash_get ((h), (uword) (key)) |
|
#define | hash_get_pair(h, key) _hash_get_pair ((h), (uword) (key)) |
|
#define | hash_set(h, key, value) hash_set3(h,key,value,0) |
|
#define | hash_set1(h, key) (h) = _hash_set3(h,(uword) (key),0,0) |
|
#define | hash_unset(h, key) ((h) = _hash_unset ((h), (uword) (key),0)) |
|
#define | hash_unset3(h, key, old_value) ((h) = _hash_unset ((h), (uword) (key), (void *) (old_value))) |
|
#define | hash_get_mem(h, key) _hash_get ((h), pointer_to_uword (key)) |
|
#define | hash_get_pair_mem(h, key) _hash_get_pair ((h), pointer_to_uword (key)) |
|
#define | hash_set_mem(h, key, value) hash_set3 (h, pointer_to_uword (key), (value), 0) |
|
#define | hash_set1_mem(h, key) hash_set3 ((h), pointer_to_uword (key), 0, 0) |
|
#define | hash_unset_mem(h, key) ((h) = _hash_unset ((h), pointer_to_uword (key),0)) |
|
#define | hash_free(h) (h) = _hash_free ((h)) |
|
#define | hash_foreach_pair(p, v, body) |
| Iterate over hash pairs. More...
|
|
#define | hash_foreach(key_var, value_var, h, body) |
|
#define | hash_foreach_mem(key_var, value_var, h, body) |
|
#define | hash_create2(_elts, _user, _value_bytes, _key_sum, _key_equal, _format_pair, _format_pair_arg) |
|
#define | hash_mix_step(a, b, c, s0, s1, s2) |
|
#define | hash_mix32_step_1(a, b, c) hash_mix_step(a,b,c,13,8,13) |
|
#define | hash_mix32_step_2(a, b, c) hash_mix_step(a,b,c,12,16,5) |
|
#define | hash_mix32_step_3(a, b, c) hash_mix_step(a,b,c,3,10,15) |
|
#define | hash_mix64_step_1(a, b, c) hash_mix_step(a,b,c,43,9,8) |
|
#define | hash_mix64_step_2(a, b, c) hash_mix_step(a,b,c,38,23,5) |
|
#define | hash_mix64_step_3(a, b, c) hash_mix_step(a,b,c,35,49,11) |
|
#define | hash_mix64_step_4(a, b, c) hash_mix_step(a,b,c,12,18,22) |
|
#define | hash_mix64(a0, b0, c0) |
|
#define | hash_mix32(a0, b0, c0) |
|
#define | hash_v3_mix32(a, b, c) |
|
#define | hash_v3_finalize32(a, b, c) |
|
#define | hash_v3_mix32_step1(a, b, c) |
|
#define | hash_v3_mix32_step2(a, b, c) |
|
#define | hash_v3_mix32_step3(a, b, c) |
|
#define | hash_v3_finalize32_step1(a, b, c) |
|
#define | hash_v3_finalize32_step2(a, b, c) |
|
#define | hash_v3_finalize32_step3(a, b, c) |
|
#define | hash_v3_mix_step_1_u32x(a, b, c) |
|
#define | hash_v3_mix_step_2_u32x(a, b, c) |
|
#define | hash_v3_finalize_step_1_u32x(a, b, c) |
|
#define | hash_v3_finalize_step_2_u32x(a, b, c) |
|
#define | hash_v3_mix_u32x(a, b, c) |
|
#define | hash_v3_finalize_u32x(a, b, c) |
|
#define | hash_create_mem(elts, key_bytes, value_bytes) hash_create2((elts),(key_bytes),(value_bytes),mem_key_sum,mem_key_equal,0,0) |
|
#define | hash_create_vec(elts, key_bytes, value_bytes) |
|
#define | hash_create_string(elts, value_bytes) |
|
#define | hash_create(elts, value_bytes) |
|
#define | hash_create_uword(elts, value_bytes) |
|
#define | hash_create_u32(elts, value_bytes) |
|
|
static uword | hash_header_bytes (void *v) |
|
static hash_t * | hash_header (void *v) |
|
static uword | hash_elts (void *v) |
|
static uword | hash_capacity (void *v) |
|
static uword | hash_is_user (void *v, uword i) |
|
static void | hash_set_pair_format (void *v, format_function_t *format_pair, void *format_pair_arg) |
|
static void | hash_set_flags (void *v, uword flags) |
|
static uword | indirect_pair_get_log2_bytes (hash_pair_indirect_t *p) |
|
static uword | indirect_pair_get_len (hash_pair_indirect_t *p) |
|
static void | indirect_pair_set (hash_pair_indirect_t *p, uword log2_alloc, uword len) |
|
void * | hash_resize (void *old, uword new_size) |
|
void * | hash_dup (void *old) |
|
uword | hash_bytes (void *v) |
|
static void | hash_set_mem_alloc (uword **h, void *key, uword v) |
|
static void | hash_unset_mem_free (uword **h, void *key) |
|
clib_error_t * | hash_validate (void *v) |
|
static uword | hash_value_bytes (hash_t *h) |
|
static uword | hash_pair_log2_bytes (hash_t *h) |
|
static uword | hash_pair_bytes (hash_t *h) |
|
static void * | hash_forward1 (hash_t *h, void *v) |
|
static void * | hash_forward (hash_t *h, void *v, uword n) |
|
hash_pair_t * | hash_next (void *v, hash_next_t *hn) |
|
static void | hash_set_value_bytes (hash_t *h, uword value_bytes) |
|
static uword | hash32_rotate_left (u32 x, u32 i) |
|
uword | hash_memory (void *p, word n_bytes, uword state) |
|
uword | mem_key_sum (hash_t *h, uword key) |
|
uword | mem_key_equal (hash_t *h, uword key1, uword key2) |
|
uword | vec_key_sum (hash_t *h, uword key) |
|
uword | vec_key_equal (hash_t *h, uword key1, uword key2) |
|
u8 * | vec_key_format_pair (u8 *s, va_list *args) |
|
uword | string_key_sum (hash_t *h, uword key) |
|
uword | string_key_equal (hash_t *h, uword key1, uword key2) |
|
u8 * | string_key_format_pair (u8 *s, va_list *args) |
|
u8 * | format_hash (u8 *s, va_list *va) |
|
int | test_hash_main (unformat_input_t *input) |
|