Home | History | Annotate | Download | only in SDL2

Lines Matching defs:Uint32

114 /* Define a four character code as a Uint32 */
116 ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \
117 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \
118 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \
119 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24))
155 typedef uint32_t Uint32;
177 SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4);
268 SDL_FORCE_INLINE void SDL_memset4(void *dst, Uint32 val, size_t dwords)
276 : "0" (dst), "1" (val), "2" (SDL_static_cast(Uint32, dwords))
281 Uint32 *_p = SDL_static_cast(Uint32 *, dst);
282 Uint32 _val = (val);
395 #define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4-INTERNAL", "UTF-8", S, SDL_strlen(S)+1)