Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/io/sfxge/common/
H A Defx_types.h251 #define __SWAP32(_x) \ macro
256 ((__SWAP32((_x) & 0xffffffff) << 32) | \
257 __SWAP32(((_x) >> 32) & 0xffffffff))
270 #define __CPU_TO_LE_32(_x) (uint32_t)__SWAP32(_x)
271 #define __LE_TO_CPU_32(_x) (uint32_t)__SWAP32(_x)
289 #define __CPU_TO_BE_32(_x) (uint32_t)__SWAP32(_x)
290 #define __BE_TO_CPU_32(_x) (uint32_t)__SWAP32(_x)