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

1 23 4 5 6 7 8 91011

  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
3dfx_mmio.h 31 #define tdfx_in32(reg) *(volatile Uint32 *)(mapped_io + (reg))
34 #define tdfx_out32(reg,v) *(volatile Uint32 *)(mapped_io + (reg)) = v;
SDL_fb3dfx.c 47 static int SetHWColorKey(_THIS, SDL_Surface *surface, Uint32 key)
52 static int FillHWRect(_THIS, SDL_Surface *dst, SDL_Rect *rect, Uint32 color)
55 Uint32 dst_base;
56 Uint32 format;
98 Uint32 src_format;
99 Uint32 src_base;
100 Uint32 dst_base;
103 Uint32 blitop;
104 Uint32 use_colorkey;
150 tdfx_out32(SRCBASE, (Uint32)src_base)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nximage_c.h 32 extern int NX_ResizeImage (_THIS, SDL_Surface * screen, Uint32 flags) ;
  /external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
SDL_systhread.c 42 Uint32 SDL_ThreadID(void)
70 Uint32 riscos_main_thread = 0; /* Thread running events */
125 Uint32 SDL_ThreadID(void)
127 return((Uint32)pthread_self());
  /external/qemu/distrib/sdl-1.2.15/src/timer/macos/
SDL_systimer.c 59 Uint32 SDL_GetTicks(void)
68 void SDL_Delay(Uint32 ms)
70 Uint32 stop, now;
91 Uint32 SDL_GetTicks(void)
100 void SDL_Delay(Uint32 ms)
104 UInt32 stop;
146 Uint32 ms;
SDL_MPWtimer.c 59 Uint32 SDL_GetTicks(void)
65 return (Uint32)((WideTo64bit(now)-start)/1000);
71 void SDL_Delay(Uint32 ms)
74 Uint32 end_ms;
81 UInt32 unused; /* MJS */
112 Uint32 ms;
  /external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
SDL_atarimxalloc.c 40 void *Atari_SysMalloc(Uint32 size, Uint16 alloc_type)
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_gl.h 38 int ph_SetupOpenGLContext(_THIS, int width, int height, int bpp, Uint32 flags);
SDL_ph_image_c.h 35 Uint32 colorkey;
40 extern int ph_SetupUpdateFunction(_THIS, SDL_Surface* screen, Uint32 flags);
45 extern int ph_FillHWRect(_THIS, SDL_Surface* surface, SDL_Rect* rect, Uint32 color);
49 extern int ph_SetHWColorKey(_THIS, SDL_Surface* surface, Uint32 key);
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/
SDL_ps3yuv_c.h 37 extern SDL_Overlay *PS3_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11modes_c.h 36 extern SDL_Rect **X11_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags);
  /external/qemu/distrib/sdl-1.2.15/test/
testtimer.c 15 static Uint32 SDLCALL ticktock(Uint32 interval)
21 static Uint32 SDLCALL callback(Uint32 interval, void *param)
testblitspeed.c 37 size_t strsize, Uint32 flag,
145 static Uint32 blit(SDL_Surface *dst, SDL_Surface *src, int x, int y)
147 Uint32 start = 0;
191 Uint32 dstbpp = 32;
192 Uint32 dstrmask = 0x00FF0000;
193 Uint32 dstgmask = 0x0000FF00;
194 Uint32 dstbmask = 0x000000FF;
195 Uint32 dstamask = 0x00000000;
196 Uint32 dstflags = 0;
199 Uint32 srcbpp = 32
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_syssem.c 44 SDL_sem *SDL_CreateSemaphore(Uint32 initial_value)
98 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
105 Uint32 end;
162 Uint32 SDL_SemValue(SDL_sem *sem)
171 return (Uint32)ret;
  /external/chromium/net/http/
md4.cc 52 typedef uint32 Uint32;
77 static void w2b(Uint8 *out, const Uint32 *in, Uint32 len)
79 Uint8 *bp; const Uint32 *wp, *wpend;
95 static void b2w(Uint32 *out, const Uint8 *in, Uint32 len)
97 Uint32 *wp; const Uint8 *bp, *bpend;
105 *wp = (Uint32) (bp[0] ) |
106 (Uint32) (bp[1] << 8)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_RLEaccel.c 131 Uint32 *srcp = (Uint32 *)(from); \
132 Uint32 *dstp = (Uint32 *)(to); \
206 Uint32 ALPHA = 0xF800; \
219 i = (Uint32)alpha | (Uint32)alpha << 16; \
225 Uint32 s = *srcp++; \
226 Uint32 d = *dstp; \
296 Uint32 ALPHA = 0x7C00;
    [all...]
SDL_yuv_mmx.c 80 void ColorRGBDitherYV12MMX1X( int *colortab, Uint32 *rgb_2_pix,
85 Uint32 *row1;
86 Uint32 *row2;
90 row1 = (Uint32 *)out; // 32 bit target
91 row2 = (Uint32 *)out+cols+mod; // start of second row
241 void Color565DitherYV12MMX1X( int *colortab, Uint32 *rgb_2_pix,
SDL_yuv_sw_c.h 29 extern SDL_Overlay *SDL_CreateYUV_SW(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_events_c.h 28 extern int SDL_StartEventLoop(Uint32 flags);
34 extern Uint32 SDL_EventThreadID(void);
  /external/qemu/distrib/sdl-1.2.15/src/thread/dc/
SDL_sysmutex.c 33 Uint32 owner;
68 Uint32 this_thread;
  /external/qemu/distrib/sdl-1.2.15/src/thread/irix/
SDL_systhread.c 66 Uint32 SDL_ThreadID(void)
68 return((Uint32)getpid());
  /external/qemu/distrib/sdl-1.2.15/src/timer/symbian/
SDL_systimer.cpp 53 Uint32 SDL_GetTicks(void)
59 void SDL_Delay(Uint32 ms)
  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_yuv.h 29 extern SDL_Overlay *DirectFB_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsyuv_c.h 29 extern SDL_Overlay *GS_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5yuv_c.h 30 extern SDL_Overlay *DX5_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);

Completed in 163 milliseconds

1 23 4 5 6 7 8 91011