Home
last modified time | relevance | path

Searched refs:eventtail (Results 1 – 25 of 26) sorted by relevance

12

/dports/games/crispy-doom/crispy-doom-crispy-doom-5.10.3/src/
H A Dd_event.c29 static int eventtail; variable
49 if (eventtail == eventhead) in D_PopEvent()
54 result = &events[eventtail]; in D_PopEvent()
58 eventtail = (eventtail + 1) % MAXEVENTS; in D_PopEvent()
/dports/games/chocolate-doom/chocolate-doom-3.0.1/src/
H A Dd_event.c29 static int eventtail; variable
49 if (eventtail == eventhead) in D_PopEvent()
54 result = &events[eventtail]; in D_PopEvent()
58 eventtail = (eventtail + 1) % MAXEVENTS; in D_PopEvent()
/dports/games/odamex/odamex-src-0.7.0/client/src/
H A Dd_main.cpp134 int eventtail; variable
176 for (; eventtail != eventhead ; eventtail = ++eventtail<MAXEVENTS ? eventtail : 0) in D_ProcessEvents()
178 ev = &events[eventtail]; in D_ProcessEvents()
/dports/games/doomlegacy/doomlegacy_1.48.8_source/src/os2/
H A DI_system.c100 if (eventtail != eventhead) in I_GetKey()
102 ev = &events[eventtail]; in I_GetKey()
103 eventtail = (++eventtail)&(MAXEVENTS-1); in I_GetKey()
/dports/games/heretic/glheretic-1.2/
H A Dd_main.c120 int eventtail; variable
152 for(; eventtail != eventhead; eventtail = (++eventtail)&(MAXEVENTS-1)) in D_ProcessEvents()
154 ev = &events[eventtail]; in D_ProcessEvents()
H A Dd_net.c466 for ( ; eventtail != eventhead in CheckAbort()
467 ; eventtail = (++eventtail)&(MAXEVENTS-1) ) in CheckAbort()
469 ev = &events[eventtail]; in CheckAbort()
H A Ddoomdef.h730 extern int eventtail;
/dports/games/doomlegacy/doomlegacy_1.48.8_source/src/linux_x/
H A Di_system.c140 extern int eventtail;
212 for ( ; eventtail != eventhead ; ) in I_GetKey()
214 ev = &events[eventtail]; in I_GetKey()
220 eventtail++; in I_GetKey()
221 eventtail = eventtail & (MAXEVENTS-1); in I_GetKey()
/dports/games/uhexen/uhexen-0.601/src/
H A Dh2_main.c112 int eventtail; variable
575 for(; eventtail != eventhead; eventtail = (++eventtail)&(MAXEVENTS-1)) in H2_ProcessEvents()
577 ev = &events[eventtail]; in H2_ProcessEvents()
H A Dd_net.c506 for ( ; eventtail != eventhead in CheckAbort()
507 ; eventtail = (++eventtail)&(MAXEVENTS-1) ) in CheckAbort()
509 ev = &events[eventtail]; in CheckAbort()
/dports/games/edge/Edge-1.35-source/src/
H A De_input.cc61 static int eventtail; variable
666 for (; eventtail != eventhead; eventtail = (eventtail + 1) % MAXEVENTS) in E_ProcessEvents()
668 ev = &events[eventtail]; in E_ProcessEvents()
/dports/games/doomlegacy/doomlegacy_1.48.8_source/src/
H A Dd_event.h63 extern int eventtail;
H A Dd_main.c485 int eventtail = 0; variable
508 eventhead = eventtail = 0; in D_Clear_Events()
520 while (eventtail != eventhead) in D_Process_Events()
522 ev = &events[eventtail]; in D_Process_Events()
531 eventtail++; in D_Process_Events()
532 eventtail = eventtail & (MAXEVENTS - 1); in D_Process_Events()
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/src/
H A Dd_event.h47 extern INT32 eventhead, eventtail;
H A Dd_main.c147 INT32 eventhead, eventtail; variable
178 for (; eventtail != eventhead; eventtail = (eventtail+1) & (MAXEVENTS-1)) in D_ProcessEvents()
180 ev = &events[eventtail]; in D_ProcessEvents()
/dports/games/odamex/odamex-src-0.7.0/common/
H A Dd_event.h119 extern int eventtail;
/dports/games/zdoom/zdoom-2.8.1/src/
H A Dd_event.h131 extern int eventtail;
H A Dd_main.cpp220 int eventtail; variable
268 for (; eventtail != eventhead ; eventtail = (eventtail+1)&(MAXEVENTS-1)) in D_ProcessEvents()
270 ev = &events[eventtail]; in D_ProcessEvents()
339 assert(events[eventtail].type == EV_GUI_Event && events[eventtail].subtype == EV_GUI_KeyDown); in D_RemoveNextCharEvent()
340 for (int evnum = eventtail; evnum != eventhead; evnum = (evnum+1) & (MAXEVENTS-1)) in D_RemoveNextCharEvent()
/dports/games/doomlegacy/doomlegacy_1.48.8_source/src/djgppdos/
H A DI_system.c942 if (eventtail != eventhead) in I_GetKey()
944 ev = &events[eventtail]; in I_GetKey()
945 eventtail = (++eventtail)&(MAXEVENTS-1); in I_GetKey()
/dports/games/doomlegacy/doomlegacy_1.48.8_source/src/sdl/
H A Di_system.c148 while (eventtail != eventhead) in I_GetKey()
150 ev = &events[eventtail]; in I_GetKey()
156 eventtail++; in I_GetKey()
157 eventtail = eventtail & (MAXEVENTS-1); in I_GetKey()
/dports/games/doomlegacy/doomlegacy_1.48.8_source/src/win32/
H A Dwin_sys.c1994 if (eventtail != eventhead) in I_GetKey()
1996 ev = &events[eventtail]; in I_GetKey()
1997 eventtail++; // MinGW needs this to be separate stmt in I_GetKey()
1998 eventtail = (eventtail)&(MAXEVENTS-1); in I_GetKey()
/dports/games/odamex/odamex-src-0.7.0/server/src/
H A Dd_main.cpp123 int eventtail; variable
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/src/sdl/
H A Di_system.c915 for (; eventtail != eventhead; eventtail = (eventtail+1)&(MAXEVENTS-1)) in I_GetKey()
917 ev = &events[eventtail]; in I_GetKey()
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/src/win32/
H A Dwin_sys.c3192 if (eventtail != eventhead) in I_GetKey()
3194 ev = &events[eventtail]; in I_GetKey()
3195 eventtail = (eventtail+1) & (MAXEVENTS-1); in I_GetKey()
/dports/games/uhexen/uhexen-0.601/include/
H A Dh2def.h761 extern int eventtail;

12