HomeSort by relevance Sort by last modified time
    Searched defs:SDL_stack_alloc (Results 1 - 4 of 4) sorted by null

  /external/qemu/distrib/sdl-1.2.12/include/
SDL_stdinc.h 188 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
191 #define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count))
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_stdinc.h 188 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
191 #define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count))
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_stdinc.h 188 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
191 #define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count))
  /prebuilt/windows/sdl/include/SDL/
SDL_stdinc.h 188 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
191 #define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count))

Completed in 328 milliseconds