Home
last modified time | relevance | path

Searched refs:high_value (Results 1 – 5 of 5) sorted by relevance

/NextBSD/contrib/gcc/
HDc-semantics.c165 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()
HDc-common.c3732 tree low_value, tree high_value) in c_add_case_label() argument
3749 || (high_value && TREE_TYPE (high_value) in c_add_case_label()
3750 && POINTER_TYPE_P (TREE_TYPE (high_value)))) in c_add_case_label()
3757 if (high_value && pedantic) in c_add_case_label()
3768 if (high_value) in c_add_case_label()
3770 high_value = check_case_value (high_value); in c_add_case_label()
3771 high_value = convert_and_check (type, high_value); in c_add_case_label()
3772 if (high_value == error_mark_node) in c_add_case_label()
3776 if (low_value && high_value) in c_add_case_label()
3781 if (tree_int_cst_equal (low_value, high_value)) in c_add_case_label()
[all …]
HDtree.c1328 HOST_WIDE_INT high_value; in integer_all_onesp() local
1338 high_value = -1; in integer_all_onesp()
1340 high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1; in integer_all_onesp()
1343 && TREE_INT_CST_HIGH (expr) == high_value); in integer_all_onesp()
HDc-typeck.c7592 do_case (tree low_value, tree high_value) in do_case() argument
7602 low_value, high_value); in do_case()
/NextBSD/contrib/gcc/cp/
HDdecl.c2667 finish_case_label (tree low_value, tree high_value) in finish_case_label() argument
2679 return add_stmt (build_case_label (low_value, high_value, label)); in finish_case_label()
2691 low_value, high_value); in finish_case_label()