Home
last modified time | relevance | path

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

/glibc-2.36/posix/
Dregcomp.c564 # if 4 * BITSET_WORD_BITS < ASCII_CHARS
566 # elif 3 * BITSET_WORD_BITS < ASCII_CHARS
568 # elif 2 * BITSET_WORD_BITS < ASCII_CHARS
570 # elif 1 * BITSET_WORD_BITS < ASCII_CHARS
1094 if (dfa->nodes[node].opr.c >= ASCII_CHARS) in optimize_utf8()
1127 int rshift = (ASCII_CHARS % BITSET_WORD_BITS == 0 in optimize_utf8()
1129 : BITSET_WORD_BITS - ASCII_CHARS % BITSET_WORD_BITS); in optimize_utf8()
1130 for (i = ASCII_CHARS / BITSET_WORD_BITS; i < BITSET_WORDS; ++i) in optimize_utf8()
1146 && dfa->nodes[node].opr.c >= ASCII_CHARS) in optimize_utf8()
Dregex_internal.h124 #define ASCII_CHARS 0x80 macro
Dregexec.c3492 if (ASCII_CHARS % BITSET_WORD_BITS == 0) in group_nodes_into_DFAstates()
3493 memset (accepts, -1, ASCII_CHARS / CHAR_BIT); in group_nodes_into_DFAstates()
3955 if (ch >= ASCII_CHARS) in check_node_accept()