HomeSort by relevance Sort by last modified time
    Searched refs:Uint32 (Results 76 - 100 of 270) sorted by null

1 2 34 5 6 7 8 91011

  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11image_c.h 28 extern int X11_ResizeImage(_THIS, SDL_Surface *screen, Uint32 flags);
SDL_x11yuv_c.h 31 extern SDL_Overlay *X11_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.15/src/thread/
SDL_thread_c.h 54 Uint32 threadid;
  /external/qemu/distrib/sdl-1.2.15/src/thread/win32/
SDL_syssem.c 46 SDL_sem *SDL_CreateSemaphore(Uint32 initial_value)
87 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
133 Uint32 SDL_SemValue(SDL_sem *sem)
139 return (Uint32) sem->count;
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_modes_c.h 34 extern SDL_Rect **ph_ListModes(_THIS,SDL_PixelFormat *format, Uint32 flags);
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_systhread.c 41 Uint32 riscos_main_thread = 0; /* Thread running events */
100 Uint32 SDL_ThreadID(void)
102 return((Uint32)((size_t)pthread_self()));
  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nxvideo.h 47 Uint32 red_mask ;
48 Uint32 green_mask ;
49 Uint32 blue_mask ;
  /external/qemu/distrib/sdl-1.2.15/test/
testsem.c 38 Uint32 start_ticks;
39 Uint32 end_ticks;
40 Uint32 duration;
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_bmp.c 55 Uint32 Rmask;
56 Uint32 Gmask;
57 Uint32 Bmask;
66 Uint32 bfSize;
69 Uint32 bfOffBits;
72 Uint32 biSize;
77 Uint32 biCompression;
78 Uint32 biSizeImage;
81 Uint32 biClrUsed;
82 Uint32 biClrImportant
    [all...]
SDL_blit_1.c 123 *(Uint32 *)dst =
127 *(Uint32 *)dst =
138 *(Uint32 *)dst =
155 *(Uint32 *)dst =
159 *(Uint32 *)dst =
170 *(Uint32 *)dst =
238 Uint32 *map, *dst;
246 dst = (Uint32 *)info->d_pixels;
248 map = (Uint32 *)info->table;
285 Uint32 ckey = info->src->colorkey
    [all...]
SDL_blit_A.c 84 Uint32 Pixel;
136 Uint32 Pixel;
184 Uint32 ckey = srcfmt->colorkey;
191 Uint32 Pixel;
233 Uint32 *srcp = (Uint32 *)info->s_pixels;
235 Uint32 *dstp = (Uint32 *)info->d_pixels;
237 Uint32 dalpha = info->dst->Amask;
249 Uint32 s = *srcp++
    [all...]
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_rwops.h 64 Uint32 type;
133 extern DECLSPEC Uint32 SDLCALL SDL_ReadLE32(SDL_RWops *src);
134 extern DECLSPEC Uint32 SDLCALL SDL_ReadBE32(SDL_RWops *src);
143 extern DECLSPEC int SDLCALL SDL_WriteLE32(SDL_RWops *dst, Uint32 value);
144 extern DECLSPEC int SDLCALL SDL_WriteBE32(SDL_RWops *dst, Uint32 value);
SDL_main.h 72 extern DECLSPEC int SDLCALL SDL_RegisterApp(char *name, Uint32 style, void *hInst);
  /external/qemu/distrib/sdl-1.2.15/src/thread/irix/
SDL_syssem.c 65 SDL_sem *SDL_CreateSemaphore(Uint32 initial_value)
142 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
172 Uint32 SDL_SemValue(SDL_sem *sem)
175 Uint32 value;
194 value = (Uint32)semval;
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_rwops.h 64 Uint32 type;
133 extern DECLSPEC Uint32 SDLCALL SDL_ReadLE32(SDL_RWops *src);
134 extern DECLSPEC Uint32 SDLCALL SDL_ReadBE32(SDL_RWops *src);
143 extern DECLSPEC int SDLCALL SDL_WriteLE32(SDL_RWops *dst, Uint32 value);
144 extern DECLSPEC int SDLCALL SDL_WriteBE32(SDL_RWops *dst, Uint32 value);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_rwops.h 64 Uint32 type;
133 extern DECLSPEC Uint32 SDLCALL SDL_ReadLE32(SDL_RWops *src);
134 extern DECLSPEC Uint32 SDLCALL SDL_ReadBE32(SDL_RWops *src);
143 extern DECLSPEC int SDLCALL SDL_WriteLE32(SDL_RWops *dst, Uint32 value);
144 extern DECLSPEC int SDLCALL SDL_WriteBE32(SDL_RWops *dst, Uint32 value);
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_rwops.h 64 Uint32 type;
133 extern DECLSPEC Uint32 SDLCALL SDL_ReadLE32(SDL_RWops *src);
134 extern DECLSPEC Uint32 SDLCALL SDL_ReadBE32(SDL_RWops *src);
143 extern DECLSPEC int SDLCALL SDL_WriteLE32(SDL_RWops *dst, Uint32 value);
144 extern DECLSPEC int SDLCALL SDL_WriteBE32(SDL_RWops *dst, Uint32 value);
  /external/qemu/distrib/sdl-1.2.15/src/timer/
SDL_timer.c 35 Uint32 SDL_alarm_interval = 0;
42 Uint32 interval;
45 Uint32 last_alarm;
106 Uint32 now, ms;
165 static SDL_TimerID SDL_AddTimerInternal(Uint32 interval, SDL_NewTimerCallback callback, void *param)
180 printf("SDL_AddTimer(%d) = %08x num_timers = %d\n", interval, (Uint32)t, SDL_timer_running);
185 SDL_TimerID SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param)
229 printf("SDL_RemoveTimer(%08x) = %d num_timers = %d thread = %d\n", (Uint32)id, removed, SDL_timer_running, SDL_ThreadID());
236 static Uint32 SDLCALL callback_wrapper(Uint32 ms, void *param
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/
SDL.c 56 static Uint32 SDL_initialized = 0;
58 static Uint32 ticks_started = 0;
65 int SDL_InitSubSystem(Uint32 flags)
150 int SDL_Init(Uint32 flags)
173 void SDL_QuitSubSystem(Uint32 flags)
208 Uint32 SDL_WasInit(Uint32 flags)
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_iconv.c 215 Uint32 ch = 0;
295 *(Uint32 *)dst = UNICODE_BOM;
309 ch = (Uint32)(p[0] & 0x7F);
317 ch = (Uint32)p[0];
337 ch = (Uint32)(p[0] & 0x01);
350 ch = (Uint32)(p[0] & 0x03);
363 ch = (Uint32)(p[0] & 0x07);
376 ch = (Uint32)(p[0] & 0x0F);
389 ch = (Uint32)(p[0] & 0x1F);
399 ch = (Uint32)p[0]
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzWindow.m 37 Uint32 amask = surface->format->Amask;
41 Uint32 *pixels = (Uint32*) surface->pixels;
42 Uint32 rowPixels = surface->pitch / 4;
43 Uint32 i, j;
  /external/qemu/distrib/sdl-1.2.15/src/timer/unix/
SDL_systimer.c 71 Uint32 SDL_GetTicks (void)
74 Uint32 ticks;
80 Uint32 ticks;
88 void SDL_Delay (Uint32 ms)
102 Uint32 then, now, elapsed;
141 Uint32 ms;
  /external/qemu/distrib/sdl-1.2.15/src/timer/wince/
SDL_systimer.c 70 Uint32 SDL_GetTicks()
79 return((Uint32)wce_rel_ticks());
83 void SDL_Delay(Uint32 ms)
  /external/qemu/distrib/sdl-1.2.15/src/audio/nto/
SDL_nto_audio.h 49 Uint32 pcm_len;
  /external/qemu/distrib/sdl-1.2.15/src/thread/os2/
SDL_syssem.c 38 Uint32 value;
43 DECLSPEC SDL_sem * SDLCALL SDL_CreateSemaphore(Uint32 initial_value)
82 DECLSPEC int SDLCALL SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
169 DECLSPEC Uint32 SDLCALL SDL_SemValue(SDL_sem *sem)

Completed in 466 milliseconds

1 2 34 5 6 7 8 91011