Searched
refs:format (Results
951 -
975 of
4596) sorted by null
<<31323334353637383940>>
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/ |
SDL_mintaudio_xbios.c | 335 DEBUG_PRINT((DEBUG_NAME "asked: %d bits, ",spec->format & 0x00ff)); 336 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0))); 337 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0))); 345 spec->format |= 0x8000; /* Audio is always signed */ 346 if ((spec->format & 0x00ff)==16) { 347 spec->format |= 0x1000; /* Audio is always big endian */ 377 DEBUG_PRINT((DEBUG_NAME "obtained: %d bits, ",spec->format & 0x00ff)); 378 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0))); 379 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0))); 401 /* Select replay format */ [all...] |
SDL_mintaudio_dma8.c | 203 DEBUG_PRINT((DEBUG_NAME "asked: %d bits, ",spec->format & 0x00ff)); 204 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0))); 205 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0))); 213 spec->format = AUDIO_S8; 256 DEBUG_PRINT((DEBUG_NAME "obtained: %d bits, ",spec->format & 0x00ff)); 257 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0))); 258 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0)));
|
/external/qemu/distrib/sdl-1.2.15/src/video/ipod/ |
SDL_ipodvideo.c | 49 static SDL_Rect **iPod_ListModes (_THIS, SDL_PixelFormat *format, Uint32 flags); 310 static SDL_Rect **iPod_ListModes (_THIS, SDL_PixelFormat *format, Uint32 flags) 356 SDL_SetError ("Couldn't allocate new pixel format"); 366 current->format->palette->colors[i+j].r = 85 * j; 367 current->format->palette->colors[i+j].g = 85 * j; 368 current->format->palette->colors[i+j].b = 85 * j; 384 if (SDL_VideoSurface && SDL_VideoSurface->format && SDL_VideoSurface->format->palette) { 388 SDL_VideoSurface->format->palette->colors[i+j].r = 85 * j; 389 SDL_VideoSurface->format->palette->colors[i+j].g = 85 * j [all...] |
/external/qemu/distrib/sdl-1.2.15/test/ |
testpalette.c | 36 * in Gimp, saving in PPM ascii format and formatting with Emacs macros. 81 SDL_SetColors(bg, screen->format->palette->colors, 0, 256); 113 SDL_SetColors(z, s->format->palette->colors, 114 0, s->format->palette->ncolors); 182 SDL_MapRGB(boat[0]->format, 0xff, 0x00, 0xff)); 183 boatcols = boat[0]->format->palette->ncolors; 186 SDL_MapRGB(boat[1]->format, 0xff, 0x00, 0xff)); 203 boat[0]->format->palette->colors, 0, boatcols); 210 memcpy(cmap, screen->format->palette->colors, 256 * sizeof(SDL_Color)); 213 red = SDL_MapRGB(screen->format, 0xff, 0x00, 0x00) [all...] |
/external/srec/portable/src/ |
plog.c | 82 * @param format the format string specifying the next arguments (a la 90 static ESR_ReturnCode FileLoggerPrintf(PLogger *self, const LCHAR *format, ...) 96 va_start(args, format); 97 rc = pvfprintf(p->fp, format, args); 262 static ESR_ReturnCode logIt(const LCHAR *format, va_list args, ESR_BOOL showStackTrace) 274 if (strstr(format, "ESR_BUFFER_OVERFLOW")==format) 375 pvsprintf(buffer + LSTRLEN(buffer), format, args); 377 pvsprintf(buffer + LSTRLEN(buffer), format, args) [all...] |