OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SDL_snprintf
(Results
1 - 13
of
13
) sorted by null
/prebuilts/misc/windows/sdl2/test/
testautomation_stdlib.c
40
* @brief Call to
SDL_snprintf
42
#undef
SDL_snprintf
50
result =
SDL_snprintf
(text, sizeof(text), "%s", "foo");
52
SDLTest_AssertPass("Call to
SDL_snprintf
(\"%%s\", \"foo\")");
56
result =
SDL_snprintf
(text, 2, "%s", "foo");
58
SDLTest_AssertPass("Call to
SDL_snprintf
(\"%%s\", \"foo\") with buffer size 2");
62
result =
SDL_snprintf
(NULL, 0, "%s", "foo");
65
result =
SDL_snprintf
(text, sizeof(text), "%f", 1.0);
67
SDLTest_AssertPass("Call to
SDL_snprintf
(\"%%f\", 1.0)");
71
result =
SDL_snprintf
(text, sizeof(text), "%.f", 1.0)
[
all
...]
torturethread.c
56
SDL_snprintf
(name, sizeof (name), "Child%d_%d", tid, i);
95
SDL_snprintf
(name, sizeof (name), "Parent%d", i);
controllermap.c
182
SDL_snprintf
(mapping, SDL_arraysize(mapping), "%s,%s,platform:%s,",
245
SDL_snprintf
(temp, SDL_arraysize(temp), ":a%u,", event.jaxis.axis);
263
SDL_snprintf
(temp, SDL_arraysize(temp), ":h%u.%u,", event.jhat.hat, event.jhat.value );
280
SDL_snprintf
(temp, SDL_arraysize(temp), ":b%u,", event.jbutton.button);
testlock.c
120
SDL_snprintf
(name, sizeof (name), "Worker%d", i);
testsem.c
110
SDL_snprintf
(name, sizeof (name), "Thread%u", (unsigned int) i);
testatomic.c
632
SDL_snprintf
(name, sizeof (name), "FIFOReader%d", i);
644
SDL_snprintf
(name, sizeof (name), "FIFOWriter%d", i);
691
SDL_snprintf
(textBuffer, sizeof(textBuffer), " { ");
695
SDL_snprintf
(textBuffer + len, sizeof(textBuffer) - len, ", ");
698
SDL_snprintf
(textBuffer + len, sizeof(textBuffer) - len, "%d", readerData[i].counters[j]);
701
SDL_snprintf
(textBuffer + len, sizeof(textBuffer) - len, " }\n");
checkkeys.c
126
SDL_snprintf
(expanded + length, sizeof(expanded) - length, "\\x%.2x", (unsigned char)*spot);
testgamecontroller.c
149
SDL_snprintf
(title, titlelen, "%s%s", basetitle, name);
testshader.c
182
SDL_snprintf
(tex_name, SDL_arraysize(tex_name), "tex%d", i);
/prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_stdinc.h
345
extern DECLSPEC int SDLCALL
SDL_snprintf
(char *text, size_t maxlen, const char *fmt, ...);
/prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_stdinc.h
345
extern DECLSPEC int SDLCALL
SDL_snprintf
(char *text, size_t maxlen, const char *fmt, ...);
/prebuilts/misc/windows/sdl2/include/
SDL_stdinc.h
335
extern DECLSPEC int SDLCALL
SDL_snprintf
(char *text, size_t maxlen, const char *fmt, ...);
/prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_stdinc.h
345
extern DECLSPEC int SDLCALL
SDL_snprintf
(char *text, size_t maxlen, const char *fmt, ...);
Completed in 385 milliseconds