Home
last modified time | relevance | path

Searched refs:Uint32 (Results 1 – 25 of 213) sorted by relevance

123456789

/external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/
DSDL_ataric2p_s.h36 Uint32 width, /* Dimensions of screen to convert */
37 Uint32 height,
38 Uint32 dblligne, /* Double the lines when converting ? */
39 Uint32 srcpitch, /* Length of one source line in bytes */
40 Uint32 dstpitch /* Length of one destination line in bytes */
50 Uint32 width, /* Dimensions of screen to convert */
51 Uint32 height,
52 Uint32 dblligne, /* Double the lines when converting ? */
53 Uint32 srcpitch, /* Length of one source line in bytes */
54 Uint32 dstpitch /* Length of one destination line in bytes */
[all …]
/external/qemu/distrib/sdl-1.2.12/include/
DSDL_video.h74 Uint32 Rmask;
75 Uint32 Gmask;
76 Uint32 Bmask;
77 Uint32 Amask;
80 Uint32 colorkey;
89 Uint32 flags; /* Read-only */
101 Uint32 unused1; /* for binary compatibility */
104 Uint32 locked; /* Private */
150 Uint32 hw_available :1; /* Flag: Can you create hardware surfaces? */
151 Uint32 wm_available :1; /* Flag: Can you talk to a window manager? */
[all …]
DSDL_endian.h93 static __inline__ Uint32 SDL_Swap32(Uint32 x) in SDL_Swap32()
99 static __inline__ Uint32 SDL_Swap32(Uint32 x) in SDL_Swap32()
105 static __inline__ Uint32 SDL_Swap32(Uint32 x) in SDL_Swap32()
107 Uint32 result; in SDL_Swap32()
115 static __inline__ Uint32 SDL_Swap32(Uint32 x) in SDL_Swap32()
121 static __inline__ Uint32 SDL_Swap32(Uint32 x) { in SDL_Swap32()
132 struct { Uint32 a,b; } s; in SDL_Swap64()
150 Uint32 hi, lo; in SDL_Swap64()
153 lo = (Uint32)(x&0xFFFFFFFF); in SDL_Swap64()
155 hi = (Uint32)(x&0xFFFFFFFF); in SDL_Swap64()
DSDL_timer.h46 extern DECLSPEC Uint32 SDLCALL SDL_GetTicks(void);
49 extern DECLSPEC void SDLCALL SDL_Delay(Uint32 ms);
52 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
82 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
94 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
102 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, vo…
DSDL.h69 extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags);
72 extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags);
75 extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags);
81 extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags);
/external/qemu/distrib/sdl-1.2.12/src/video/photon/
DSDL_ph_video.h65 Uint32 red;
66 Uint32 green;
67 Uint32 blue;
68 Uint32 alpha;
69 Uint32 bpp;
87 Uint32 OGLFlags; /* OpenGL flags */
88 Uint32 OGLBPP; /* OpenGL bpp */
103 Uint32 current;
104 Uint32 flags;
116 Uint32 visualbpp; /* current visual bpp */
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/
DSDL_RLEaccel.c130 Uint32 *srcp = (Uint32 *)(from); \
131 Uint32 *dstp = (Uint32 *)(to); \
205 Uint32 ALPHA = 0xF800; \
218 i = (Uint32)alpha | (Uint32)alpha << 16; \
224 Uint32 s = *srcp++; \
225 Uint32 d = *dstp; \
295 Uint32 ALPHA = 0x7C00; \
308 i = (Uint32)alpha | (Uint32)alpha << 16; \
314 Uint32 s = *srcp++; \
315 Uint32 d = *dstp; \
[all …]
DSDL_blit_A.c83 Uint32 Pixel; in BlitNto1SurfaceAlpha()
135 Uint32 Pixel; in BlitNto1PixelAlpha()
183 Uint32 ckey = srcfmt->colorkey; in BlitNto1SurfaceAlphaKey()
190 Uint32 Pixel; in BlitNto1SurfaceAlphaKey()
232 Uint32 *srcp = (Uint32 *)info->s_pixels; in BlitRGBtoRGBSurfaceAlpha128MMX()
234 Uint32 *dstp = (Uint32 *)info->d_pixels; in BlitRGBtoRGBSurfaceAlpha128MMX()
236 Uint32 dalpha = info->dst->Amask; in BlitRGBtoRGBSurfaceAlpha128MMX()
248 Uint32 s = *srcp++; in BlitRGBtoRGBSurfaceAlpha128MMX()
249 Uint32 d = *dstp; in BlitRGBtoRGBSurfaceAlpha128MMX()
290 Uint32 *srcp = (Uint32 *)info->s_pixels; in BlitRGBtoRGBSurfaceAlphaMMX()
[all …]
DSDL_pixels_c.h30 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);
32 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);
DSDL_bmp.c55 Uint32 Rmask; in SDL_LoadBMP_RW()
56 Uint32 Gmask; in SDL_LoadBMP_RW()
57 Uint32 Bmask; in SDL_LoadBMP_RW()
64 Uint32 bfSize; in SDL_LoadBMP_RW()
67 Uint32 bfOffBits; in SDL_LoadBMP_RW()
70 Uint32 biSize; in SDL_LoadBMP_RW()
75 Uint32 biCompression; in SDL_LoadBMP_RW()
76 Uint32 biSizeImage; in SDL_LoadBMP_RW()
79 Uint32 biClrUsed; in SDL_LoadBMP_RW()
80 Uint32 biClrImportant; in SDL_LoadBMP_RW()
[all …]
DSDL_blit_N.c133 Uint32 rmask = RESHIFT(srcfmt->Rshift) << (dstfmt->Rshift); in calc_swizzle32()
134 Uint32 gmask = RESHIFT(srcfmt->Gshift) << (dstfmt->Gshift); in calc_swizzle32()
135 Uint32 bmask = RESHIFT(srcfmt->Bshift) << (dstfmt->Bshift); in calc_swizzle32()
136 Uint32 amask; in calc_swizzle32()
186 Uint32 Pixel; \ in Blit_RGB888_RGB565Altivec()
545 Uint32 *srcp = (Uint32 *) info->s_pixels; in Blit32to32KeyAltivec()
547 Uint32 *dstp = (Uint32 *) info->d_pixels; in Blit32to32KeyAltivec()
555 Uint32 rgbmask = srcfmt->Rmask | srcfmt->Gmask | srcfmt->Bmask; in Blit32to32KeyAltivec()
556 Uint32 ckey = info->src->colorkey; in Blit32to32KeyAltivec()
588 Uint32 Pixel; \ in Blit32to32KeyAltivec()
[all …]
DSDL_blit_1.c123 *(Uint32 *)dst = in Blit1to2()
127 *(Uint32 *)dst = in Blit1to2()
138 *(Uint32 *)dst = in Blit1to2()
155 *(Uint32 *)dst = in Blit1to2()
159 *(Uint32 *)dst = in Blit1to2()
170 *(Uint32 *)dst = in Blit1to2()
238 Uint32 *map, *dst; in Blit1to4()
246 dst = (Uint32 *)info->d_pixels; in Blit1to4()
248 map = (Uint32 *)info->table; in Blit1to4()
285 Uint32 ckey = info->src->colorkey; in Blit1to1Key()
[all …]
DSDL_yuv_mmx.c80 void ColorRGBDitherYV12MMX1X( int *colortab, Uint32 *rgb_2_pix, in ColorRGBDitherYV12MMX1X()
85 Uint32 *row1; in ColorRGBDitherYV12MMX1X()
86 Uint32 *row2; in ColorRGBDitherYV12MMX1X()
90 row1 = (Uint32 *)out; // 32 bit target in ColorRGBDitherYV12MMX1X()
91 row2 = (Uint32 *)out+cols+mod; // start of second row in ColorRGBDitherYV12MMX1X()
241 void Color565DitherYV12MMX1X( int *colortab, Uint32 *rgb_2_pix, in Color565DitherYV12MMX1X()
/external/qemu/distrib/sdl-1.2.12/src/stdlib/
DSDL_iconv.c215 Uint32 ch = 0; in SDL_iconv()
295 *(Uint32 *)dst = UNICODE_BOM; in SDL_iconv()
309 ch = (Uint32)(p[0] & 0x7F); in SDL_iconv()
317 ch = (Uint32)p[0]; in SDL_iconv()
337 ch = (Uint32)(p[0] & 0x01); in SDL_iconv()
350 ch = (Uint32)(p[0] & 0x03); in SDL_iconv()
363 ch = (Uint32)(p[0] & 0x07); in SDL_iconv()
376 ch = (Uint32)(p[0] & 0x0F); in SDL_iconv()
389 ch = (Uint32)(p[0] & 0x1F); in SDL_iconv()
399 ch = (Uint32)p[0]; in SDL_iconv()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/timer/riscos/
DSDL_systimer.c38 static Uint32 timerStart;
43 extern Uint32 riscos_main_thread;
45 extern Uint32 SDL_ThreadID();
46 extern Uint32 SDL_EventThreadID(void);
61 Uint32 SDL_GetTicks (void) in SDL_GetTicks()
84 void SDL_Delay (Uint32 ms) in SDL_Delay()
86 Uint32 now,then,elapsed; in SDL_Delay()
162 Uint32 ms; in RISCOS_CheckTimer()
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
DSDL_fb3dfx.c47 static int SetHWColorKey(_THIS, SDL_Surface *surface, Uint32 key) in SetHWColorKey()
52 static int FillHWRect(_THIS, SDL_Surface *dst, SDL_Rect *rect, Uint32 color) in FillHWRect()
55 Uint32 dst_base; in FillHWRect()
56 Uint32 format; in FillHWRect()
98 Uint32 src_format; in HWAccelBlit()
99 Uint32 dst_format; in HWAccelBlit()
100 Uint32 src_base; in HWAccelBlit()
101 Uint32 dst_base; in HWAccelBlit()
104 Uint32 blitop; in HWAccelBlit()
105 Uint32 use_colorkey; in HWAccelBlit()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/thread/generic/
DSDL_syssem.c33 SDL_sem *SDL_CreateSemaphore(Uint32 initial_value) in SDL_CreateSemaphore()
50 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) in SDL_SemWaitTimeout()
62 Uint32 SDL_SemValue(SDL_sem *sem) in SDL_SemValue()
77 Uint32 count;
78 Uint32 waiters_count;
83 SDL_sem *SDL_CreateSemaphore(Uint32 initial_value) in SDL_CreateSemaphore()
146 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) in SDL_SemWaitTimeout()
179 Uint32 SDL_SemValue(SDL_sem *sem) in SDL_SemValue()
181 Uint32 value; in SDL_SemValue()
/external/chromium/net/http/
Dmd4.cc52 typedef uint32 Uint32; typedef
77 static void w2b(Uint8 *out, const Uint32 *in, Uint32 len) in w2b()
79 Uint8 *bp; const Uint32 *wp, *wpend; in w2b()
95 static void b2w(Uint32 *out, const Uint8 *in, Uint32 len) in b2w()
97 Uint32 *wp; const Uint8 *bp, *bpend; in b2w()
105 *wp = (Uint32) (bp[0] ) | in b2w()
106 (Uint32) (bp[1] << 8) | in b2w()
107 (Uint32) (bp[2] << 16) | in b2w()
108 (Uint32) (bp[3] << 24); in b2w()
113 static void md4step(Uint32 state[4], const Uint8 *data) in md4step()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/timer/
DSDL_timer.c35 Uint32 SDL_alarm_interval = 0;
42 Uint32 interval;
45 Uint32 last_alarm;
106 Uint32 now, ms; in SDL_ThreadedTimerCheck()
165 static SDL_TimerID SDL_AddTimerInternal(Uint32 interval, SDL_NewTimerCallback callback, void *param) in SDL_AddTimerInternal()
180 printf("SDL_AddTimer(%d) = %08x num_timers = %d\n", interval, (Uint32)t, SDL_timer_running); in SDL_AddTimerInternal()
185 SDL_TimerID SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param) in SDL_AddTimer()
229 …printf("SDL_RemoveTimer(%08x) = %d num_timers = %d thread = %d\n", (Uint32)id, removed, SDL_timer_… in SDL_RemoveTimer()
236 static Uint32 SDLCALL callback_wrapper(Uint32 ms, void *param) in callback_wrapper()
242 int SDL_SetTimer(Uint32 ms, SDL_TimerCallback callback) in SDL_SetTimer()
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
DSDL_cgxvideo.h60 Uint32 SDL_VisualUnused; /* The visual used by our window */
87 Uint32 visual;
93 Uint32 vis; /* current visual in use */
99 Uint32 switch_waiting;
100 Uint32 switch_time;
148 int w, int h, int bpp, Uint32 flags);
150 SDL_Surface *screen, int w, int h, Uint32 flags);
170 int CGX_FillHWRect(_THIS,SDL_Surface *dst,SDL_Rect *dstrect,Uint32 color);
171 int CGX_SetHWColorKey(_THIS,SDL_Surface *surface, Uint32 key);
/external/qemu/distrib/sdl-1.2.12/src/thread/riscos/
DSDL_syssem.c36 SDL_sem *SDL_CreateSemaphore(Uint32 initial_value) in SDL_CreateSemaphore()
53 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) in SDL_SemWaitTimeout()
65 Uint32 SDL_SemValue(SDL_sem *sem) in SDL_SemValue()
89 SDL_sem *SDL_CreateSemaphore(Uint32 initial_value) in SDL_CreateSemaphore()
145 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) in SDL_SemWaitTimeout()
175 Uint32 SDL_SemValue(SDL_sem *sem) in SDL_SemValue()
184 return (Uint32)ret; in SDL_SemValue()
/external/qemu/distrib/sdl-1.2.12/src/audio/mint/
DSDL_mintaudio.h43 Uint32 frequency;
44 Uint32 masterclock;
45 Uint32 predivisor;
136 void SDL_MintAudio_AddFrequency(_THIS, Uint32 frequency, Uint32 clock,
137 Uint32 prediv, int gpio_bits);
/external/qemu/distrib/sdl-1.2.12/src/thread/dc/
DSDL_syssem.c36 SDL_sem *SDL_CreateSemaphore(Uint32 initial_value) in SDL_CreateSemaphore()
53 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) in SDL_SemWaitTimeout()
65 Uint32 SDL_SemValue(SDL_sem *sem) in SDL_SemValue()
85 SDL_sem *SDL_CreateSemaphore(Uint32 initial_value) in SDL_CreateSemaphore()
119 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) in SDL_SemWaitTimeout()
152 Uint32 SDL_SemValue(SDL_sem *sem) in SDL_SemValue()
/external/qemu/distrib/sdl-1.2.12/src/timer/mint/
DSDL_systimer.c55 static Uint32 start;
74 Uint32 SDL_GetTicks (void) in SDL_GetTicks()
76 Uint32 now = start; in SDL_GetTicks()
89 void SDL_Delay (Uint32 ms) in SDL_Delay()
91 Uint32 now; in SDL_Delay()
/external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
DSDL_systhread.c42 __saveds __asm Uint32 RunThread(register __a0 char *args ) in RunThread()
44 Uint32 RunThread(char *args) in RunThread()
46 Uint32 __saveds RunThread(char *args __asm("a0") ) in RunThread()
71 Uint32 RunTheThread(void) in RunTheThread()
137 Uint32 SDL_ThreadID(void) in SDL_ThreadID()
139 return((Uint32)FindTask(NULL)); in SDL_ThreadID()

123456789