Lines Matching refs:Uint32
117 SDL_FORCE_INLINE Uint32
118 SDL_Swap32(Uint32 x) in SDL_Swap32()
124 SDL_FORCE_INLINE Uint32
125 SDL_Swap32(Uint32 x) in SDL_Swap32()
131 SDL_FORCE_INLINE Uint32
132 SDL_Swap32(Uint32 x) in SDL_Swap32()
134 Uint32 result; in SDL_Swap32()
142 SDL_FORCE_INLINE Uint32
143 SDL_Swap32(Uint32 x) in SDL_Swap32()
149 extern _inline Uint32 SDL_Swap32(Uint32);
164 SDL_FORCE_INLINE Uint32
165 SDL_Swap32(Uint32 x) in SDL_Swap32()
167 return SDL_static_cast(Uint32, ((x << 24) | ((x << 8) & 0x00FF0000) | in SDL_Swap32()
180 Uint32 a, b; in SDL_Swap64()
201 Uint32 hi, lo; in SDL_Swap64()
204 lo = SDL_static_cast(Uint32, x & 0xFFFFFFFF); in SDL_Swap64()
206 hi = SDL_static_cast(Uint32, x & 0xFFFFFFFF); in SDL_Swap64()
221 Uint32 ui32; in SDL_SwapFloat()