Home
last modified time | relevance | path

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

/hal_espressif-latest/components/wpa_supplicant/port/include/
Dbyteswap.h15 ({ unsigned short int __bsx = (x); \
16 ((((__bsx) >> 8) & 0xff) | (((__bsx) & 0xff) << 8)); }))
19 __bswap_16 (unsigned short int __bsx) in __bswap_16() argument
21 return ((((__bsx) >> 8) & 0xff) | (((__bsx) & 0xff) << 8)); in __bswap_16()
31 ({ unsigned int __bsx = (x); \
32 ((((__bsx) & 0xff000000) >> 24) | (((__bsx) & 0x00ff0000) >> 8) | \
33 (((__bsx) & 0x0000ff00) << 8) | (((__bsx) & 0x000000ff) << 24)); }))
36 __bswap_32 (unsigned int __bsx) in __bswap_32() argument
38 return ((((__bsx) & 0xff000000) >> 24) | (((__bsx) & 0x00ff0000) >> 8) | in __bswap_32()
39 (((__bsx) & 0x0000ff00) << 8) | (((__bsx) & 0x000000ff) << 24)); in __bswap_32()