Searched refs:elt_type (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.0-release/contrib/gcc/cp/
H A Dinit.c1593 tree elt_type;
1663 for (elt_type = type;
1664 TREE_CODE (elt_type) == ARRAY_TYPE;
1665 elt_type = TREE_TYPE (elt_type))
1667 array_type_nelts_top (elt_type));
1669 if (TREE_CODE (elt_type) == VOID_TYPE)
1675 if (abstract_virtuals_error (NULL_TREE, elt_type))
1678 is_initialized = (TYPE_NEEDS_CONSTRUCTING (elt_type) || init);
1679 if (CP_TYPE_CONST_P (elt_type)
1591 tree elt_type; local
[all...]
H A Dtree.c412 build_cplus_array_type_1 (tree elt_type, tree index_type)
416 if (elt_type == error_mark_node || index_type == error_mark_node)
419 if (dependent_type_p (elt_type)
424 TREE_TYPE (t) = elt_type;
428 t = build_array_type (elt_type, index_type);
433 = TYPE_NEEDS_CONSTRUCTING (TYPE_MAIN_VARIANT (elt_type));
435 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TYPE_MAIN_VARIANT (elt_type));
440 build_cplus_array_type (tree elt_type, tree index_type)
443 int type_quals = cp_type_quals (elt_type);
446 elt_type
411 build_cplus_array_type_1(tree elt_type, tree index_type) argument
439 build_cplus_array_type(tree elt_type, tree index_type) argument
[all...]
H A Ddecl.c4440 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d)
4472 elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false);
5875 tree type, elt_type;
5907 elt_type = TREE_TYPE (type);
5908 TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
5910 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
4428 reshape_init_array_1(tree elt_type, tree max_index, reshape_iter *d) argument
5862 tree type, elt_type; local
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dada-lang.c1079 struct type *elt_type;
1084 elt_type = ada_array_element_type (VALUE_TYPE (arr), -1);
1087 if (elt_type == NULL || arity == 0)
1104 elt_type = create_array_type (array_type, elt_type, range_type);
1107 return lookup_pointer_type (elt_type);
1297 struct type *elt_type;
1302 elt_type = check_typedef (VALUE_TYPE (arr));
1305 if (TYPE_CODE (elt_type) != TYPE_CODE_ARRAY
1306 || TYPE_FIELD_BITSIZE (elt_type,
1075 struct type *elt_type; local
1293 struct type *elt_type; local
1639 struct type *elt_type; local
6270 struct type *elt_type = ada_to_fixed_type (elt_type0, 0, 0, dval); local
[all...]
H A Dvalarith.c261 struct type *elt_type = check_typedef (TYPE_TARGET_TYPE (array_type));
262 unsigned int elt_size = TYPE_LENGTH (elt_type);
270 v = allocate_value (elt_type);
260 struct type *elt_type = check_typedef (TYPE_TARGET_TYPE (array_type)); local
H A Dgdbtypes.c829 struct type *elt_type,
837 array_type = create_array_type (0, elt_type,
845 init_vector_type (struct type *elt_type, int n) argument
849 array_type = create_array_type (0, elt_type,
828 init_simd_type(char *name, struct type *elt_type, char *elt_name, int n) argument
/freebsd-10.0-release/contrib/gcc/
H A Dtree-ssa-ccp.c1543 tree array_type, elt_type, elt_size; local
1567 elt_type = TREE_TYPE (array_type);
1568 if (!lang_hooks.types_compatible_p (orig_type, elt_type))
1575 elt_size = TYPE_SIZE_UNIT (elt_type);
1579 elt_size = size_int (TYPE_ALIGN (elt_type));
1884 tree elt_type = TREE_TYPE (op0); local
1885 tree elt_size = TYPE_SIZE_UNIT (elt_type);
H A Dconvert.c767 tree elt_type = TREE_TYPE (TREE_TYPE (expr)); local
769 if (TYPE_MAIN_VARIANT (elt_type) == TYPE_MAIN_VARIANT (subtype))
H A Dtree.c5212 build_array_type (tree elt_type, tree index_type)
5217 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
5220 elt_type = integer_type_node;
5224 TREE_TYPE (t) = elt_type;
5230 hashcode = iterative_hash_object (TYPE_HASH (elt_type), hashcode);
5237 hashcode = iterative_hash_object (TYPE_HASH (elt_type), hashcode);
5188 build_array_type(tree elt_type, tree index_type) argument

Completed in 347 milliseconds