/openbsd/gnu/gcc/gcc/ |
H A D | coverage.c | 593 tree array_type; in build_fn_info_type() local 603 array_type = build_int_cst (NULL_TREE, counters - 1); in build_fn_info_type() 604 array_type = build_index_type (array_type); in build_fn_info_type() 605 array_type = build_array_type (get_gcov_unsigned_t (), array_type); in build_fn_info_type() 608 field = build_decl (FIELD_DECL, NULL_TREE, array_type); in build_fn_info_type() 715 tree array_type; in build_ctr_info_value() local 719 array_type = build_index_type (array_type); in build_ctr_info_value() 721 array_type); in build_ctr_info_value() 723 TREE_TYPE (tree_ctr_tables[counter]) = array_type; in build_ctr_info_value() 832 tree array_type; in build_gcov_info() local [all …]
|
H A D | tree-ssa-ccp.c | 1543 tree array_type, elt_type, elt_size; in maybe_fold_offset_to_array_ref() local 1564 array_type = TREE_TYPE (base); in maybe_fold_offset_to_array_ref() 1565 if (TREE_CODE (array_type) != ARRAY_TYPE) in maybe_fold_offset_to_array_ref() 1567 elt_type = TREE_TYPE (array_type); in maybe_fold_offset_to_array_ref() 1605 if (TYPE_DOMAIN (array_type)) in maybe_fold_offset_to_array_ref() 1607 if (TYPE_MIN_VALUE (TYPE_DOMAIN (array_type))) in maybe_fold_offset_to_array_ref() 1608 min_idx = TYPE_MIN_VALUE (TYPE_DOMAIN (array_type)); in maybe_fold_offset_to_array_ref() 1610 min_idx = fold_convert (TYPE_DOMAIN (array_type), min_idx); in maybe_fold_offset_to_array_ref() 1615 idx = fold_convert (TYPE_DOMAIN (array_type), idx); in maybe_fold_offset_to_array_ref() 1616 elt_offset = fold_convert (TYPE_DOMAIN (array_type), elt_offset); in maybe_fold_offset_to_array_ref()
|
H A D | c-bounded.c | 431 tree array_type = TREE_TYPE (TREE_TYPE (buf_expr)); local 432 tree array_type_size_expr = TYPE_SIZE (array_type);
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.bugs/ |
H A D | 900404_07.C | 10 typedef int array_type[10]; typedef 12 array_type *ap; 16 int i = *((array_type) *ap); /* ERROR - missed */ in foo()
|
H A D | 900402_02.C | 8 typedef int array_type[0]; // ERROR - gets warning only typedef
|
/openbsd/gnu/gcc/libstdc++-v3/include/ext/ |
H A D | array_allocator.h | 101 typedef _Array array_type; typedef 104 array_type* _M_array; 112 array_allocator(array_type* __array = NULL) throw() in throw()
|
/openbsd/sys/dev/ic/ |
H A D | qwz.c | 1826 .array_type = NO_ARRAY, 1835 .array_type = NO_ARRAY, 1844 .array_type = NO_ARRAY, 1856 .array_type = NO_ARRAY, 1865 .array_type = NO_ARRAY, 1874 .array_type = NO_ARRAY, 1883 .array_type = NO_ARRAY, 1892 .array_type = NO_ARRAY, 1901 .array_type = NO_ARRAY, 1910 .array_type = NO_ARRAY, [all …]
|
H A D | qwx.c | 4446 .array_type = NO_ARRAY, 4455 .array_type = NO_ARRAY, 4464 .array_type = NO_ARRAY, 4476 .array_type = NO_ARRAY, 4485 .array_type = NO_ARRAY, 4494 .array_type = NO_ARRAY, 4503 .array_type = NO_ARRAY, 4512 .array_type = NO_ARRAY, 4521 .array_type = NO_ARRAY, 4530 .array_type = NO_ARRAY, [all …]
|
/openbsd/gnu/usr.bin/gcc/gcc/java/ |
H A D | typeck.c | 333 java_array_type_length (array_type) in java_array_type_length() argument 334 tree array_type; in java_array_type_length() 337 if (TREE_CODE (array_type) == POINTER_TYPE) 338 array_type = TREE_TYPE (array_type); 339 arfld = TREE_CHAIN (TREE_CHAIN (TYPE_FIELDS (array_type)));
|
H A D | expr.c | 680 tree array_type = TREE_TYPE (type); local 700 build_java_indirect_ref (array_type, node, 702 lookup_field (&array_type, get_identifier ("length"))); 755 tree array_type = TREE_TYPE (TREE_TYPE (array)); local 784 data_field = lookup_field (&array_type, get_identifier ("data")); 787 build_java_indirect_ref (array_type, array, 2511 tree array_type = TREE_TYPE (TREE_TYPE (exp)); local 2512 tree element_type = TYPE_ARRAY_ELEMENT (array_type); 2514 HOST_WIDE_INT ilength = java_array_type_length (array_type); 2531 START_RECORD_CONSTRUCTOR (value, array_type); [all …]
|
H A D | parse-scan.y | 203 primitive_type reference_type array_type formal_parameter_list 250 | array_type 265 array_type: 939 | array_type DOT_TK CLASS_TK
|
H A D | parse.y | 644 | array_type 659 array_type: 1993 | array_type DOT_TK CLASS_TK 14561 array_type = TREE_TYPE (array_type); 14594 array_type = TYPE_ARRAY_ELEMENT (array_type); 14603 TREE_TYPE (node) = array_type; 14627 tree cdim, array_type; local 14690 array_type = type; 14693 type = array_type; 14694 array_type [all …]
|
H A D | parse.c | 18118 tree array_type = TREE_TYPE (array); local 18126 array_type = TREE_TYPE (array_type); 18129 if (!TYPE_ARRAY_P (array_type)) 18159 array_type = TYPE_ARRAY_ELEMENT (array_type); 18168 TREE_TYPE (node) = array_type; 18192 tree cdim, array_type; local 18255 array_type = type; 18258 type = array_type; 18259 array_type 18264 array_type = promote_type (array_type); [all …]
|
H A D | jcf-write.c | 2467 tree array_type = TREE_TYPE (TREE_TYPE (exp)); local 2468 tree element_type = TYPE_ARRAY_ELEMENT (array_type); 2469 HOST_WIDE_INT length = java_array_type_length (array_type);
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | valops.c | 2731 struct type *array_type; in value_slice() local 2732 array_type = check_typedef (VALUE_TYPE (array)); in value_slice() 2733 COERCE_VARYING_ARRAY (array, array_type); in value_slice() 2734 if (TYPE_CODE (array_type) != TYPE_CODE_ARRAY in value_slice() 2735 && TYPE_CODE (array_type) != TYPE_CODE_STRING in value_slice() 2736 && TYPE_CODE (array_type) != TYPE_CODE_BITSTRING) in value_slice() 2738 range_type = TYPE_INDEX_TYPE (array_type); in value_slice() 2749 if (TYPE_CODE (array_type) == TYPE_CODE_BITSTRING) in value_slice() 2757 int element = value_bit_index (array_type, in value_slice() 2776 struct type *element_type = TYPE_TARGET_TYPE (array_type); in value_slice() [all …]
|
H A D | gdbtypes.c | 839 struct type *array_type; in init_simd_type() local 842 array_type = create_array_type (0, elt_type, in init_simd_type() 845 append_composite_type_field (simd_type, elt_name, array_type); in init_simd_type() 852 struct type *array_type; in init_vector_type() local 854 array_type = create_array_type (0, elt_type, in init_vector_type() 857 TYPE_FLAGS (array_type) |= TYPE_FLAG_VECTOR; in init_vector_type() 858 return array_type; in init_vector_type()
|
H A D | valarith.c | 261 struct type *array_type = check_typedef (VALUE_TYPE (array)); in value_subscripted_rvalue() local 262 struct type *elt_type = check_typedef (TYPE_TARGET_TYPE (array_type)); in value_subscripted_rvalue() 268 if (index < lowerbound || elt_offs >= TYPE_LENGTH (array_type)) in value_subscripted_rvalue()
|
H A D | eval.c | 2260 calc_f77_array_dims (struct type *array_type) in calc_f77_array_dims() argument 2265 if ((TYPE_CODE (array_type) != TYPE_CODE_ARRAY)) in calc_f77_array_dims() 2268 tmp_type = array_type; in calc_f77_array_dims()
|
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | c-bounded.c | 434 tree array_type = TREE_TYPE (TREE_TYPE (buf_expr)); local 435 tree array_type_size_expr = TYPE_SIZE (array_type);
|
H A D | tree.def | 202 The field TYPE_POINTER_TO (TREE_TYPE (array_type)) is always nonzero 207 DEFTREECODE (ARRAY_TYPE, "array_type", 't', 0)
|
/openbsd/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCTypeEncodingParser.cpp | 159 CompilerType array_type(ast_ctx.CreateArrayType( in BuildArray() local 162 return ClangUtil::GetQualType(array_type); in BuildArray()
|
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | PDBASTParser.cpp | 669 auto array_type = llvm::dyn_cast<PDBSymbolTypeArray>(&type); in CreateLLDBTypeFromPDBType() local 670 assert(array_type); in CreateLLDBTypeFromPDBType() 671 uint32_t num_elements = array_type->getCount(); in CreateLLDBTypeFromPDBType() 672 uint32_t element_uid = array_type->getElementTypeId(); in CreateLLDBTypeFromPDBType() 674 if (uint64_t size = array_type->getLength()) in CreateLLDBTypeFromPDBType() 701 array_type->getSymIndexId(), ConstString(), bytes, nullptr, in CreateLLDBTypeFromPDBType()
|
/openbsd/gnu/usr.bin/binutils/binutils/ |
H A D | debug.h | 235 bfd_boolean (*array_type) member
|
/openbsd/gnu/usr.bin/binutils-2.17/binutils/ |
H A D | debug.h | 235 bfd_boolean (*array_type) member
|
/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangASTImporter.cpp | 703 if (const ArrayType *array_type = type->getAsArrayTypeUnsafe()) in RequireCompleteType() local 704 return RequireCompleteType(array_type->getElementType()); in RequireCompleteType()
|