Searched refs:spot (Results 1 - 8 of 8) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/events/
H A DSDL_events.c287 /* Cut an event, and return the next valid spot, or the tail */
289 static int SDL_CutEvent(int spot) argument
291 if ( spot == SDL_EventQ.head ) {
295 if ( (spot+1)%MAXEVENTS == SDL_EventQ.tail ) {
296 SDL_EventQ.tail = spot;
307 for ( here=spot; here != SDL_EventQ.tail; here = next ) {
311 return(spot);
335 int spot; local
343 spot = SDL_EventQ.head;
344 while ((used < numevents)&&(spot !
[all...]
/external/qemu/distrib/sdl-1.2.12/src/
H A DSDL_error.c137 char tmp[32], *spot = tmp; local
138 *spot++ = *fmt++;
139 while ( (*fmt == '.' || (*fmt >= '0' && *fmt <= '9')) && spot < (tmp+SDL_arraysize(tmp)-2) ) {
140 *spot++ = *fmt++;
142 *spot++ = *fmt++;
143 *spot++ = '\0';
144 switch (spot[-2]) {
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
H A DSDL_cgximage.c287 Uint16 *spot; local
289 spot = (Uint16 *) ((Uint8 *)screen->pixels +
291 for ( x=0; x<screen->w; ++x, ++spot ) {
292 *spot = SDL_Swap16(*spot);
299 Uint32 *spot; local
301 spot = (Uint32 *) ((Uint8 *)screen->pixels +
303 for ( x=0; x<screen->w; ++x, ++spot ) {
304 *spot = SDL_Swap32(*spot);
323 Uint16 *spot; local
341 Uint32 *spot; local
[all...]
/external/qemu/distrib/sdl-1.2.12/src/audio/windx5/
H A DSDL_dx5audio.c360 { DWORD spot = cursor; local
361 if ( spot < lastchunk ) {
362 spot += NUM_BUFFERS;
364 if ( spot > lastchunk+1 ) {
366 (spot - (lastchunk+1)));
/external/quake/quake/src/QW/client/
H A Dpmove.c250 // first try moving directly to the next spot
693 vec3_t spot; local
710 VectorMA (pmove.origin, 24, flatforward, spot);
711 spot[2] += 8;
712 cont = PM_PointContents (spot);
715 spot[2] += 24;
716 cont = PM_PointContents (spot);
901 // set onground, watertype, and waterlevel for final spot
/external/webkit/JavaScriptCore/wtf/
H A DVector.h907 T* spot = begin() + position; local
908 TypeOperations::moveOverlapping(spot, end(), spot + dataSize);
910 new (&spot[i]) T(data[i]);
924 T* spot = begin() + position; local
925 TypeOperations::moveOverlapping(spot, end(), spot + 1);
926 new (spot) T(*data);
958 T* spot = begin() + position;
959 spot
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/x11/
H A DSDL_x11video.c283 char *spot; local
291 spot = SDL_getenv("SDL_VIDEO_X11_WMCLASS");
292 if ( spot ) {
293 SDL_strlcpy(classname, spot, maxlen);
309 spot = SDL_strrchr(linkfile, '/');
310 if ( spot ) {
311 SDL_strlcpy(classname, spot+1, maxlen);
/external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
H A DSDL_macevents.c415 Point spot;
416 SetPt(&spot, 0x0070, 0x0050);
417 DIBadMount(spot, event.message);

Completed in 177 milliseconds