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

  /external/bison/src/
lalr.c 44 goto_number ngotos; variable
81 ngotos = 0;
88 ngotos++;
90 /* Abort if (ngotos + 1) would overflow. */
91 aver (ngotos != GOTO_NUMBER_MAXIMUM);
109 goto_map[nsyms - ntokens] = ngotos;
110 temp_map[nsyms - ntokens] = ngotos;
113 from_state = xcalloc (ngotos, sizeof *from_state);
114 to_state = xcalloc (ngotos, sizeof *to_state);
161 goto_number **reads = xnmalloc (ngotos, sizeof *reads)
    [all...]
lalr.h 91 extern goto_number ngotos;
ielr.c 80 * \c ::ngotos.
100 *edgesp = xnmalloc (ngotos, sizeof **edgesp);
101 *edge_countsp = xnmalloc (ngotos, sizeof **edge_countsp);
103 bitset sources = bitset_create (ngotos, BITSET_FIXED);
105 for (i = 0; i < ngotos; ++i)
107 for (i = 0; i < ngotos; ++i)
169 relation_transpose (edgesp, ngotos);
174 relation_print (*edgesp, ngotos, stderr);
186 * is \c ngotos and the number of columns is maximum number of kernel items
205 *follow_kernel_itemsp = bitsetv_create (ngotos, max_nitems, BITSET_FIXED)
    [all...]

Completed in 144 milliseconds