Searched refs:pOut (Results 1 – 1 of 1) sorted by relevance
/wlan-driver/qcacld-3.0/core/mac/src/sys/legacy/src/utils/src/ ! |
H A D | dot11f.c | 168 uint16_t *pOut, 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() 187 uint32_t *pOut, in framesntohl() argument 194 DOT11F_MEMCPY(pCtx, (uint32_t *)pOut, pIn, 4); in framesntohl() 196 *pOut = (uint32_t)(*pIn << 24) | in framesntohl() 202 *pOut = (uint32_t)(*(pIn + 3) << 24) | in framesntohl() 207 *pOut = *(uint32_t *)pIn; in framesntohl() [all …]
|