Searched refs:SDL_static_cast (Results 1 – 3 of 3) sorted by relevance
/external/qemu/distrib/sdl-1.2.15/include/ |
D | SDL_endian.h | 102 return SDL_static_cast(Uint16, ((x<<8)|(x>>8))); 137 return SDL_static_cast(Uint32, ((x<<24)|((x<<8)&0x00FF0000)|((x>>8)&0x0000FF00)|(x>>24))); in SDL_Swap32() 168 lo = SDL_static_cast(Uint32, x & 0xFFFFFFFF); in SDL_Swap64() 170 hi = SDL_static_cast(Uint32, x & 0xFFFFFFFF); in SDL_Swap64()
|
D | SDL_stdinc.h | 85 #define SDL_static_cast(type, expression) static_cast<type>(expression) macro 88 #define SDL_static_cast(type, expression) ((type)(expression)) macro 269 : "0" (dst), "1" (val), "2" (SDL_static_cast(Uint32, len)) \ 278 Uint32 *_p = SDL_static_cast(Uint32 *, dst); \ 309 : "0" (SDL_static_cast(unsigned, len)/4), "q" (len), "1" (dst),"2" (src) \ 334 : "0" (SDL_static_cast(unsigned, len)), "1" (dst), "2" (src) \ 346 char *dstp = SDL_static_cast(char *, dst); \ 347 char *srcp = SDL_static_cast(char *, src); \
|
/external/qemu/distrib/sdl-1.2.15/ |
D | WhatsNew | 9 SDL_static_cast(type, expression)
|