Home | History | Annotate | Download | only in include

Lines Matching refs:Uint32

108 SDL_FORCE_INLINE Uint32
109 SDL_Swap32(Uint32 x)
115 SDL_FORCE_INLINE Uint32
116 SDL_Swap32(Uint32 x)
122 SDL_FORCE_INLINE Uint32
123 SDL_Swap32(Uint32 x)
125 Uint32 result;
133 SDL_FORCE_INLINE Uint32
134 SDL_Swap32(Uint32 x)
140 SDL_FORCE_INLINE Uint32
141 SDL_Swap32(Uint32 x)
143 return SDL_static_cast(Uint32, ((x << 24) | ((x << 8) & 0x00FF0000) |
156 Uint32 a, b;
177 Uint32 hi, lo;
180 lo = SDL_static_cast(Uint32, x & 0xFFFFFFFF);
182 hi = SDL_static_cast(Uint32, x & 0xFFFFFFFF);
197 Uint32 ui32;