Lines Matching defs:ht
116 #define __qdf_ptr_hash_for_each_bucket(ht, bkt) \ argument
127 static inline void qdf_ptr_hash_init(struct qdf_ptr_hash *ht) in qdf_ptr_hash_init()
141 static inline void qdf_ptr_hash_deinit(struct qdf_ptr_hash *ht) in qdf_ptr_hash_deinit()
157 struct qdf_ptr_hash *ht = qdf_mem_malloc(__qdf_ptr_hash_size(bits)); in qdf_ptr_hash_create() local
175 static inline void qdf_ptr_hash_destroy(struct qdf_ptr_hash *ht) in qdf_ptr_hash_destroy()
187 static inline bool qdf_ptr_hash_empty(struct qdf_ptr_hash *ht) in qdf_ptr_hash_empty()
224 __qdf_ptr_hash_get_bucket(struct qdf_ptr_hash *ht, uintptr_t key) in __qdf_ptr_hash_get_bucket()
238 #define qdf_ptr_hash_add(ht, key, item, entry_field) \ argument
241 static inline void __qdf_ptr_hash_add(struct qdf_ptr_hash *ht, uintptr_t key, in __qdf_ptr_hash_add()
260 #define qdf_ptr_hash_remove(ht, key, cursor, entry_field) ({ \ argument
268 __qdf_ptr_hash_remove(struct qdf_ptr_hash *ht, uintptr_t key) in __qdf_ptr_hash_remove()
297 #define qdf_ptr_hash_for_each(ht, bucket, cursor, entry_field) \ argument
309 #define qdf_ptr_hash_for_each_by_hash(ht, key, cursor, entry_field) \ argument
322 #define qdf_ptr_hash_for_each_by_key(ht, _key, cursor, entry_field) \ argument
335 #define qdf_ptr_hash_get(ht, key, cursor, entry_field) ({ \ argument