Home
last modified time | relevance | path

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

/wlan-driver/qcacld-3.0/core/mac/src/sys/legacy/src/utils/src/
H A Ddot11f.c169 uint8_t *pIn, in framesntohs() argument
175 DOT11F_MEMCPY(pCtx, (uint16_t *)pOut, pIn, 2); in framesntohs()
177 *pOut = (uint16_t)(*pIn << 8) | *(pIn + 1); in framesntohs()
180 *pOut = (uint16_t)(*pIn | (*(pIn + 1) << 8)); in framesntohs()
182 DOT11F_MEMCPY(pCtx, (uint16_t *)pOut, pIn, 2); in framesntohs()
188 uint8_t *pIn, in framesntohl() argument
194 DOT11F_MEMCPY(pCtx, (uint32_t *)pOut, pIn, 4); in framesntohl()
196 *pOut = (uint32_t)(*pIn << 24) | in framesntohl()
197 (*(pIn + 1) << 16) | in framesntohl()
198 (*(pIn + 2) << 8) | in framesntohl()
[all …]