Home
last modified time | relevance | path

Searched refs:setbits (Results 1 – 3 of 3) sorted by relevance

/ndk/sources/host-tools/ndk-stack/regex/
Dregfree.c68 if (g->setbits != NULL) in regfree()
69 free((char *)g->setbits); in regfree()
Dregcomp.c198 g->setbits = NULL; in regcomp()
1044 ptr = (uch *)realloc((char *)p->g->setbits, nbytes); in allocset()
1047 p->g->setbits = (uch*)ptr; in allocset()
1050 p->g->sets[i].ptr = p->g->setbits + css*(i/CHAR_BIT); in allocset()
1052 (void) memset((char *)p->g->setbits + (nbytes - css), 0, css); in allocset()
1055 if (p->g->sets == NULL || p->g->setbits == NULL) in allocset()
1059 cs->ptr = p->g->setbits + css*((no)/CHAR_BIT); in allocset()
1069 free(p->g->setbits); in allocset()
1070 p->g->setbits = NULL; in allocset()
1222 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize) in isinsets()
[all …]
Dregex2.h133 uch *setbits; /* -> uch[csetsize][ncsets/CHAR_BIT] */ member