Home
last modified time | relevance | path

Searched refs:low_bound (Results 1 – 25 of 42) sorted by relevance

12

/dragonfly/contrib/gdb-7/gdb/
H A Dm2-valprint.c77 LONGEST i, low_bound, high_bound; in m2_print_long_set() local
88 if (get_long_set_bounds (type, &low_bound, &high_bound)) in m2_print_long_set()
103 for (i = low_bound; i <= high_bound; i++) in m2_print_long_set()
419 LONGEST low_bound, high_bound; in m2_val_print() local
425 i = get_discrete_bounds (range, &low_bound, &high_bound); in m2_val_print()
433 for (i = low_bound; i <= high_bound; i++) in m2_val_print()
H A Dgdbtypes.c810 if (low_bound >= 0) in create_range_type()
920 if (low_bound) in get_array_bounds()
921 *low_bound = low; in get_array_bounds()
945 LONGEST low_bound, high_bound; in create_array_type() local
953 low_bound = high_bound = 0; in create_array_type()
958 if (high_bound < low_bound) in create_array_type()
1019 low_bound, high_bound); in lookup_string_range_type()
1039 low_bound = high_bound = 0; in create_set_type()
1043 if (low_bound >= 0) in create_set_type()
1680 if (high_bound < low_bound) in check_typedef()
[all …]
H A Dp-valprint.c69 LONGEST low_bound, high_bound; in pascal_val_print() local
81 if (get_array_bounds (type, &low_bound, &high_bound)) in pascal_val_print()
83 len = high_bound - low_bound + 1; in pascal_val_print()
348 LONGEST low_bound, high_bound; in pascal_val_print() local
354 i = get_discrete_bounds (range, &low_bound, &high_bound); in pascal_val_print()
355 if (low_bound == 0 && high_bound == -1 && TYPE_LENGTH (type) > 0) in pascal_val_print()
370 for (i = low_bound; i <= high_bound; i++) in pascal_val_print()
H A Dc-lang.c258 LONGEST low_bound, high_bound; in c_get_string() local
261 &low_bound, &high_bound); in c_get_string()
262 fetchlimit = high_bound - low_bound + 1; in c_get_string()
674 LONGEST low_bound, high_bound; in evaluate_subexp_c() local
678 &low_bound, &high_bound) < 0) in evaluate_subexp_c()
680 low_bound = 0; in evaluate_subexp_c()
684 > (high_bound - low_bound + 1)) in evaluate_subexp_c()
H A Deval.c364 low_bound, high_bound); in init_array_element()
380 + (index - low_bound) * element_size, in init_array_element()
400 LONGEST low_bound, high_bound; in value_f90_subarray() local
407 low_bound = TYPE_LOW_BOUND (range); in value_f90_subarray()
416 return value_slice (array, low_bound, high_bound - low_bound + 1); in value_f90_subarray()
892 low_bound = 0; in evaluate_subexp_standard()
895 index = low_bound; in evaluate_subexp_standard()
916 low_bound, high_bound); in evaluate_subexp_standard()
941 LONGEST low_bound, high_bound; in evaluate_subexp_standard() local
996 range_low -= low_bound; in evaluate_subexp_standard()
[all …]
H A Dvalarith.c1360 LONGEST low_bound, high_bound; in value_vector_widen() local
1383 for (i = 0; i < high_bound - low_bound + 1; i++) in value_vector_widen()
1770 LONGEST low_bound, high_bound; in value_neg() local
1772 if (!get_array_bounds (type, &low_bound, &high_bound)) in value_neg()
1775 for (i = 0; i < high_bound - low_bound + 1; i++) in value_neg()
1806 LONGEST low_bound, high_bound; in value_complement() local
1808 if (!get_array_bounds (type, &low_bound, &high_bound)) in value_complement()
1812 for (i = 0; i < high_bound - low_bound + 1; i++) in value_complement()
1833 LONGEST low_bound, high_bound; in value_bit_index() local
1840 if (index < low_bound || index > high_bound) in value_bit_index()
[all …]
H A Dada-valprint.c77 LONGEST low_bound; in print_optional_low_bound() local
83 if (!get_array_bounds (type, &low_bound, &high_bound)) in print_optional_low_bound()
89 if (low_bound > high_bound) in print_optional_low_bound()
107 if (low_bound == 0) in print_optional_low_bound()
111 if (low_bound == TYPE_FIELD_ENUMVAL (index_type, 0)) in print_optional_low_bound()
118 if (low_bound == 1) in print_optional_low_bound()
123 ada_print_scalar (index_type, low_bound, stream); in print_optional_low_bound()
H A Dc-valprint.c157 LONGEST low_bound, high_bound; in c_val_print() local
159 if (!get_array_bounds (type, &low_bound, &high_bound)) in c_val_print()
163 len = high_bound - low_bound + 1; in c_val_print()
H A Dvalprint.c388 LONGEST low_bound, high_bound; in generic_val_print() local
390 if (!get_array_bounds (type, &low_bound, &high_bound)) in generic_val_print()
1614 LONGEST low_bound, high_bound; in val_print_array_elements() local
1620 if (get_array_bounds (type, &low_bound, &high_bound)) in val_print_array_elements()
1627 if (low_bound > high_bound) in val_print_array_elements()
1630 len = high_bound - low_bound + 1; in val_print_array_elements()
1635 low_bound = 0; in val_print_array_elements()
1656 maybe_print_array_index (index_type, i + low_bound, in val_print_array_elements()
H A Dvalops.c409 LONGEST low_bound, high_bound, new_length; in value_cast() local
411 if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0) in value_cast()
412 low_bound = 0, high_bound = 0; in value_cast()
421 low_bound, in value_cast()
422 new_length + low_bound - 1); in value_cast()
881 LONGEST low_bound, high_bound; in value_one() local
884 if (!get_array_bounds (type1, &low_bound, &high_bound)) in value_one()
888 for (i = 0; i < high_bound - low_bound + 1; i++) in value_one()
H A Dc-typeprint.c684 LONGEST low_bound, high_bound; in c_type_print_varspec_suffix() local
692 if (get_array_bounds (type, &low_bound, &high_bound)) in c_type_print_varspec_suffix()
694 plongest (high_bound - low_bound + 1)); in c_type_print_varspec_suffix()
/dragonfly/contrib/gcc-8.0/gcc/
H A Dtree-dfa.c494 tree low_bound, unit_size; in get_ref_base_and_extent() local
498 && (low_bound = array_ref_low_bound (exp), in get_ref_base_and_extent()
499 poly_int_tree_p (low_bound)) in get_ref_base_and_extent()
505 - wi::to_poly_offset (low_bound), in get_ref_base_and_extent()
761 tree low_bound, unit_size; in get_addr_base_and_unit_offset_1() local
769 && (low_bound = array_ref_low_bound (exp), in get_addr_base_and_unit_offset_1()
770 poly_int_tree_p (low_bound)) in get_addr_base_and_unit_offset_1()
776 - wi::to_poly_offset (low_bound), in get_addr_base_and_unit_offset_1()
H A Dtree-object-size.c143 tree low_bound, unit_size; in compute_object_offset() local
144 low_bound = array_ref_low_bound (CONST_CAST_TREE (expr)); in compute_object_offset()
146 if (! integer_zerop (low_bound)) in compute_object_offset()
147 t = fold_build2 (MINUS_EXPR, TREE_TYPE (t), t, low_bound); in compute_object_offset()
H A Dtree-vrp.c1955 wide_int low_bound, high_bound; in extract_range_from_binary_expr_1() local
1973 low_bound = bound; in extract_range_from_binary_expr_1()
1994 low_bound = complement; in extract_range_from_binary_expr_1()
4874 tree low_bound, up_bound, up_bound_p1; in check_array_ref() local
4923 low_bound = array_ref_low_bound (ref); in check_array_ref()
4932 low_bound, artype); in check_array_ref()
4954 && tree_int_cst_le (low_sub, low_bound)) in check_array_ref()
5016 tree low_bound, up_bound, el_sz; in search_for_addr_array() local
5026 if (!low_bound in search_for_addr_array()
5027 || TREE_CODE (low_bound) != INTEGER_CST in search_for_addr_array()
[all …]
H A Drtlanal.c544 poly_int64 low_bound, high_bound; in rtx_addr_can_trap_p_1() local
554 low_bound = high_bound - get_frame_size (); in rtx_addr_can_trap_p_1()
558 low_bound = targetm.starting_frame_offset (); in rtx_addr_can_trap_p_1()
559 high_bound = low_bound + get_frame_size (); in rtx_addr_can_trap_p_1()
572 low_bound = sp_offset - red_zone_size - stack_boundary; in rtx_addr_can_trap_p_1()
581 low_bound = ap_offset in rtx_addr_can_trap_p_1()
596 low_bound = - red_zone_size - stack_boundary; in rtx_addr_can_trap_p_1()
605 low_bound = ap_offset in rtx_addr_can_trap_p_1()
621 low_bound = FIRST_PARM_OFFSET (current_function_decl) in rtx_addr_can_trap_p_1()
624 low_bound = FIRST_PARM_OFFSET (current_function_decl) in rtx_addr_can_trap_p_1()
[all …]
H A Dtree-switch-conversion.c2695 bool low_bound = node_has_low_bound (node, index_type); in emit_case_nodes() local
2697 if (!high_bound && low_bound) in emit_case_nodes()
2707 else if (!low_bound && high_bound) in emit_case_nodes()
2716 else if (!low_bound && !high_bound) in emit_case_nodes()
/dragonfly/contrib/binutils-2.27/gold/
H A Daarch64-reloc-property.cc52 int64_t low_bound = -(L == 0 ? 0 : ((int64_t)1 << L)); in rvalue_checkup() local
54 return ((low_bound <= x && x < up_bound) in rvalue_checkup()
/dragonfly/contrib/gcc-8.0/gcc/cp/
H A Dsemantics.c4621 if ((low_bound && type_dependent_expression_p (low_bound)) in handle_omp_array_sections_1()
4628 if (low_bound && !INTEGRAL_TYPE_P (TREE_TYPE (low_bound))) in handle_omp_array_sections_1()
4632 low_bound); in handle_omp_array_sections_1()
4642 if (low_bound) in handle_omp_array_sections_1()
4643 low_bound = mark_rvalue_use (low_bound); in handle_omp_array_sections_1()
4649 if (low_bound) in handle_omp_array_sections_1()
4650 low_bound = fold_simple (low_bound); in handle_omp_array_sections_1()
4651 if (low_bound in handle_omp_array_sections_1()
4655 low_bound = fold_convert (sizetype, low_bound); in handle_omp_array_sections_1()
4911 if (low_bound in handle_omp_array_sections()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/
H A Dtree-dfa.c823 tree low_bound, unit_size; in get_ref_base_and_extent() local
827 && (low_bound = array_ref_low_bound (exp), in get_ref_base_and_extent()
828 TREE_CODE (low_bound) == INTEGER_CST) in get_ref_base_and_extent()
835 TREE_INT_CST (low_bound)), in get_ref_base_and_extent()
H A Dmips-tdump.c421 int low_bound; in type_to_string() member
436 qualifiers[i].low_bound = 0; in type_to_string()
634 qualifiers[i].low_bound = aux_ptr[index+2].dnLow; in type_to_string()
692 if (qualifiers[j].low_bound != 0) in type_to_string()
695 (long) qualifiers[j].low_bound, in type_to_string()
H A Dtree-flow-inline.h1270 tree low_bound, unit_size; in get_addr_base_and_unit_offset_1() local
1278 && (low_bound = array_ref_low_bound (exp), in get_addr_base_and_unit_offset_1()
1279 TREE_CODE (low_bound) == INTEGER_CST) in get_addr_base_and_unit_offset_1()
1285 hindex -= TREE_INT_CST_LOW (low_bound); in get_addr_base_and_unit_offset_1()
H A Dgimple-fold.c2781 double_int low_bound, elt_size; in fold_array_ctor_reference() local
2794 low_bound = tree_to_double_int (TYPE_MIN_VALUE (domain_type)); in fold_array_ctor_reference()
2797 low_bound = double_int_zero; in fold_array_ctor_reference()
2816 access_index = double_int_add (access_index, low_bound); in fold_array_ctor_reference()
2826 index = double_int_sub (low_bound, double_int_one); in fold_array_ctor_reference()
3001 tree low_bound, unit_size; in fold_const_aggregate_ref_1() local
3004 if ((low_bound = array_ref_low_bound (t), in fold_const_aggregate_ref_1()
3005 host_integerp (low_bound, 0)) in fold_const_aggregate_ref_1()
3010 offset -= TREE_INT_CST_LOW (low_bound); in fold_const_aggregate_ref_1()
H A Dstmt.c3152 int low_bound = node_has_low_bound (node, index_type); in emit_case_nodes() local
3154 if (!high_bound && low_bound) in emit_case_nodes()
3165 else if (!low_bound && high_bound) in emit_case_nodes()
3175 else if (!low_bound && !high_bound) in emit_case_nodes()
/dragonfly/contrib/gdb-7/gdb/python/
H A Dpy-type.c561 PyObject *low_bound = NULL, *high_bound = NULL; in typy_range() local
587 low_bound = PyLong_FromLong (low); in typy_range()
588 if (!low_bound) in typy_range()
599 if (PyTuple_SetItem (result, 0, low_bound) != 0) in typy_range()
614 Py_XDECREF (low_bound); in typy_range()
/dragonfly/contrib/gcc-8.0/gcc/c/
H A Dc-typeck.c12568 if (low_bound && !INTEGRAL_TYPE_P (TREE_TYPE (low_bound))) in handle_omp_array_sections_1()
12572 low_bound); in handle_omp_array_sections_1()
12582 if (low_bound in handle_omp_array_sections_1()
12586 low_bound = fold_convert (sizetype, low_bound); in handle_omp_array_sections_1()
12679 low_bound)) in handle_omp_array_sections_1()
12731 if (lb != low_bound) in handle_omp_array_sections_1()
12734 low_bound = lb; in handle_omp_array_sections_1()
12776 if (lb != low_bound) in handle_omp_array_sections_1()
12779 low_bound = lb; in handle_omp_array_sections_1()
12839 if (low_bound in handle_omp_array_sections()
[all …]

12