OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nowTicks
(Results
1 - 5
of
5
) sorted by null
/external/qemu/distrib/sdl-1.2.15/src/video/dga/
SDL_dgaevents.c
145
Uint32
nowTicks
= SDL_GetTicks();
146
if ((
nowTicks
- screensaverTicks) > 5000) {
148
screensaverTicks =
nowTicks
;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/
main.c
105
int
nowTicks
;
136
nowTicks
= SDL_GetTicks ();
137
delay += (1000/fps - (
nowTicks
-thenTicks));
138
thenTicks =
nowTicks
;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/
main.c
105
int
nowTicks
;
136
nowTicks
= SDL_GetTicks ();
137
delay += (1000/fps - (
nowTicks
-thenTicks));
138
thenTicks =
nowTicks
;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/
main.c
105
int
nowTicks
;
136
nowTicks
= SDL_GetTicks ();
137
delay += (1000/fps - (
nowTicks
-thenTicks));
138
thenTicks =
nowTicks
;
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11events.c
939
Uint32
nowTicks
= SDL_GetTicks();
940
if ((
nowTicks
- screensaverTicks) > 5000) {
942
screensaverTicks =
nowTicks
;
[
all
...]
Completed in 378 milliseconds