Home
last modified time | relevance | path

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

/hal_espressif-3.4.0/components/wpa_supplicant/port/include/
Dbyteswap.h11 #ifndef __bswap_16
13 # define __bswap_16(x) \ macro
19 __bswap_16 (unsigned short int __bsx) in __bswap_16() function
/hal_espressif-3.4.0/components/bt/esp_ble_mesh/mesh_common/include/
Dmesh_byteorder.h18 #ifndef __bswap_16
19 #define __bswap_16(x) ((uint16_t) ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8))) macro
214 #define sys_be16_to_cpu(val) __bswap_16(val)
217 #define sys_cpu_to_be16(val) __bswap_16(val)
/hal_espressif-3.4.0/components/wpa_supplicant/src/utils/
Dcommon.h98 #define le_to_host16(n) __bswap_16(n)
99 #define host_to_le16(n) __bswap_16(n)