Home
last modified time | relevance | path

Searched refs:hash_table (Results 1 – 4 of 4) sorted by relevance

/wlan-driver/qcacld-3.0/core/mac/src/dph/
Ddph_hash_table.c40 struct dph_hash_table *hash_table) in dph_hash_table_init() argument
44 for (i = 0; i < hash_table->size; i++) { in dph_hash_table_init()
45 hash_table->pHashTable[i] = 0; in dph_hash_table_init()
48 for (i = 0; i < hash_table->size; i++) { in dph_hash_table_init()
49 hash_table->pDphNodeArray[i].valid = 0; in dph_hash_table_init()
50 hash_table->pDphNodeArray[i].added = 0; in dph_hash_table_init()
51 hash_table->pDphNodeArray[i].assocId = i; in dph_hash_table_init()
106 struct dph_hash_table *hash_table) in dph_lookup_hash_entry() argument
109 uint16_t index = hash_function(mac, staAddr, hash_table->size); in dph_lookup_hash_entry()
111 if (!hash_table->pHashTable) { in dph_lookup_hash_entry()
[all …]
Ddph_hash_table.h59 struct dph_hash_table *hash_table);
63 struct dph_hash_table *hash_table);
69 struct dph_hash_table *hash_table);
74 struct dph_hash_table *hash_table);
82 struct dph_hash_table *hash_table);
88 struct dph_hash_table *hash_table);
/wlan-driver/qcacld-3.0/core/dp/htt/
Dhtt_rx_ll.c1142 if (pdev->rx_ring.hash_table[i]->freepool.next != in htt_rx_hash_list_insert()
1143 &pdev->rx_ring.hash_table[i]->freepool) { in htt_rx_hash_list_insert()
1147 pdev->rx_ring.hash_table[i]->freepool.next - in htt_rx_hash_list_insert()
1155 htt_list_remove(pdev->rx_ring.hash_table[i]->freepool.next); in htt_rx_hash_list_insert()
1170 htt_list_add_tail(&pdev->rx_ring.hash_table[i]->listhead, in htt_rx_hash_list_insert()
1185 HTT_RX_HASH_COUNT_INCR(pdev->rx_ring.hash_table[i]); in htt_rx_hash_list_insert()
1186 HTT_RX_HASH_COUNT_PRINT(pdev->rx_ring.hash_table[i]); in htt_rx_hash_list_insert()
1208 if (!pdev->rx_ring.hash_table) { in htt_rx_hash_list_lookup()
1215 HTT_LIST_ITER_FWD(list_iter, &pdev->rx_ring.hash_table[i]->listhead) { in htt_rx_hash_list_lookup()
1230 HTT_RX_HASH_COUNT_DECR(pdev->rx_ring.hash_table[i]); in htt_rx_hash_list_lookup()
[all …]
Dhtt_types.h361 struct htt_rx_hash_bucket **hash_table; member