Searched refs:tokbuf (Results 1 – 2 of 2) sorted by relevance
77 static char tokbuf[1500]; variable239 tokbuf[i++] = c; in read_string()241 } while (i < (sizeof(tokbuf) - 1) && c != EOF && c != '"'); in read_string()248 tokbuf[i] = 0; in read_string()249 tval = tokbuf; in read_string()261 tokbuf[0] = c; in read_num_or_name()262 for (i = 1; i < sizeof(tokbuf); i++) { in read_num_or_name()271 tokbuf[i] = c; in read_num_or_name()273 if (i == sizeof(tokbuf)) { in read_num_or_name()276 c = tokbuf[i]; in read_num_or_name()[all …]
22 char *tokbuf[MAX_TOKENS]; in llvm_tokenize_stdin() local31 tokbuf[c] = strtok(c ? NULL : line, " \n"); in llvm_tokenize_stdin()32 if (!tokbuf[c]) in llvm_tokenize_stdin()37 cb(tokbuf, c); in llvm_tokenize_stdin()