Home
last modified time | relevance | path

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

/wlan-driver/qcacld-3.0/core/mac/src/sys/legacy/src/utils/src/
Ddot11f.c134 #define DOT11F_PARAMETER_CHECK2(pSrc, pBuf, nBuf, pnConsumed) \ argument
136 if (!pSrc || IsBadReadPtr(pSrc, 4))\
154 #define DOT11F_PARAMETER_CHECK2(pSrc, pBuf, nBuf, pnConsumed) \ argument
155 if (!pSrc)\
366 uint8_t *pSrc,
485 uint8_t *pSrc,
21343 tDot11fFfAID *pSrc, in dot11f_pack_ff_aid() argument
21346 frameshtons(pCtx, pBuf, pSrc->associd, 0); in dot11f_pack_ff_aid()
21351 tDot11fFfAction *pSrc, in dot11f_pack_ff_action() argument
21354 *pBuf = pSrc->action; in dot11f_pack_ff_action()
[all …]
/wlan-driver/qca-wifi-host-cmn/htc/
Ddl_list.h170 static inline void dl_list_transfer_items_to_tail(PDL_LIST pDest, PDL_LIST pSrc) in dl_list_transfer_items_to_tail() argument
173 if (!DL_LIST_IS_EMPTY(pSrc)) { in dl_list_transfer_items_to_tail()
175 pSrc->pPrev->pNext = pDest; in dl_list_transfer_items_to_tail()
176 pSrc->pNext->pPrev = pDest->pPrev; in dl_list_transfer_items_to_tail()
177 pDest->pPrev->pNext = pSrc->pNext; in dl_list_transfer_items_to_tail()
178 pDest->pPrev = pSrc->pPrev; in dl_list_transfer_items_to_tail()
180 pSrc->pPrev = pSrc; in dl_list_transfer_items_to_tail()
181 pSrc->pNext = pSrc; in dl_list_transfer_items_to_tail()
186 static inline void dl_list_transfer_items_to_head(PDL_LIST pDest, PDL_LIST pSrc) in dl_list_transfer_items_to_head() argument
189 if (!DL_LIST_IS_EMPTY(pSrc)) { in dl_list_transfer_items_to_head()
[all …]
/wlan-driver/qcacld-3.0/core/mac/src/pe/lim/
Dlim_security_utils.c591 void lim_compute_crc32(uint8_t *pDest, uint8_t *pSrc, uint16_t len) in lim_compute_crc32() argument
600 crc = lim_crc_update(crc, *pSrc++); in lim_compute_crc32()
635 lim_rc4(uint8_t *pDest, uint8_t *pSrc, uint8_t *seed, uint32_t keyLength, in lim_rc4() argument
689 temp2 = (uint8_t) (pSrc ? *pSrc++ : 0); in lim_rc4()