HomeSort by relevance Sort by last modified time
    Searched refs:nstates (Results 1 - 25 of 29) sorted by null

1 2

  /external/llvm/lib/Support/
regexec.c 107 #define CLEAR(v) memset(v, 0, m->g->nstates)
111 #define ASSIGN(d, s) memmove(d, s, m->g->nstates)
112 #define EQ(a, b) (memcmp(a, b, m->g->nstates) == 0)
114 #define STATESETUP(m, nv) { (m)->space = malloc((nv)*(m)->g->nstates); \
118 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
158 if (g->nstates <= (long)(CHAR_BIT*sizeof(states1)) && !(eflags&REG_LARGE))
regex2.h 138 sopno nstates; /* = number of sops */ member in struct:re_guts
regengine.inc 978 for (i = 0; i < g->nstates; i++)
regcomp.c     [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
regexec.c 107 #define CLEAR(v) memset(v, 0, m->g->nstates)
111 #define ASSIGN(d, s) memmove(d, s, m->g->nstates)
112 #define EQ(a, b) (memcmp(a, b, m->g->nstates) == 0)
114 #define STATESETUP(m, nv) { (m)->space = malloc((nv)*(m)->g->nstates); \
118 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
158 if (g->nstates <= (long)(CHAR_BIT*sizeof(states1)) && !(eflags&REG_LARGE))
regex2.h 135 sopno nstates; /* = number of sops */ member in struct:re_guts
regengine.inc 978 for (i = 0; i < g->nstates; i++)
regcomp.c     [all...]
  /external/bison/src/
state.c 118 state_number nstates = 0; variable
136 aver (nstates < STATE_NUMBER_MAXIMUM);
139 res->number = nstates++;
163 aver (nstates < STATE_NUMBER_MAXIMUM);
166 res->number = nstates++;
428 bitset reachable = bitset_create (nstates, BITSET_FIXED);
432 for (i = 0; i < nstates; ++i)
443 old_to_new[i] = nstates;
447 nstates = nstates_reachable;
463 for (i = 0; i < nstates; ++i
    [all...]
ielr.c 202 for (i = 0; i < nstates; ++i)
295 * - \c result is a new array of size \c ::nstates.
304 int *predecessor_counts = xnmalloc (nstates, sizeof *predecessor_counts);
305 state ***result = xnmalloc (nstates, sizeof *result);
306 for (i = 0; i < nstates; ++i)
308 for (i = 0; i < nstates; ++i)
314 for (i = 0; i < nstates; ++i)
320 for (i = 0; i < nstates; ++i)
473 * points to a new array of size \c ::nstates.
474 * - For <tt>0 <= i < ::nstates</tt>
    [all...]
main.c 130 state_number *old_to_new = xnmalloc (nstates, sizeof *old_to_new);
131 state_number nstates_old = nstates;
tables.c 56 return state_number_as_int (nstates) + sym - ntokens;
438 yydefact = xnmalloc (nstates, sizeof *yydefact);
452 for (i = 0; i < nstates; ++i)
541 for (s = 0; s < nstates; s++)
547 for (s = 0; s < nstates; s++)
571 size_t *state_count = xnmalloc (nstates, sizeof *state_count);
636 if (nstates <= i)
819 verify (sizeof nstates <= sizeof nvectors
822 nvectors = state_number_as_int (nstates) + nvars;
lalr.c 82 for (s = 0; s < nstates; ++s)
116 for (s = 0; s < nstates; ++s)
382 for (i = 0; i < nstates; i++)
394 for (i = 0; i < nstates; i++)
418 for (i = 0; i < nstates; ++i)
498 for (s = 0; s < nstates; ++s)
output.c 281 symbol_number *values = xnmalloc (nstates, sizeof *values);
282 for (i = 0; i < nstates; ++i)
285 0, 1, nstates);
290 MUSCLE_INSERT_INT ("states_number", nstates);
439 yydefact[0], 1, nstates);
450 base[0], 1, nstates);
455 base[nstates], nstates + 1, nvectors);
conflicts.c 392 conflicts = xcalloc (nstates, sizeof *conflicts);
398 for (i = 0; i < nstates; i++)
511 for (i = 0; i < nstates; i++)
541 for (i = 0; i < nstates; i++)
573 for (i = 0; i < nstates; i++)
state.h 35 state 0 and NSTATES is the number of states. (FIXME: This sentence
37 NSTATES indicates termination.) All the cores are chained together
226 extern state_number nstates;
262 /* Remove unreachable states, renumber remaining states, update NSTATES, and
264 that the old value of NSTATES is written as the new state number for removed
265 states. The size of OLD_TO_NEW must be the old value of NSTATES. */
LR0.c 65 nstates, sym, symbols[sym]->tag);
306 states = xcalloc (nstates, sizeof *states);
print_graph.c 204 for (i = 0; i < nstates; i++)
print-xml.c 525 for (i = 0; i < nstates; i++)
print.c 525 for (i = 0; i < nstates; i++)
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regexec.c 158 #define CLEAR(v) memset(v, 0, (size_t)m->g->nstates)
162 #define ASSIGN(d, s) memcpy(d, s, (size_t)m->g->nstates)
163 #define EQ(a, b) (memcmp(a, b, (size_t)m->g->nstates) == 0)
166 if (((m)->space = malloc((size_t)((nv)*(m)->g->nstates))) == NULL) \
172 #define SETUP(v) ((v) = &m->space[(size_t)(m->vn++ * m->g->nstates)])
230 if (g->nstates <= (sopno)(CHAR_BIT*sizeof(states1)) && !(eflags&REG_LARGE))
regex2.h 187 sopno nstates; /* = number of sops */ member in struct:re_guts
engine.c 1113 for (i = 0; i < g->nstates; i++)
  /external/iproute2/bridge/
link.c 321 size_t nstates = sizeof(port_states) / sizeof(*port_states); local
324 for (state = 0; state < nstates; state++)
327 if (state == nstates) {
  /external/libxml2/os400/iconv/bldcsndfa/
bldcsndfa.c 1740 unsigned int nstates; local
    [all...]

Completed in 866 milliseconds

1 2