Searched refs:tokp (Results 1 – 2 of 2) sorted by relevance
/freebsd/usr.bin/rpcgen/ |
H A D | rpc_scan.c | 65 scan(tok_kind expect, token *tokp) in scan() argument 67 get_token(tokp); in scan() 68 if (tokp->kind != expect) { in scan() 77 scan2(tok_kind expect1, tok_kind expect2, token *tokp) in scan2() argument 79 get_token(tokp); in scan2() 80 if (tokp->kind != expect1 && tokp->kind != expect2) { in scan2() 89 scan3(tok_kind expect1, tok_kind expect2, tok_kind expect3, token *tokp) in scan3() argument 91 get_token(tokp); in scan3() 92 if (tokp->kind != expect1 && tokp->kind != expect2 in scan3() 93 && tokp->kind != expect3) { in scan3() [all …]
|
H A D | rpc_scan.h | 125 void scan(tok_kind expect, token *tokp); 126 void scan2(tok_kind expect1, tok_kind expect2, token *tokp); 127 void scan3(tok_kind expect1, tok_kind expect2, tok_kind expect3, token *tokp); 128 void scan_num(token *tokp); 129 void peek(token *tokp); 130 int peekscan(tok_kind expect, token *tokp); 131 void get_token(token *tokp);
|