Lines Matching refs:cnt

146 #define	CHECK_COUNT(tokens, cnt, mincnt, maxcnt)			\  argument
147 if (cnt < mincnt) { \
149 tokens[0], cnt - 1, mincnt - 1); \
152 if (cnt > maxcnt) { \
154 tokens[0], cnt - 1, maxcnt - 1); \
174 int cnt, tokcnt; in getaline() local
240 cnt = 0; in getaline()
242 while (cnt < 10) { in getaline()
243 tokens[cnt++] = s; in getaline()
326 compile_gpr(char **tokens, int cnt) in compile_gpr() argument
328 CHECK_COUNT(tokens, cnt, 2, 2); in compile_gpr()
337 compile_rem(char **tokens, int cnt) in compile_rem() argument
342 for (i = 1; i < cnt; i++) { in compile_rem()
389 compile_const(char **tokens, int cnt) in compile_const() argument
391 CHECK_COUNT(tokens, cnt, 2, 3); in compile_const()
404 compile_bool(char **tokens, int cnt) in compile_bool() argument
409 CHECK_COUNT(tokens, cnt, 3, 3); in compile_bool()
436 compile_mono(char **tokens, int cnt) in compile_mono() argument
441 CHECK_COUNT(tokens, cnt, 3, 3); in compile_mono()
468 compile_stereo(char **tokens, int cnt) in compile_stereo() argument
474 CHECK_COUNT(tokens, cnt, 3, 3); in compile_stereo()
505 compile_input(char **tokens, int cnt) in compile_input() argument
509 CHECK_COUNT(tokens, cnt, 3, 3); in compile_input()
520 compile_send(char **tokens, int cnt) in compile_send() argument
524 CHECK_COUNT(tokens, cnt, 3, 3); in compile_send()
535 compile_output(char **tokens, int cnt) in compile_output() argument
539 CHECK_COUNT(tokens, cnt, 3, 3); in compile_output()
550 compile_directive(char **tokens, int cnt) in compile_directive() argument
553 compile_gpr(tokens, cnt); in compile_directive()
558 compile_const(tokens, cnt); in compile_directive()
563 compile_stereo(tokens, cnt); in compile_directive()
568 compile_mono(tokens, cnt); in compile_directive()
573 compile_bool(tokens, cnt); in compile_directive()
578 compile_input(tokens, cnt); in compile_directive()
583 compile_send(tokens, cnt); in compile_directive()
588 compile_output(tokens, cnt); in compile_directive()
593 compile_rem(tokens, cnt); in compile_directive()
597 compile_rem(tokens, cnt); in compile_directive()
605 compile_asm(char **tokens, int cnt) in compile_asm() argument
618 CHECK_COUNT(tokens, cnt, 5, 5); in compile_asm()