Lines Matching defs:table
40 int chash_table_alloc(struct chash_table *table, u8 bits, u8 key_size, in chash_table_alloc()
65 void chash_table_free(struct chash_table *table) in chash_table_free()
91 void __chash_table_dump_stats(struct __chash_table *table) in __chash_table_dump_stats()
159 #define CHASH_INC(table, a) ((a) = ((a) + 1) & (table)->size_mask) argument
160 #define CHASH_ADD(table, a, b) (((a) + (b)) & (table)->size_mask) argument
161 #define CHASH_SUB(table, a, b) (((a) - (b)) & (table)->size_mask) argument
162 #define CHASH_IN_RANGE(table, slot, first, last) \ argument
167 static void chash_table_dump(struct __chash_table *table) in chash_table_dump()
192 static int chash_table_check(struct __chash_table *table) in chash_table_check()
394 int __chash_table_copy_in(struct __chash_table *table, u64 key, in __chash_table_copy_in()
429 int __chash_table_copy_out(struct __chash_table *table, u64 key, in __chash_table_copy_out()
467 struct chash_table table; in chash_self_test() local