Searched refs:SDL_strncmp (Results 1 – 11 of 11) sorted by relevance
/external/qemu/distrib/sdl-1.2.12/src/stdlib/ |
D | SDL_string.c | 43 if ( radix == 16 && SDL_strncmp(text, "0x", 2) == 0 ) { in SDL_ScanLong() 78 if ( radix == 16 && SDL_strncmp(text, "0x", 2) == 0 ) { in SDL_ScanUnsignedLong() 109 if ( radix == 16 && SDL_strncmp(text, "0x", 2) == 0 ) { in SDL_ScanUintPtrT() 146 if ( radix == 16 && SDL_strncmp(text, "0x", 2) == 0 ) { in SDL_ScanLongLong() 181 if ( radix == 16 && SDL_strncmp(text, "0x", 2) == 0 ) { in SDL_ScanUnsignedLongLong() 437 if ( SDL_strncmp(haystack, needle, length) == 0 ) { in SDL_strstr() 515 if ( (SDL_strlen(string) > 2) && (SDL_strncmp(string, "0x", 2) == 0) ) { in SDL_strtol() 537 if ( (SDL_strlen(string) > 2) && (SDL_strncmp(string, "0x", 2) == 0) ) { in SDL_strtoul() 613 if ( (SDL_strlen(string) > 2) && (SDL_strncmp(string, "0x", 2) == 0) ) { in SDL_strtoll() 635 if ( (SDL_strlen(string) > 2) && (SDL_strncmp(string, "0x", 2) == 0) ) { in SDL_strtoull() [all …]
|
D | SDL_getenv.c | 128 if ( SDL_strncmp(SDL_env[i], name, len) == 0 ) { in SDL_putenv() 165 if ( (SDL_strncmp(SDL_env[i], name, len) == 0) && in SDL_getenv()
|
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/ |
D | SDL_fbvideo.c | 315 if (SDL_strncmp(line,"geometry",8)==0) in read_fbmodes_mode() 337 if (SDL_strncmp(line,"hsync",5)==0) { in read_fbmodes_mode() 339 if (SDL_strncmp(option,"high",4)==0) in read_fbmodes_mode() 342 else if (SDL_strncmp(line,"vsync",5)==0) { in read_fbmodes_mode() 344 if (SDL_strncmp(option,"high",4)==0) in read_fbmodes_mode() 347 else if (SDL_strncmp(line,"csync",5)==0) { in read_fbmodes_mode() 349 if (SDL_strncmp(option,"high",4)==0) in read_fbmodes_mode() 352 else if (SDL_strncmp(line,"extsync",5)==0) { in read_fbmodes_mode() 354 if (SDL_strncmp(option,"true",4)==0) in read_fbmodes_mode() 357 else if (SDL_strncmp(line,"laced",5)==0) { in read_fbmodes_mode() [all …]
|
D | SDL_fbevents.c | 417 if ( SDL_strncmp(arg, "-R", 2) == 0 ) { in gpm_available()
|
/external/qemu/distrib/sdl-1.2.12/include/ |
D | SDL_stdinc.h | 525 #define SDL_strncmp strncmp macro 527 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen);
|
/external/qemu/distrib/sdl-1.2.12/src/joystick/bsd/ |
D | SDL_sysjoystick.c | 272 if (! SDL_strncmp(path, "/dev/joy", 8)) { in SDL_SYS_JoystickOpen() 510 if (SDL_strncmp(joy->hwdata->path, "/dev/joy", 8)) { in SDL_SYS_JoystickClose()
|
/external/qemu/distrib/sdl-1.2.12/src/cdrom/aix/ |
D | SDL_syscdrom.c | 240 if ( !SDL_strncmp("cd",++l,2) ) { in CheckNonmounts() 269 if ( !SDL_strncmp("cd",++l,2) ) { in CheckNonmounts()
|
/external/qemu/distrib/sdl-1.2.12/src/video/ |
D | SDL_bmp.c | 98 if ( SDL_strncmp(magic, "BM", 2) != 0 ) { in SDL_LoadBMP_RW()
|
/external/qemu/distrib/sdl-1.2.12/src/video/dga/ |
D | SDL_dgavideo.c | 83 if ( (SDL_strncmp(XDisplayName(display), ":", 1) == 0) || in DGA_Available() 84 (SDL_strncmp(XDisplayName(display), "unix:", 5) == 0) ) { in DGA_Available()
|
/external/qemu/distrib/sdl-1.2.12/src/video/ipod/ |
D | SDL_ipodvideo.c | 87 if (SDL_strncmp(cpuinfo, "Revision", 8) == 0) in iPod_GetGeneration()
|
/external/qemu/distrib/sdl-1.2.12/src/video/x11/ |
D | SDL_x11video.c | 576 if ( (SDL_strncmp(XDisplayName(display), ":", 1) == 0) || in X11_VideoInit() 577 (SDL_strncmp(XDisplayName(display), "unix:", 5) == 0) ) { in X11_VideoInit()
|