HomeSort by: relevance | last modified time | path
    Searched refs:tokp (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/rpcgen/
rpc_scan.c 77 scan(tok_kind expect, token *tokp)
79 get_token(tokp);
80 if (tokp->kind != expect) {
88 scan2(tok_kind expect1, tok_kind expect2, token *tokp)
90 get_token(tokp);
91 if (tokp->kind != expect1 && tokp->kind != expect2) {
99 scan3(tok_kind expect1, tok_kind expect2, tok_kind expect3, token *tokp)
101 get_token(tokp);
102 if (tokp->kind != expect1 && tokp->kind != expect
    [all...]
  /src/bin/ksh/
expr.c 125 const char *tokp; /* lexical position */ member in struct:expr_state
181 curstate.expression = curstate.tokp = expr;
246 tbuf[0] = *es->tokp;
475 for (cp = es->tokp; (c = *cp), isspace((unsigned char)c); cp++)
477 es->tokp = cp;
505 tvar = str_nsave(es->tokp, cp - es->tokp, ATEMP);
513 tvar = str_nsave(es->tokp, --cp - es->tokp, ATEMP);
536 es->tokp = cp
    [all...]

Completed in 12 milliseconds