Searched refs:val32 (Results 1 – 1 of 1) sorted by relevance
51 __INLINE uint32_t co_bswap32(uint32_t val32) in co_bswap32() argument53 return (val32<<24) | ((val32<<8)&0xFF0000) | ((val32>>8)&0xFF00) | ((val32>>24)&0xFF); in co_bswap32()
Completed in 4 milliseconds