q                 839 core/gps.c         int o=1, p=1, q=0;
q                 896 core/gps.c                 if (q==0)
q                 899 core/gps.c                     q=1;
q                 904 core/gps.c                     q=0;
q                 304 core/ptp.c       ptp_script_msg *q[PTP_SCRIPT_MSG_Q_LEN];
q                 318 core/ptp.c     unsigned script_msg_q_full(ptp_script_msg_q *q) {
q                 319 core/ptp.c       return (script_msg_q_next(q->w) == q->r);
q                 322 core/ptp.c     unsigned script_msg_q_empty(ptp_script_msg_q *q) {
q                 323 core/ptp.c       return (q->w == q->r);
q                 326 core/ptp.c     int enqueue_script_msg(ptp_script_msg_q *q,ptp_script_msg *msg) {
q                 327 core/ptp.c       unsigned w = script_msg_q_next(q->w);
q                 328 core/ptp.c       if(w == q->r) {
q                 334 core/ptp.c       q->q[q->w] = msg;
q                 335 core/ptp.c       q->w = w;
q                 339 core/ptp.c     ptp_script_msg* dequeue_script_msg(ptp_script_msg_q *q) {
q                 341 core/ptp.c       if(script_msg_q_empty(q)) {
q                 344 core/ptp.c       msg = q->q[q->r];
q                 345 core/ptp.c       q->r = script_msg_q_next(q->r);
q                 350 core/ptp.c     void empty_script_msg_q(ptp_script_msg_q *q) {
q                 352 core/ptp.c         while((msg = dequeue_script_msg(q))) {
q                 193 lib/lua/lapi.c   StkId q;
q                 197 lib/lua/lapi.c   for (q = L->top; q>p; q--) setobjs2s(L, q, q-1);
q                 215 lib/lua/lfmathlib.c     int q = (int)(phi / (M_PI / 2.0)) + 1;
q                 216 lib/lua/lfmathlib.c     switch(q) {
q                 226 lib/lua/lfmathlib.c     if ((q == 2) || (q == 3)) { x = -x; }
q                 227 lib/lua/lfmathlib.c     if ((q == 3) || (q == 4)) { y = -y; }
q                 244 lib/lua/lfmathlib.c     int q = 1;
q                 247 lib/lua/lfmathlib.c             q = 2;
q                 249 lib/lua/lfmathlib.c             q = 3;
q                 251 lib/lua/lfmathlib.c         q = 4;
q                 260 lib/lua/lfmathlib.c     switch(q) {
q                  90 modules/cordic_math.c     int q = phi / QUART_CIRCLE[t] + 1;
q                  91 modules/cordic_math.c     switch(q) {
q                  99 modules/cordic_math.c     if ((q == 2) || (q == 3)) { x = -x; }
q                 100 modules/cordic_math.c     if ((q == 3) || (q == 4)) { y = -y; }
q                 109 modules/cordic_math.c     int q = 1;
q                 112 modules/cordic_math.c             q = 2;
q                 114 modules/cordic_math.c             q = 3;
q                 116 modules/cordic_math.c         q = 4;
q                 135 modules/cordic_math.c         switch(q) {