Home
last modified time | relevance | path

Searched refs:type (Results 1 – 25 of 5983) sorted by relevance

12345678910>>...240

/netbsd/src/sys/external/bsd/acpica/dist/compiler/
Dasltypes.y161 %type <n> ArgList
162 %type <n> AslCode
163 %type <n> BufferData
164 %type <n> BufferTermData
165 %type <n> CompilerDirective
166 %type <n> DataObject
167 %type <n> DefinitionBlockTerm
168 %type <n> DefinitionBlockList
169 %type <n> IntegerData
170 %type <n> NamedObject
[all …]
/netbsd/src/external/gpl3/gdb/dist/gdb/
Dm2-typeprint.c37 static void m2_print_bounds (struct type *type,
41 static void m2_typedef (struct type *, struct ui_file *, int, int,
43 static void m2_array (struct type *, struct ui_file *, int, int,
45 static void m2_pointer (struct type *, struct ui_file *, int, int,
47 static void m2_ref (struct type *, struct ui_file *, int, int,
49 static void m2_procedure (struct type *, struct ui_file *, int, int,
51 static void m2_union (struct type *, struct ui_file *);
52 static void m2_enum (struct type *, struct ui_file *, int, int);
53 static void m2_range (struct type *, struct ui_file *, int, int,
55 static void m2_type_name (struct type *type, struct ui_file *stream);
[all …]
Dgdbtypes.c182 set_type_code (struct type *type, enum type_code code) in set_type_code() argument
184 type->set_code (code); in set_type_code()
191 INIT_CPLUS_SPECIFIC (type); in set_type_code()
194 TYPE_SPECIFIC_FIELD (type) = TYPE_SPECIFIC_FLOATFORMAT; in set_type_code()
197 INIT_FUNC_SPECIFIC (type); in set_type_code()
200 INIT_FIXED_POINT_SPECIFIC (type); in set_type_code()
207 type *
211 return m_data.type; in new_type()
218 struct type *type = OBSTACK_ZALLOC (obstack, struct type); in new_type() local
219 TYPE_MAIN_TYPE (type) = OBSTACK_ZALLOC (obstack, struct main_type); in new_type()
[all …]
Drust-lang.c72 rust_enum_p (struct type *type) in rust_enum_p() argument
76 return TYPE_HAS_VARIANT_PARTS (type); in rust_enum_p()
83 rust_empty_enum_p (const struct type *type) in rust_empty_enum_p() argument
85 return type->num_fields () == 0; in rust_empty_enum_p()
92 rust_enum_variant (struct type *type) in rust_enum_variant() argument
95 for (int i = 0; i < type->num_fields (); ++i) in rust_enum_variant()
96 if (!type->field (i).is_artificial ()) in rust_enum_variant()
108 rust_tuple_type_p (struct type *type) in rust_tuple_type_p() argument
113 return (type->code () == TYPE_CODE_STRUCT in rust_tuple_type_p()
114 && type->name () != NULL in rust_tuple_type_p()
[all …]
Dgdbarch_components.py118 type="const struct bfd_arch_info *",
124 type="enum bfd_endian",
129 type="enum bfd_endian",
134 type="enum gdb_osabi",
139 type="const struct target_desc *",
148 type="int",
158 type="int",
169 type="int",
180 type="int",
194 type="int",
[all …]
Dgdbtypes.h300 struct type *original_type;
392 struct type *original_type () const in original_type()
399 void set_original_type (struct type *original_type) in set_original_type()
561 struct type *type () const in type() function
566 void set_type (struct type *type) in set_type()
568 this->m_type = type; in set_type()
757 struct type *m_type;
855 struct type *self_type;
970 struct type *m_target_type;
998 struct type *complex_type;
[all …]
Dada-typeprint.c30 static int print_selected_record_field_types (struct type *, struct type *,
35 static int print_record_field_types (struct type *, struct type *,
48 decoded_type_name (struct type *type) in decoded_type_name() argument
50 if (ada_type_name (type) == NULL) in decoded_type_name()
54 const char *raw_name = ada_type_name (type); in decoded_type_name()
100 type_is_full_subrange_of_target_type (struct type *type) in type_is_full_subrange_of_target_type() argument
102 struct type *subtype; in type_is_full_subrange_of_target_type()
104 if (type->code () != TYPE_CODE_RANGE) in type_is_full_subrange_of_target_type()
107 subtype = type->target_type (); in type_is_full_subrange_of_target_type()
111 if (is_dynamic_type (type)) in type_is_full_subrange_of_target_type()
[all …]
Df-typeprint.c39 f_language::print_typedef (struct type *type, struct symbol *new_symbol, in print_typedef() argument
42 type = check_typedef (type); in print_typedef()
43 print_type (type, "", stream, 0, 0, &type_print_raw_options); in print_typedef()
49 f_language::print_type (struct type *type, const char *varstring, in print_type() argument
55 f_type_print_base (type, stream, show, level); in print_type()
56 code = type->code (); in print_type()
61 || type->name () == 0) in print_type()
67 && (type->target_type ()->code () == TYPE_CODE_FUNC in print_type()
68 || (type->target_type ()->code () in print_type()
70 || (type->target_type ()->code () in print_type()
[all …]
Dc-typeprint.c36 static void c_type_print_varspec_suffix (struct type *, struct ui_file *, int,
41 static void c_type_print_varspec_prefix (struct type *,
49 static void c_type_print_modifier (struct type *,
53 static void c_type_print_base_1 (struct type *type, struct ui_file *stream,
63 find_typedef_for_canonicalize (struct type *t, void *data) in find_typedef_for_canonicalize()
92 c_print_type_1 (struct type *type, in c_print_type_1() argument
106 type = check_typedef (type); in c_print_type_1()
108 local_name = typedef_hash_table::find_typedef (flags, type); in c_print_type_1()
109 code = type->code (); in c_print_type_1()
112 c_type_print_modifier (type, stream, 0, 1, language); in c_print_type_1()
[all …]
Dp-typeprint.c40 pascal_language::print_type (struct type *type, const char *varstring, in print_type() argument
47 code = type->code (); in print_type()
50 type = check_typedef (type); in print_type()
55 type_print_varspec_prefix (type, stream, show, 0, flags); in print_type()
71 type_print_varspec_prefix (type, stream, show, 0, flags); in print_type()
74 type_print_base (type, stream, show, level, flags); in print_type()
79 type_print_varspec_suffix (type, stream, show, 0, demangled_args, in print_type()
87 pascal_language::print_typedef (struct type *type, struct symbol *new_symbol, in print_typedef() argument
90 type = check_typedef (type); in print_typedef()
93 type_print (type, "", stream, 0); in print_typedef()
[all …]
Dada-lang.h152 extern int ada_get_field_index (const struct type *type,
159 extern void ada_print_type (struct type *, const char *, struct ui_file *, int,
162 extern void ada_print_typedef (struct type *type, struct symbol *new_symbol,
175 extern void ada_emit_char (int, struct type *, struct ui_file *, int, int);
177 extern void ada_printchar (int, struct type *, struct ui_file *);
179 extern void ada_printstr (struct ui_file *, struct type *, const gdb_byte *,
184 struct type *formal_type0);
186 extern bool ada_is_access_to_unconstrained_array (struct type *type);
191 extern void ada_fixup_array_indexes_type (struct type *index_desc_type);
193 extern struct type *ada_array_element_type (struct type *, int);
[all …]
Dc-varobj.c23 static void cplus_class_num_children (struct type *type, int children[3]);
65 struct type **type, in adjust_value_for_child_access() argument
69 gdb_assert (type && *type); in adjust_value_for_child_access()
74 *type = check_typedef (*type); in adjust_value_for_child_access()
80 gdb_assert (!TYPE_IS_REFERENCE (*type)); in adjust_value_for_child_access()
85 if ((*type)->code () == TYPE_CODE_PTR) in adjust_value_for_child_access()
87 struct type *target_type = get_target_type (*type); in adjust_value_for_child_access()
104 *type = target_type; in adjust_value_for_child_access()
117 struct type *enclosing_type; in adjust_value_for_child_access()
123 *type = enclosing_type; in adjust_value_for_child_access()
[all …]
Dada-lang.c67 static struct type *desc_base_type (struct type *);
69 static struct type *desc_bounds_type (struct type *);
73 static int fat_pntr_bounds_bitpos (struct type *);
75 static int fat_pntr_bounds_bitsize (struct type *);
77 static struct type *desc_data_target_type (struct type *);
81 static int fat_pntr_data_bitpos (struct type *);
83 static int fat_pntr_data_bitsize (struct type *);
87 static int desc_bound_bitpos (struct type *, int, int);
89 static int desc_bound_bitsize (struct type *, int, int);
91 static struct type *desc_index_type (struct type *, int);
[all …]
Deval.c102 expression::evaluate (struct type *expect_type, enum noside noside) in evaluate()
224 struct type *type1; in unop_promote()
227 type1 = check_typedef ((*arg1)->type ()); in unop_promote()
238 struct type *builtin_int = builtin_type (gdbarch)->builtin_int; in unop_promote()
257 struct type *promoted_type = NULL; in binop_promote()
258 struct type *type1; in binop_promote()
259 struct type *type2; in binop_promote()
264 type1 = check_typedef ((*arg1)->type ()); in binop_promote()
265 type2 = check_typedef ((*arg2)->type ()); in binop_promote()
413 ptrmath_type_p (const struct language_defn *lang, struct type *type) in ptrmath_type_p() argument
[all …]
Dm2-valprint.c32 static int print_unpacked_pointer (struct type *type,
47 get_long_set_bounds (struct type *type, LONGEST *low, LONGEST *high) in get_long_set_bounds() argument
51 if (type->code () == TYPE_CODE_STRUCT) in get_long_set_bounds()
53 len = type->num_fields (); in get_long_set_bounds()
54 i = TYPE_N_BASECLASSES (type); in get_long_set_bounds()
57 *low = type->field (i).type ()->bounds ()->low.const_val (); in get_long_set_bounds()
58 *high = type->field (len - 1).type ()->bounds ()->high.const_val (); in get_long_set_bounds()
66 m2_print_long_set (struct type *type, const gdb_byte *valaddr, in m2_print_long_set() argument
76 struct type *range; in m2_print_long_set()
78 struct type *target; in m2_print_long_set()
[all …]
Dada-valprint.c47 print_optional_low_bound (struct ui_file *stream, struct type *type, in print_optional_low_bound() argument
50 struct type *index_type; in print_optional_low_bound()
57 if (!get_array_bounds (type, &low_bound, &high_bound)) in print_optional_low_bound()
66 index_type = type->index_type (); in print_optional_low_bound()
112 val_print_packed_array_elements (struct type *type, const gdb_byte *valaddr, in val_print_packed_array_elements() argument
120 struct type *elttype, *index_type; in val_print_packed_array_elements()
121 unsigned long bitsize = type->field (0).bitsize (); in val_print_packed_array_elements()
126 elttype = type->target_type (); in val_print_packed_array_elements()
127 index_type = type->index_type (); in val_print_packed_array_elements()
199 if (check_typedef (v0->type ())->length () in val_print_packed_array_elements()
[all …]
/netbsd/src/external/bsd/openldap/dist/include/
Dldap_cdefs.h135 # define LBER_F(type) extern __declspec(dllimport) type argument
136 # define LBER_V(type) extern __declspec(dllimport) type argument
138 # define LBER_F(type) extern type argument
139 # define LBER_V(type) extern type argument
146 # define LDAP_F(type) extern __declspec(dllimport) type argument
147 # define LDAP_V(type) extern __declspec(dllimport) type argument
149 # define LDAP_F(type) extern type argument
150 # define LDAP_V(type) extern type argument
155 # define LDAP_AVL_F(type) extern __declspec(dllimport) type argument
156 # define LDAP_AVL_V(type) extern __declspec(dllimport) type argument
[all …]
/netbsd/src/external/gpl3/gcc/dist/libobjc/
Dencoding.c198 objc_skip_variable_name (const char *type) in objc_skip_variable_name() argument
201 if (*type == '"') in objc_skip_variable_name()
206 type++; in objc_skip_variable_name()
208 while (*type != '"') in objc_skip_variable_name()
209 type++; in objc_skip_variable_name()
211 type++; in objc_skip_variable_name()
214 return type; in objc_skip_variable_name()
218 objc_sizeof_type (const char *type) in objc_sizeof_type() argument
220 type = objc_skip_variable_name (type); in objc_sizeof_type()
222 switch (*type) { in objc_sizeof_type()
[all …]
/netbsd/src/etc/mtree/
Dspecial18 . type=dir mode=0755
20 ./boot.cfg type=file mode=0644 optional
22 ./dev type=dir mode=0755
23 ./dev/drum type=char mode=0640 gname=kmem
24 ./dev/fd type=dir mode=0755 ignore
25 ./dev/kmem type=char mode=0640 gname=kmem
26 ./dev/mem type=char mode=0640 gname=kmem
28 ./etc type=dir mode=0755
29 ./etc/Distfile type=file mode=0644 optional
30 ./etc/amd type=dir mode=0755 optional
[all …]
/netbsd/src/external/ibm-public/postfix/dist/src/util/
Dcheck_arg.h93 #define CHECK_VAL(tag, type, v) check_val_##tag##type(v) argument
94 #define CHECK_PTR(tag, type, v) check_ptr_##tag##type(v) argument
95 #define CHECK_CPTR(tag, type, v) check_cptr_##tag##type(v) argument
96 #define CHECK_PPTR(tag, type, v) check_pptr_##tag##type(v) argument
101 #define CHECK_VAL_HELPER_DCL(tag, type) \ argument
102 static inline type check_val_##tag##type(type v) { return v; }
103 #define CHECK_PTR_HELPER_DCL(tag, type) \ argument
104 static inline type *check_ptr_##tag##type(type *v) { return v; }
105 #define CHECK_CPTR_HELPER_DCL(tag, type) \ argument
106 static inline const type *check_cptr_##tag##type(const type *v) \
[all …]
/netbsd/src/external/gpl3/gdb/dist/gdb/python/
Dpy-type.c34 struct type *type; member
134 struct type *type = ((type_object *) self)->type; in typy_get_code() local
136 return gdb_py_object_from_longest (type->code ()).release (); in typy_get_code()
143 convert_field (struct type *type, int field) in convert_field() argument
150 gdbpy_ref<> arg (type_to_type_object (type)); in convert_field()
156 if (!type->field (field).is_static ()) in convert_field()
160 if (type->code () == TYPE_CODE_ENUM) in convert_field()
162 arg = gdb_py_object_from_longest (type->field (field).loc_enumval ()); in convert_field()
167 if (type->field (field).loc_kind () == FIELD_LOC_KIND_DWARF_BLOCK) in convert_field()
170 arg = gdb_py_object_from_longest (type->field (field).loc_bitpos ()); in convert_field()
[all …]
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.opencl/
Dvec_comps.exp59 proc check_basic { name type size } {
60 gdb_test "ptype ${name}" "type = ${type}16"
65 proc check_type { name type alttype } {
66 gdb_test "whatis ${name}.lo" "type = ${type}8"
67 gdb_test "whatis ${name}.hi" "type = ${type}8"
68 gdb_test "whatis ${name}.even" "type = ${type}8"
69 gdb_test "whatis ${name}.odd" "type = ${type}8"
73 gdb_test "whatis ${name}.hi.even" "type = ${type}4"
74 gdb_test "whatis ${name}.odd.odd.lo" "type = ${type}2"
75 gdb_test "whatis ${name}.even.hi.lo.odd" "type = ${alttype}|${type}"
[all …]
Doperators.exp54 proc check_basic { name type isfloat } {
60 gdb_test "ptype ${name}a" "type = ${type}"
61 gdb_test "ptype ${name}b" "type = ${type}"
62 gdb_test "ptype ${name}4a" "type = ${type}4"
63 gdb_test "ptype ${name}4b" "type = ${type}4"
70 gdb_test "ptype u${name}a" "type = (unsigned ${type}|u${type})"
71 gdb_test "ptype u${name}b" "type = (unsigned ${type}|u${type})"
72 gdb_test "ptype u${name}4a" "type = u${type}4"
73 gdb_test "ptype u${name}4b" "type = u${type}4"
78 proc check_arithmetic_ops { name type isfloat size } {
[all …]
/netbsd/src/external/bsd/tmux/dist/
Doptions-table.c179 .type = OPTIONS_TABLE_COMMAND, \
188 .type = OPTIONS_TABLE_COMMAND, \
197 .type = OPTIONS_TABLE_COMMAND, \
218 .type = OPTIONS_TABLE_KEY,
225 .type = OPTIONS_TABLE_NUMBER,
235 .type = OPTIONS_TABLE_STRING,
250 .type = OPTIONS_TABLE_STRING,
258 .type = OPTIONS_TABLE_COLOUR,
265 .type = OPTIONS_TABLE_CHOICE,
273 .type = OPTIONS_TABLE_STRING,
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/
Drange-op.cc53 max_limit (const_tree type) in max_limit() argument
55 return wi::max_value (TYPE_PRECISION (type) , TYPE_SIGN (type)); in max_limit()
61 min_limit (const_tree type) in min_limit() argument
63 return wi::min_value (TYPE_PRECISION (type) , TYPE_SIGN (type)); in min_limit()
72 empty_range_varying (irange &r, tree type, in empty_range_varying() argument
77 r.set_varying (type); in empty_range_varying()
89 get_shift_range (irange &r, tree type, const irange &op) in get_shift_range() argument
95 r = value_range (build_int_cst_type (op.type (), 0), in get_shift_range()
96 build_int_cst_type (op.type (), TYPE_PRECISION (type) - 1)); in get_shift_range()
108 wi_includes_zero_p (tree type, const wide_int &wmin, const wide_int &wmax) in wi_includes_zero_p() argument
[all …]

12345678910>>...240