Searched refs:hash_elems (Results 1 – 5 of 5) sorted by relevance
/wlan-driver/qcacld-3.0/core/dp/txrx/ |
D | ol_txrx_peer_find.c | 110 int i, hash_elems, log2; in ol_txrx_peer_find_hash_attach() local 113 hash_elems = ol_cfg_max_peer_id(pdev->ctrl_pdev) + 1; in ol_txrx_peer_find_hash_attach() 114 hash_elems *= TXRX_PEER_HASH_LOAD_MULT; in ol_txrx_peer_find_hash_attach() 115 hash_elems >>= TXRX_PEER_HASH_LOAD_SHIFT; in ol_txrx_peer_find_hash_attach() 116 log2 = ol_txrx_log2_ceil(hash_elems); in ol_txrx_peer_find_hash_attach() 117 hash_elems = 1 << log2; in ol_txrx_peer_find_hash_attach() 119 pdev->peer_hash.mask = hash_elems - 1; in ol_txrx_peer_find_hash_attach() 123 qdf_mem_malloc(hash_elems * in ol_txrx_peer_find_hash_attach() 129 for (i = 0; i < hash_elems; i++) in ol_txrx_peer_find_hash_attach()
|
/wlan-driver/qca-wifi-host-cmn/dp/wifi3.0/ |
D | dp_peer.c | 439 int i, hash_elems, log2; in dp_peer_find_hash_attach() local 442 hash_elems = soc->max_peers; in dp_peer_find_hash_attach() 443 hash_elems *= DP_PEER_HASH_LOAD_MULT; in dp_peer_find_hash_attach() 444 hash_elems >>= DP_PEER_HASH_LOAD_SHIFT; in dp_peer_find_hash_attach() 445 log2 = dp_log2_ceil(hash_elems); in dp_peer_find_hash_attach() 446 hash_elems = 1 << log2; in dp_peer_find_hash_attach() 448 soc->peer_hash.mask = hash_elems - 1; in dp_peer_find_hash_attach() 452 hash_elems * sizeof(TAILQ_HEAD(anonymous_tail_q, dp_peer))); in dp_peer_find_hash_attach() 456 for (i = 0; i < hash_elems; i++) in dp_peer_find_hash_attach() 552 int i, hash_elems, log2; in dp_peer_find_hash_attach() local [all …]
|
/wlan-driver/qca-wifi-host-cmn/umac/cmn_services/crypto/src/ |
D | wlan_crypto_obj_mgr.c | 68 int log2, hash_elems, i; in wlan_crypto_hash_init() local 71 hash_elems = 1 << log2; in wlan_crypto_hash_init() 73 psoc->crypto_key_holder.mask = hash_elems - 1; in wlan_crypto_hash_init() 78 hash_elems * in wlan_crypto_hash_init() 85 for (i = 0; i < hash_elems; i++) in wlan_crypto_hash_init()
|
/wlan-driver/qca-wifi-host-cmn/dp/wifi3.0/be/ |
D | dp_be.c | 2423 int hash_elems) in dp_mlo_peer_find_hash_attach_be() argument 2430 hash_elems *= DP_PEER_HASH_LOAD_MULT; in dp_mlo_peer_find_hash_attach_be() 2431 hash_elems >>= DP_PEER_HASH_LOAD_SHIFT; in dp_mlo_peer_find_hash_attach_be() 2432 log2 = dp_log2_ceil(hash_elems); in dp_mlo_peer_find_hash_attach_be() 2433 hash_elems = 1 << log2; in dp_mlo_peer_find_hash_attach_be() 2435 mld_hash_obj->mld_peer_hash.mask = hash_elems - 1; in dp_mlo_peer_find_hash_attach_be() 2439 hash_elems * sizeof(TAILQ_HEAD(anonymous_tail_q, dp_peer))); in dp_mlo_peer_find_hash_attach_be() 2443 for (i = 0; i < hash_elems; i++) in dp_mlo_peer_find_hash_attach_be()
|
D | dp_be.h | 715 int hash_elems);
|