Lines Matching refs:ch

562   int sb, ch;  in re_search_internal()  local
678 ch = match_first >= length in re_search_internal()
680 if (!fastmap[t ? t[ch] : ch]) in re_search_internal()
690 ch = match_first >= length in re_search_internal()
692 if (fastmap[t ? t[ch] : ch]) in re_search_internal()
720 ch = (match_first >= length in re_search_internal()
722 if (fastmap[ch]) in re_search_internal()
2169 unsigned char ch; in transit_state() local
2189 ch = re_string_fetch_byte (&mctx->input); in transit_state()
2194 return trtable[ch]; in transit_state()
2205 return trtable[ch + SBC_MAX]; in transit_state()
2207 return trtable[ch]; in transit_state()
3221 int i, j, ch, need_word_trtable = 0; in build_trtable() local
3360 for (ch = i * BITSET_WORD_BITS, elem = acceptable[i], mask = 1; in build_trtable()
3362 mask <<= 1, elem >>= 1, ++ch) in build_trtable()
3372 trtable[ch] = dest_states_word[j]; in build_trtable()
3374 trtable[ch] = dest_states[j]; in build_trtable()
3390 for (ch = i * BITSET_WORD_BITS, elem = acceptable[i], mask = 1; in build_trtable()
3392 mask <<= 1, elem >>= 1, ++ch) in build_trtable()
3401 trtable[ch] = dest_states[j]; in build_trtable()
3402 trtable[ch + SBC_MAX] = dest_states_word[j]; in build_trtable()
3930 unsigned char ch; in check_node_accept() local
3931 ch = re_string_byte_at (&mctx->input, idx); in check_node_accept()
3935 if (node->opr.c != ch) in check_node_accept()
3940 if (!bitset_contain (node->opr.sbcset, ch)) in check_node_accept()
3946 if (ch >= 0x80) in check_node_accept()
3951 if ((ch == '\n' && !(mctx->dfa->syntax & RE_DOT_NEWLINE)) in check_node_accept()
3952 || (ch == '\0' && (mctx->dfa->syntax & RE_DOT_NOT_NULL))) in check_node_accept()