Searched refs:tokp (Results 1 – 2 of 2) sorted by relevance
| /freebsd-11-stable/usr.bin/rpcgen/ |
| HD | rpc_scan.c | 75 scan(tok_kind expect, token *tokp) in scan() argument 77 get_token(tokp); in scan() 78 if (tokp->kind != expect) { in scan() 87 scan2(tok_kind expect1, tok_kind expect2, token *tokp) in scan2() argument 89 get_token(tokp); in scan2() 90 if (tokp->kind != expect1 && tokp->kind != expect2) { in scan2() 99 scan3(tok_kind expect1, tok_kind expect2, tok_kind expect3, token *tokp) in scan3() argument 101 get_token(tokp); in scan3() 102 if (tokp->kind != expect1 && tokp->kind != expect2 in scan3() 103 && tokp->kind != expect3) { in scan3() [all …]
|
| HD | rpc_scan.h | 130 void scan(tok_kind expect, token *tokp); 131 void scan2(tok_kind expect1, tok_kind expect2, token *tokp); 132 void scan3(tok_kind expect1, tok_kind expect2, tok_kind expect3, token *tokp); 133 void scan_num(token *tokp); 134 void peek(token *tokp); 135 int peekscan(tok_kind expect, token *tokp); 136 void get_token(token *tokp);
|