/external/bison/src/ |
nullable.c | 65 symbol_number *squeue = xnmalloc (nvars, sizeof *squeue); 69 rule_list **rsets = xcalloc (nvars, sizeof *rsets); 72 rule_list *relts = xnmalloc (nritems + nvars + 1, sizeof *relts); 74 nullable = xcalloc (nvars, sizeof *nullable);
|
derives.c | 73 rule_list **dset = xcalloc (nvars, sizeof *dset); 93 derives = xnmalloc (nvars, sizeof *derives); 94 q = xnmalloc (nvars + nrules, sizeof *q);
|
closure.c | 117 | Set FIRSTS to be an NVARS array of NVARS bitsets indicating which | 132 firsts = bitsetv_create (nvars, nvars, BITSET_FIXED); 153 | Set FDERIVES to an NVARS by NRULES matrix of bits indicating which | 168 fderives = bitsetv_create (nvars, nrules, BITSET_FIXED);
|
reduce.c | 97 Np = bitset_create (nvars, BITSET_FIXED); 219 nuseless_nonterminals = nvars - nuseful_nonterminals; 296 symbol_number *nontermmap = xnmalloc (nvars, sizeof *nontermmap); 312 symbol **symbols_sorted = xnmalloc (nvars, sizeof *symbols_sorted); 337 nvars -= nuseless_nonterminals; 424 N = bitset_create (nvars, BITSET_FIXED); 457 grammar_file, ntokens, nvars, nrules);
|
gram.h | 28 NTOKENS is the number of tokens, and NVARS is the number of 30 nvars. 115 extern int nvars;
|
gram.c | 44 int nvars = 0; variable 246 "ntokens = %d, nvars = %d, nsyms = %d, nrules = %d, nritems = %d\n\n", 247 ntokens, nvars, nsyms, nrules, nritems);
|
reader.c | 209 lhs->number = nvars; 210 ++nvars; 498 accept->number = nvars++; 570 assert (nsyms <= SYMBOL_NUMBER_MAXIMUM && nsyms == ntokens + nvars);
|
lalr.c | 84 goto_map = xcalloc (nvars + 1, sizeof *goto_map); 85 temp_map = xnmalloc (nvars + 1, sizeof *temp_map);
|
symtab.c | 204 sym->number = nvars++; 260 sym->number = nvars++; 538 sym->number = nvars++;
|
tables.c | 562 yydefgoto = xnmalloc (nvars, sizeof *yydefgoto); 810 && sizeof nvars <= sizeof nvectors); 812 nvectors = state_number_as_int (nstates) + nvars;
|
output.c | 145 MUSCLE_INSERT_INT ("nterms_number", nvars);
|
/external/v8/src/ |
parser.cc | 2071 int nvars = 0; \/\/ the number of variables declared local [all...] |
/external/bison/ |
OChangeLog | 765 increment nvars if symbol is already a nonterminal. [all...] |