Lines Matching refs:ch

600   int ch;  in re_search_internal()  local
720 ch = match_first >= length in re_search_internal()
722 if (!fastmap[t ? t[ch] : ch]) in re_search_internal()
732 ch = match_first >= length in re_search_internal()
734 if (fastmap[t ? t[ch] : ch]) in re_search_internal()
762 ch = (offset < mctx.input.valid_len in re_search_internal()
764 if (fastmap[ch]) in re_search_internal()
2216 unsigned char ch; in transit_state() local
2236 ch = re_string_fetch_byte (&mctx->input); in transit_state()
2241 return trtable[ch]; in transit_state()
2252 return trtable[ch + SBC_MAX]; in transit_state()
2254 return trtable[ch]; in transit_state()
3265 int ch; in build_trtable() local
3373 for (ch = i * BITSET_WORD_BITS, elem = acceptable[i], mask = 1; in build_trtable()
3375 mask <<= 1, elem >>= 1, ++ch) in build_trtable()
3385 trtable[ch] = dest_states_word[j]; in build_trtable()
3387 trtable[ch] = dest_states[j]; in build_trtable()
3404 for (ch = i * BITSET_WORD_BITS, elem = acceptable[i], mask = 1; in build_trtable()
3406 mask <<= 1, elem >>= 1, ++ch) in build_trtable()
3415 trtable[ch] = dest_states[j]; in build_trtable()
3416 trtable[ch + SBC_MAX] = dest_states_word[j]; in build_trtable()
3939 unsigned char ch; in check_node_accept() local
3940 ch = re_string_byte_at (&mctx->input, idx); in check_node_accept()
3944 if (node->opr.c != ch) in check_node_accept()
3949 if (!bitset_contain (node->opr.sbcset, ch)) in check_node_accept()
3955 if (ch >= ASCII_CHARS) in check_node_accept()
3960 if ((ch == '\n' && !(mctx->dfa->syntax & RE_DOT_NEWLINE)) in check_node_accept()
3961 || (ch == '\0' && (mctx->dfa->syntax & RE_DOT_NOT_NULL))) in check_node_accept()