Home
last modified time | relevance | path

Searched refs:qdf_ptr_hash (Results 1 – 3 of 3) sorted by relevance

/wlan-driver/qca-wifi-host-cmn/qdf/inc/
H A Dqdf_ptr_hash.h65 struct qdf_ptr_hash { struct
81 #define __qdf_ptr_hash_size(bits) (sizeof(struct qdf_ptr_hash) + \
82 sizeof(((struct qdf_ptr_hash *)0)->buckets[0]) * (1 << bits))
93 struct qdf_ptr_hash ht; \
114 struct qdf_ptr_hash *name = qdf_ptr_hash_ptr(name)
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()
155 static inline struct qdf_ptr_hash *qdf_ptr_hash_create(uint8_t bits) in qdf_ptr_hash_create()
157 struct qdf_ptr_hash *ht = qdf_mem_malloc(__qdf_ptr_hash_size(bits)); in qdf_ptr_hash_create()
175 static inline void qdf_ptr_hash_destroy(struct qdf_ptr_hash *ht) in qdf_ptr_hash_destroy()
[all …]
H A Dqdf_tracker.h44 struct qdf_ptr_hash *ht;
/wlan-driver/qca-wifi-host-cmn/qdf/test/
H A Dqdf_ptr_hash_test.c32 static uint32_t __qdf_ptr_hash_test_empty(struct qdf_ptr_hash *ht) in __qdf_ptr_hash_test_empty()
59 static uint32_t __qdf_ptr_hash_test_add_remove(struct qdf_ptr_hash *ht) in __qdf_ptr_hash_test_add_remove()
104 static uint32_t __qdf_ptr_hash_test_for_each(struct qdf_ptr_hash *ht) in __qdf_ptr_hash_test_for_each()
173 struct qdf_ptr_hash *ht = qdf_ptr_hash_create(qdf_ptr_hash_bits); in qdf_ptr_hash_test_create_destroy()