Home
last modified time | relevance | path

Searched refs:array_type (Results 1 – 21 of 21) sorted by relevance

/freebsd-12.1/contrib/gcc/
H A Dcoverage.c611 tree array_type; in build_fn_info_type() local
621 array_type = build_int_cst (NULL_TREE, counters - 1); in build_fn_info_type()
622 array_type = build_index_type (array_type); in build_fn_info_type()
623 array_type = build_array_type (get_gcov_unsigned_t (), array_type); in build_fn_info_type()
626 field = build_decl (FIELD_DECL, NULL_TREE, array_type); in build_fn_info_type()
733 tree array_type; in build_ctr_info_value() local
737 array_type = build_index_type (array_type); in build_ctr_info_value()
739 array_type); in build_ctr_info_value()
741 TREE_TYPE (tree_ctr_tables[counter]) = array_type; in build_ctr_info_value()
850 tree array_type; in build_gcov_info() local
[all …]
H A Dtree-ssa-ccp.c1543 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 Dtree.def207 The field TYPE_POINTER_TO (TREE_TYPE (array_type)) is always nonzero
212 DEFTREECODE (ARRAY_TYPE, "array_type", tcc_type, 0)
/freebsd-12.1/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_dict_helpers.c367 char array_type[10]; in wpa_dbus_dict_begin_array() local
370 err = os_snprintf(array_type, sizeof(array_type), in wpa_dbus_dict_begin_array()
381 array_type, in wpa_dbus_dict_begin_array()
623 entry->array_type = DBUS_TYPE_BYTE; in _wpa_dbus_dict_entry_get_byte_array()
673 DBusMessageIter *iter, int array_type, in _wpa_dbus_dict_entry_get_string_array() argument
681 entry->array_type = DBUS_TYPE_STRING; in _wpa_dbus_dict_entry_get_string_array()
831 switch (array_type) { in _wpa_dbus_dict_entry_get_array()
838 array_type, in _wpa_dbus_dict_entry_get_array()
846 __func__, array_type); in _wpa_dbus_dict_entry_get_array()
984 entry->array_type = DBUS_TYPE_INVALID; in wpa_dbus_dict_get_entry()
[all …]
H A Ddbus_new_handlers_p2p.c35 entry.array_type != DBUS_TYPE_BYTE || in wpas_dbus_validate_dbus_ipaddr()
110 entry.array_type != WPAS_DBUS_TYPE_BINARRAY) in wpas_dbus_handler_p2p_find()
1020 entry.array_type != DBUS_TYPE_BYTE || in wpas_dbus_setter_p2p_device_config()
1031 entry.array_type != WPAS_DBUS_TYPE_BINARRAY || in wpas_dbus_setter_p2p_device_config()
1048 entry.array_type != WPAS_DBUS_TYPE_BINARRAY || in wpas_dbus_setter_p2p_device_config()
2561 entry.array_type != WPAS_DBUS_TYPE_BINARRAY || in wpas_dbus_setter_p2p_group_vendor_ext()
2632 entry.array_type != DBUS_TYPE_BYTE) in wpas_dbus_handler_p2p_add_service()
2639 entry.array_type != DBUS_TYPE_BYTE) in wpas_dbus_handler_p2p_add_service()
2717 entry.array_type != DBUS_TYPE_BYTE) in wpas_dbus_handler_p2p_delete_service()
2805 entry.array_type != DBUS_TYPE_BYTE) in wpas_dbus_handler_p2p_service_sd_req()
[all …]
H A Ddbus_dict_helpers.h116 int array_type; /** the dbus type of the array elements if the dict member
H A Ddbus_new_handlers.c208 entry.array_type == DBUS_TYPE_BYTE) { in set_network_properties()
/freebsd-12.1/contrib/libstdc++/include/ext/
H A Darray_allocator.h101 typedef _Array array_type; typedef
104 array_type* _M_array;
112 array_allocator(array_type* __array = NULL) throw() in throw()
/freebsd-12.1/contrib/gdb/gdb/
H A Dvalops.c2800 struct type *array_type; in value_slice() local
2801 array_type = check_typedef (VALUE_TYPE (array)); in value_slice()
2802 COERCE_VARYING_ARRAY (array, array_type); in value_slice()
2803 if (TYPE_CODE (array_type) != TYPE_CODE_ARRAY in value_slice()
2804 && TYPE_CODE (array_type) != TYPE_CODE_STRING in value_slice()
2805 && TYPE_CODE (array_type) != TYPE_CODE_BITSTRING) in value_slice()
2807 range_type = TYPE_INDEX_TYPE (array_type); in value_slice()
2818 if (TYPE_CODE (array_type) == TYPE_CODE_BITSTRING) in value_slice()
2826 int element = value_bit_index (array_type, in value_slice()
2845 struct type *element_type = TYPE_TARGET_TYPE (array_type); in value_slice()
[all …]
H A Dgdbtypes.c834 struct type *array_type; in init_simd_type() local
837 array_type = create_array_type (0, elt_type, in init_simd_type()
840 append_composite_type_field (simd_type, elt_name, array_type); in init_simd_type()
847 struct type *array_type; in init_vector_type() local
849 array_type = create_array_type (0, elt_type, in init_vector_type()
852 TYPE_FLAGS (array_type) |= TYPE_FLAG_VECTOR; in init_vector_type()
853 return array_type; in init_vector_type()
H A Dvalarith.c259 struct type *array_type = check_typedef (VALUE_TYPE (array)); in value_subscripted_rvalue() local
260 struct type *elt_type = check_typedef (TYPE_TARGET_TYPE (array_type)); in value_subscripted_rvalue()
266 if (index < lowerbound || elt_offs >= TYPE_LENGTH (array_type)) in value_subscripted_rvalue()
H A Deval.c2259 calc_f77_array_dims (struct type *array_type) in calc_f77_array_dims() argument
2264 if ((TYPE_CODE (array_type) != TYPE_CODE_ARRAY)) in calc_f77_array_dims()
2267 tmp_type = array_type; in calc_f77_array_dims()
H A Dada-lang.c1092 struct type *array_type = alloc_type (objf); in ada_type_of_array() local
1100 elt_type = create_array_type (array_type, elt_type, range_type); in ada_type_of_array()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp175 CompilerType array_type(lldb_ctx->CreateArrayType( in BuildArray() local
177 return ClangUtil::GetQualType(array_type); in BuildArray()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp645 auto array_type = llvm::dyn_cast<PDBSymbolTypeArray>(&type); in CreateLLDBTypeFromPDBType() local
646 assert(array_type); in CreateLLDBTypeFromPDBType()
647 uint32_t num_elements = array_type->getCount(); in CreateLLDBTypeFromPDBType()
648 uint32_t element_uid = array_type->getElementTypeId(); in CreateLLDBTypeFromPDBType()
649 uint32_t bytes = array_type->getLength(); in CreateLLDBTypeFromPDBType()
672 array_type->getSymIndexId(), m_ast.GetSymbolFile(), ConstString(), in CreateLLDBTypeFromPDBType()
/freebsd-12.1/contrib/binutils/binutils/
H A Ddebug.h235 bfd_boolean (*array_type) member
H A Ddebug.c2593 return (*fns->array_type) (fhandle, type->u.karray->lower, in debug_write_type()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTImporter.cpp685 if (const ArrayType *array_type = type->getAsArrayTypeUnsafe()) { in RequireCompleteType() local
686 return RequireCompleteType(array_type->getElementType()); in RequireCompleteType()
H A DClangASTContext.cpp2689 const clang::ArrayType *array_type = in GetCompleteQualType() local
2692 if (array_type) in GetCompleteQualType()
2693 return GetCompleteQualType(ast, array_type->getElementType(), in GetCompleteQualType()
/freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/
H A DDwarf.def114 HANDLE_DW_TAG(0x0001, array_type, 2, DWARF)
/freebsd-12.1/contrib/gperf/
H A DChangeLog2069 * src/key-list.{h,cc}: Change type of `Key_List::array_type',