Home
last modified time | relevance | path

Searched refs:mqtail (Results 1 – 3 of 3) sorted by relevance

/dports/audio/deadbeef/deadbeef-0.7.2/
H A Dhandler.c47 message_t *mqtail; member
57 h->mqtail = NULL; in handler_reset()
98 if (h->mqtail) { in handler_push()
99 h->mqtail->next = msg; in handler_push()
101 h->mqtail = msg; in handler_push()
138 h->mqtail = NULL; in handler_pop()
H A Dmessagepump.c47 static message_t *mqtail; variable
75 mqtail = NULL; in messagepump_reset()
95 if (mqtail) { in messagepump_push()
96 mqtail->next = msg; in messagepump_push()
98 mqtail = msg; in messagepump_push()
135 mqtail = NULL; in messagepump_pop()
/dports/games/sgt-puzzles/puzzles-20220128.c43a34f/unfinished/
H A Dslide.c416 int *movequeue, mqhead, mqtail; in solve_board() local
505 mqhead = mqtail = 0; in solve_board()
508 movequeue[mqtail++] = i; in solve_board()
509 while (mqhead < mqtail) { in solve_board()
547 movequeue[mqtail++] = newpos; in solve_board()