Home
last modified time | relevance | path

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

/ndk/sources/host-tools/sed-4.2.1/lib/
Dregcomp.c592 # if 4 * BITSET_WORD_BITS < ASCII_CHARS
594 # elif 3 * BITSET_WORD_BITS < ASCII_CHARS
596 # elif 2 * BITSET_WORD_BITS < ASCII_CHARS
598 # elif 1 * BITSET_WORD_BITS < ASCII_CHARS
1071 if (dfa->nodes[node].opr.c >= ASCII_CHARS) in optimize_utf8()
1104 int rshift = (ASCII_CHARS % BITSET_WORD_BITS == 0 in optimize_utf8()
1106 : BITSET_WORD_BITS - ASCII_CHARS % BITSET_WORD_BITS); in optimize_utf8()
1107 for (i = ASCII_CHARS / BITSET_WORD_BITS; i < BITSET_WORDS; ++i) in optimize_utf8()
1123 && dfa->nodes[node].opr.c >= ASCII_CHARS) in optimize_utf8()
Dregex_internal.h104 #define ASCII_CHARS 0x80 macro
Dregexec.c3628 if (ASCII_CHARS % BITSET_WORD_BITS == 0) in group_nodes_into_DFAstates()
3629 memset (accepts, -1, ASCII_CHARS / CHAR_BIT); in group_nodes_into_DFAstates()
4098 if (ch >= ASCII_CHARS) in check_node_accept()