Lines Matching refs:x

209   int x;  in onig_strncmp()  local
212 x = *s2++ - *s1++; in onig_strncmp()
213 if (x) return x; in onig_strncmp()
318 str_end_cmp(st_str_end_key* x, st_str_end_key* y) in str_end_cmp() argument
323 if ((x->end - x->s) != (y->end - y->s)) in str_end_cmp()
326 p = x->s; in str_end_cmp()
328 while (p < x->end) { in str_end_cmp()
339 str_end_hash(st_str_end_key* x) in str_end_hash() argument
344 p = x->s; in str_end_hash()
345 while (p < x->end) { in str_end_hash()
1240 onig_node_list_add(Node* list, Node* x) in onig_node_list_add() argument
1244 n = onig_node_new_list(x, NULL); in onig_node_list_add()
1703 int low, high, bound, x; in add_code_range_to_buf() local
1725 x = (low + bound) >> 1; in add_code_range_to_buf()
1726 if (from > data[x*2 + 1]) in add_code_range_to_buf()
1727 low = x + 1; in add_code_range_to_buf()
1729 bound = x; in add_code_range_to_buf()
1733 x = (high + bound) >> 1; in add_code_range_to_buf()
1734 if (to >= data[x*2] - 1) in add_code_range_to_buf()
1735 high = x + 1; in add_code_range_to_buf()
1737 bound = x; in add_code_range_to_buf()
2848 OnigCodePoint x; in find_str_position() local
2853 x = ONIGENC_MBC_TO_CODE(enc, p, to); in find_str_position()
2855 if (x == s[0]) { in find_str_position()
2857 x = ONIGENC_MBC_TO_CODE(enc, q, to); in find_str_position()
2858 if (x != s[i]) break; in find_str_position()
2877 OnigCodePoint x; in str_exist_check_with_esc() local
2888 x = ONIGENC_MBC_TO_CODE(enc, p, to); in str_exist_check_with_esc()
2890 if (x == s[0]) { in str_exist_check_with_esc()
2892 x = ONIGENC_MBC_TO_CODE(enc, q, to); in str_exist_check_with_esc()
2893 if (x != s[i]) break; in str_exist_check_with_esc()
2900 x = ONIGENC_MBC_TO_CODE(enc, p, to); in str_exist_check_with_esc()
2901 if (x == bad) return 0; in str_exist_check_with_esc()
2902 else if (x == MC_ESC(syn)) in_esc = 1; in str_exist_check_with_esc()
4870 static int type_cclass_cmp(type_cclass_key* x, type_cclass_key* y) in type_cclass_cmp() argument
4872 if (x->type != y->type) return 1; in type_cclass_cmp()
4873 if (x->enc != y->enc) return 1; in type_cclass_cmp()
4874 if (x->not != y->not) return 1; in type_cclass_cmp()