Searched refs:high_value (Results 1 – 11 of 11) sorted by relevance
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | c-semantics.c | 165 build_case_label (tree low_value, tree high_value, tree label_decl) in build_case_label() argument 167 return build_stmt (CASE_LABEL_EXPR, low_value, high_value, label_decl); in build_case_label()
|
| H A D | c-common.c | 3638 tree low_value, tree high_value) in c_add_case_label() argument 3655 || (high_value && TREE_TYPE (high_value) in c_add_case_label() 3656 && POINTER_TYPE_P (TREE_TYPE (high_value)))) in c_add_case_label() 3663 if (high_value && pedantic) in c_add_case_label() 3674 if (high_value) in c_add_case_label() 3676 high_value = check_case_value (high_value); in c_add_case_label() 3677 high_value = convert_and_check (type, high_value); in c_add_case_label() 3678 if (high_value == error_mark_node) in c_add_case_label() 3682 if (low_value && high_value) in c_add_case_label() 3687 if (tree_int_cst_equal (low_value, high_value)) in c_add_case_label() [all …]
|
| H A D | tree.c | 1320 HOST_WIDE_INT high_value; in integer_all_onesp() local 1330 high_value = -1; in integer_all_onesp() 1332 high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1; in integer_all_onesp() 1335 && TREE_INT_CST_HIGH (expr) == high_value); in integer_all_onesp()
|
| H A D | c-typeck.c | 7198 do_case (tree low_value, tree high_value) in do_case() argument 7208 low_value, high_value); in do_case()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | c-semantics.c | 656 build_case_label (low_value, high_value, label_decl) in build_case_label() argument 658 tree high_value; 661 return build_stmt (CASE_LABEL, low_value, high_value, label_decl);
|
| H A D | c-common.c | 4070 c_add_case_label (cases, cond, low_value, high_value) in c_add_case_label() argument 4074 tree high_value; 4098 || (high_value && TREE_TYPE (high_value) 4099 && POINTER_TYPE_P (TREE_TYPE (high_value)))) 4103 if (high_value && pedantic) 4117 if (high_value) 4119 high_value = check_case_value (high_value); 4120 high_value = convert_and_check (type, high_value); 4124 if (low_value == error_mark_node || high_value == error_mark_node) 4134 if (tree_int_cst_equal (low_value, high_value)) [all …]
|
| H A D | tree.c | 658 HOST_WIDE_INT high_value; local 669 high_value = -1; 671 high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1; 674 && TREE_INT_CST_HIGH (expr) == high_value);
|
| H A D | c-typeck.c | 7232 do_case (low_value, high_value) in do_case() argument 7234 tree high_value; 7242 low_value, high_value);
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/treelang/ |
| H A D | treetree.c | 913 tree high_value ATTRIBUTE_UNUSED, in build_case_label()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/cp/ |
| H A D | decl.c | 5538 finish_case_label (low_value, high_value) in finish_case_label() argument 5540 tree high_value; 5547 if (high_value) 5564 return add_stmt (build_case_label (low_value, high_value, label)); 5572 r = c_add_case_label (switch_stack->cases, cond, low_value, high_value);
|
| /openbsd-src/gnu/gcc/gcc/cp/ |
| H A D | decl.c | 2652 finish_case_label (tree low_value, tree high_value) in finish_case_label() argument 2664 return add_stmt (build_case_label (low_value, high_value, label)); in finish_case_label() 2676 low_value, high_value); in finish_case_label()
|