Searched refs:rht_is_a_nulls (Results 1 – 3 of 3) sorted by relevance
/Linux-v4.19/include/linux/ |
D | rhashtable.h | 81 static inline bool rht_is_a_nulls(const struct rhash_head *ptr) in rht_is_a_nulls() function 307 !rht_is_a_nulls(pos); \ 330 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \ 359 next = !rht_is_a_nulls(pos) ? \ 361 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \ 363 next = !rht_is_a_nulls(pos) ? \ 380 !rht_is_a_nulls(pos); \ 412 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
|
/Linux-v4.19/lib/ |
D | test_rhashtable.c | 509 next = !rht_is_a_nulls(pos) ? rht_dereference(pos->next, ht) : NULL; in print_ht() 511 if (!rht_is_a_nulls(pos)) { in print_ht() 515 while (!rht_is_a_nulls(pos)) { in print_ht() 529 next = !rht_is_a_nulls(pos) ? in print_ht() 532 sprintf(buff, "%s]]%s", buff, !rht_is_a_nulls(pos) ? " -> " : ""); in print_ht()
|
D | rhashtable.c | 242 if (rht_is_a_nulls(next)) in rhashtable_rehash_one() 820 if (!rht_is_a_nulls(p)) { in __rhashtable_walk_find_next() 871 if (!rht_is_a_nulls(p)) { in rhashtable_walk_next() 1152 next = !rht_is_a_nulls(pos) ? in rhashtable_free_and_destroy() 1154 !rht_is_a_nulls(pos); in rhashtable_free_and_destroy() 1156 next = !rht_is_a_nulls(pos) ? in rhashtable_free_and_destroy()
|