HomeSort by relevance Sort by last modified time
    Searched refs:goto_map (Results 1 - 3 of 3) sorted by null

  /external/bison/src/
lalr.h 49 /* GOTO_MAP, FROM_STATE and TO_STATE -- record each shift transition
56 together and GOTO_MAP[I - NTOKENS] is the index in FROM_STATE and
62 extern goto_number *goto_map;
lalr.c 46 goto_number *goto_map; variable
84 goto_map = xcalloc (nvars + 1, sizeof *goto_map);
99 goto_map[TRANSITION_SYMBOL (sp, i) - ntokens]++;
109 k += goto_map[i - ntokens];
113 goto_map[i - ntokens] = temp_map[i - ntokens];
115 goto_map[nsyms - ntokens] = ngotos;
151 low = goto_map[sym - ntokens];
152 high = goto_map[sym - ntokens + 1] - 1;
tables.c 485 goto_number begin = goto_map[sym - ntokens];
486 goto_number end = goto_map[sym - ntokens + 1];
523 goto_number m = goto_map[sym - ntokens];
524 goto_number n = goto_map[sym - ntokens + 1];
823 free (goto_map);

Completed in 126 milliseconds