Home
last modified time | relevance | path

Searched refs:nstates (Results 1 – 24 of 24) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
Dregexec.c107 #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)) in llvm_regexec()
Dregex2.h141 sopno nstates; /* = number of sops */ member
Dregcomp.c1573 g->nstates = p->slen; in stripsnug()
Dregengine.inc978 for (i = 0; i < g->nstates; i++)
/external/swiftshader/third_party/llvm-subzero/lib/Support/
Dregexec.c107 #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)) in llvm_regexec()
Dregex2.h138 sopno nstates; /* = number of sops */ member
Dregcomp.c1445 g->nstates = p->slen; in stripsnug()
Dregengine.inc978 for (i = 0; i < g->nstates; i++)
/external/llvm/lib/Support/
Dregexec.c107 #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)) in llvm_regexec()
Dregex2.h138 sopno nstates; /* = number of sops */ member
Dregcomp.c1445 g->nstates = p->slen; in stripsnug()
Dregengine.inc978 for (i = 0; i < g->nstates; i++)
/external/llvm-project/llvm/lib/Support/
Dregexec.c107 #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)) in llvm_regexec()
Dregex2.h141 sopno nstates; /* = number of sops */ member
Dregcomp.c1573 g->nstates = p->slen; in stripsnug()
Dregengine.inc978 for (i = 0; i < g->nstates; i++)
/external/libcups/vcnet/regex/
Dregexec.c71 #define CLEAR(v) memset(v, 0, m->g->nstates)
75 #define ASSIGN(d, s) memcpy(d, s, m->g->nstates)
76 #define EQ(a, b) (memcmp(a, b, m->g->nstates) == 0)
78 #define STATESETUP(m, nv) { (m)->space = malloc((nv)*(m)->g->nstates); \
82 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
134 if (g->nstates <= CHAR_BIT*sizeof(states1) && !(eflags&REG_LARGE))
Dregex2.h112 sopno nstates; /* = number of sops */ member
Ddebug.c28 fprintf(d, "%ld states, %d categories", (long)g->nstates,
Dengine.c951 for (i = 0; i < g->nstates; i++)
Dregcomp.c1474 g->nstates = p->slen;
/external/libxml2/os400/iconv/bldcsndfa/
Dbldcsndfa.c1740 unsigned int nstates; in generate() local
1753 nstates = 0; in generate()
1758 s->s_index = nstates++; in generate()
1761 maxfinal = nstates; in generate()
1769 nstates, maxfinal, ntrans); in generate()
1771 nstates, maxfinal, ntrans); in generate()
1778 fprintf(fp, "typedef %-23s t_staterange;\n", inttype(nstates)); in generate()
1844 fprintf(fp, " %u\n};\n\n", nstates); in generate()
1867 fprintf(fp, "\n};\n", nstates); in generate()
/external/iproute2/bridge/
Dlink.c336 size_t nstates = ARRAY_SIZE(port_states); in brlink_modify() local
340 for (state = 0; state < nstates; state++) in brlink_modify()
343 if (state == nstates) { in brlink_modify()
/external/rust/crates/regex/src/
Ddfa.rs1286 let nstates = self.cache.compiled.len(); in clear_cache() localVariable
1289 && (self.at - self.last_cache_flush) <= 10 * nstates in clear_cache()