Home
last modified time | relevance | path

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

12345678910>>...98

/mirbsd/src/gnu/usr.bin/binutils/gdb/
Dgdbtypes.h374 struct type *target_type;
451 struct type *type; member
472 struct type *vptr_basetype;
494 struct type struct
501 struct type *pointer_type; argument
505 struct type *reference_type; argument
512 struct type *chain; argument
548 #define NULL_TYPE ((struct type *) 0)
661 struct type *type; member
666 struct type *fcontext;
[all …]
Dgdbtypes.c44 struct type *builtin_type_void;
45 struct type *builtin_type_char;
46 struct type *builtin_type_true_char;
47 struct type *builtin_type_short;
48 struct type *builtin_type_int;
49 struct type *builtin_type_long;
50 struct type *builtin_type_long_long;
51 struct type *builtin_type_signed_char;
52 struct type *builtin_type_unsigned_char;
53 struct type *builtin_type_unsigned_short;
[all …]
Dada-typeprint.c42 static int print_record_field_types (struct type *, struct type *,
45 static void print_array_type (struct type *, struct ui_file *, int, int);
47 static void print_choices (struct type *, int, struct ui_file *,
48 struct type *);
50 static void print_range (struct type *, struct ui_file *);
52 static void print_range_bound (struct type *, char *, int *,
56 print_dynamic_range_bound (struct type *, const char *, int,
70 decoded_type_name (struct type *type) in decoded_type_name() argument
72 if (ada_type_name (type) == NULL) in decoded_type_name()
76 char *raw_name = ada_type_name (type); in decoded_type_name()
[all …]
Dc-typeprint.c41 static void cp_type_print_method_args (struct type *mtype, char *prefix,
45 static void c_type_print_args (struct type *, struct ui_file *);
47 static void cp_type_print_derivation_info (struct ui_file *, struct type *);
49 static void c_type_print_varspec_prefix (struct type *, struct ui_file *, int,
53 static void c_type_print_modifier (struct type *, struct ui_file *,
62 c_print_type (struct type *type, char *varstring, struct ui_file *stream, in c_print_type() argument
70 CHECK_TYPEDEF (type); in c_print_type()
72 c_type_print_base (type, stream, show, level); in c_print_type()
73 code = TYPE_CODE (type); in c_print_type()
78 ((show > 0 || TYPE_NAME (type) == 0) in c_print_type()
[all …]
Dada-lang.h179 extern int ada_get_field_index (const struct type *type,
188 extern void ada_print_type (struct type *, char *, struct ui_file *, int,
191 extern int ada_val_print (struct type *, const gdb_byte *, int, CORE_ADDR,
200 extern struct value *value_from_contents_and_address (struct type *,
217 extern struct type *ada_array_element_type (struct type *, int);
219 extern int ada_array_arity (struct type *);
221 struct type *ada_type_of_array (struct value *, int);
225 extern int ada_is_simple_array_type (struct type *);
227 extern int ada_is_array_descriptor_type (struct type *);
229 extern int ada_is_bogus_array_descriptor (struct type *);
[all …]
Dp-typeprint.c40 static void pascal_type_print_varspec_suffix (struct type *, struct ui_file *, int, int, int);
42 static void pascal_type_print_derivation_info (struct ui_file *, struct type *);
44 void pascal_type_print_varspec_prefix (struct type *, struct ui_file *, int, int);
50 pascal_print_type (struct type *type, char *varstring, struct ui_file *stream, in pascal_print_type() argument
56 code = TYPE_CODE (type); in pascal_print_type()
59 CHECK_TYPEDEF (type); in pascal_print_type()
64 pascal_type_print_varspec_prefix (type, stream, show, 0); in pascal_print_type()
79 pascal_type_print_varspec_prefix (type, stream, show, 0); in pascal_print_type()
82 pascal_type_print_base (type, stream, show, level); in pascal_print_type()
87 pascal_type_print_varspec_suffix (type, stream, show, 0, demangled_args); in pascal_print_type()
[all …]
Df-typeprint.c41 static void f_type_print_args (struct type *, struct ui_file *);
44 static void print_equivalent_f77_float_type (struct type *,
47 static void f_type_print_varspec_suffix (struct type *, struct ui_file *,
50 void f_type_print_varspec_prefix (struct type *, struct ui_file *,
53 void f_type_print_base (struct type *, struct ui_file *, int, int);
59 f_print_type (struct type *type, char *varstring, struct ui_file *stream, in f_print_type() argument
65 f_type_print_base (type, stream, show, level); in f_print_type()
66 code = TYPE_CODE (type); in f_print_type()
71 ((show > 0 || TYPE_NAME (type) == 0) in f_print_type()
79 f_type_print_varspec_prefix (type, stream, show, 0); in f_print_type()
[all …]
Dax-gdb.c70 static void gen_sign_extend (struct agent_expr *, struct type *);
71 static void gen_extend (struct agent_expr *, struct type *);
72 static void gen_fetch (struct agent_expr *, struct type *);
86 LONGEST k, struct type *type);
91 static int type_wider_than (struct type *type1, struct type *type2);
92 static struct type *max_type (struct type *type1, struct type *type2);
94 struct type *from, struct type *to);
95 static int is_nontrivial_conversion (struct type *from, struct type *to);
102 struct axs_value *value, struct type *type);
104 enum agent_op op, struct type *type);
[all …]
Dada-valprint.c41 struct type *type; member
52 static void print_record (struct type *, const gdb_byte *, struct ui_file *,
55 static int print_field_values (struct type *, const gdb_byte *,
57 enum val_prettyprint, int, struct type *,
60 static void adjust_type_signedness (struct type *);
64 static int ada_val_print_1 (struct type *, const gdb_byte *, int, CORE_ADDR,
71 adjust_type_signedness (struct type *type) in adjust_type_signedness() argument
73 if (type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE in adjust_type_signedness()
74 && TYPE_LOW_BOUND (type) >= 0) in adjust_type_signedness()
75 TYPE_FLAGS (type) |= TYPE_FLAG_UNSIGNED; in adjust_type_signedness()
[all …]
Dada-lang.c71 static struct type *ada_create_fundamental_type (struct objfile *, int);
75 static struct type *desc_base_type (struct type *);
77 static struct type *desc_bounds_type (struct type *);
81 static int fat_pntr_bounds_bitpos (struct type *);
83 static int fat_pntr_bounds_bitsize (struct type *);
85 static struct type *desc_data_type (struct type *);
89 static int fat_pntr_data_bitpos (struct type *);
91 static int fat_pntr_data_bitsize (struct type *);
95 static int desc_bound_bitpos (struct type *, int, int);
97 static int desc_bound_bitsize (struct type *, int, int);
[all …]
Dcp-valprint.c80 static void cp_print_static_field (struct type *, struct value *,
84 static void cp_print_value (struct type *, struct type *, const gdb_byte *,
86 enum val_prettyprint, struct type **);
88 static void cp_print_hpacc_virtual_table_entries (struct type *, int *,
97 struct type *type, in cp_print_class_method() argument
100 struct type *domain; in cp_print_class_method()
110 struct type *target_type = check_typedef (TYPE_TARGET_TYPE (type)); in cp_print_class_method()
113 if (domain == (struct type *) NULL) in cp_print_class_method()
118 addr = unpack_pointer (type, valaddr); in cp_print_class_method()
188 type_print (type, "", stream, -1); in cp_print_class_method()
[all …]
Dp-valprint.c60 pascal_val_print (struct type *type, const gdb_byte *valaddr, in pascal_val_print() argument
67 struct type *elttype; in pascal_val_print()
74 CHECK_TYPEDEF (type); in pascal_val_print()
75 switch (TYPE_CODE (type)) in pascal_val_print()
78 if (TYPE_LENGTH (type) > 0 && TYPE_LENGTH (TYPE_TARGET_TYPE (type)) > 0) in pascal_val_print()
80 elttype = check_typedef (TYPE_TARGET_TYPE (type)); in pascal_val_print()
82 len = TYPE_LENGTH (type) / eltlen; in pascal_val_print()
125 val_print_array_elements (type, valaddr + embedded_offset, address, stream, in pascal_val_print()
138 print_scalar_formatted (valaddr + embedded_offset, type, format, 0, stream); in pascal_val_print()
141 if (vtblprint && pascal_object_is_vtbl_ptr_type (type)) in pascal_val_print()
[all …]
Dc-valprint.c73 c_val_print (struct type *type, const gdb_byte *valaddr, int embedded_offset, in c_val_print() argument
79 struct type *elttype; in c_val_print()
84 CHECK_TYPEDEF (type); in c_val_print()
85 switch (TYPE_CODE (type)) in c_val_print()
88 elttype = check_typedef (TYPE_TARGET_TYPE (type)); in c_val_print()
89 if (TYPE_LENGTH (type) > 0 && TYPE_LENGTH (TYPE_TARGET_TYPE (type)) > 0) in c_val_print()
92 len = TYPE_LENGTH (type) / eltlen; in c_val_print()
135 val_print_array_elements (type, valaddr + embedded_offset, address, stream, in c_val_print()
148 print_scalar_formatted (valaddr + embedded_offset, type, format, 0, stream); in c_val_print()
151 if (vtblprint && cp_is_vtbl_ptr_type (type)) in c_val_print()
[all …]
Djv-typeprint.c35 static void java_type_print_base (struct type * type,
40 java_type_print_derivation_info (struct ui_file *stream, struct type *type) in java_type_print_derivation_info() argument
47 n_bases = TYPE_N_BASECLASSES (type); in java_type_print_derivation_info()
53 kind = BASETYPE_VIA_VIRTUAL (type, i) ? 'I' : 'E'; in java_type_print_derivation_info()
60 name = type_name_no_tag (TYPE_BASECLASS (type, i)); in java_type_print_derivation_info()
86 java_type_print_base (struct type *type, struct ui_file *stream, int show, in java_type_print_base() argument
97 if (type == NULL) in java_type_print_base()
107 && TYPE_NAME (type) != NULL) in java_type_print_base()
109 fputs_filtered (TYPE_NAME (type), stream); in java_type_print_base()
113 CHECK_TYPEDEF (type); in java_type_print_base()
[all …]
Djv-valprint.c43 struct type *type; in java_value_print() local
48 type = value_type (val); in java_value_print()
51 if (is_object_type (type)) in java_value_print()
57 obj_addr = unpack_pointer (type, value_contents (val)); in java_value_print()
61 type = type_from_class (java_class_from_object (val)); in java_value_print()
62 type = lookup_pointer_type (type); in java_value_print()
64 val = value_at (type, address); in java_value_print()
68 if (TYPE_CODE (type) == TYPE_CODE_PTR && !value_logical_not (val)) in java_value_print()
69 type_print (TYPE_TARGET_TYPE (type), "", stream, -1); in java_value_print()
71 name = TYPE_TAG_NAME (type); in java_value_print()
[all …]
Df-valprint.c47 static void f77_create_arrayprint_offset_tbl (struct type *,
49 static void f77_get_dynamic_length_of_aggregate (struct type *);
66 f77_get_dynamic_lowerbound (struct type *type, int *lower_bound) in f77_get_dynamic_lowerbound() argument
71 switch (TYPE_ARRAY_LOWER_BOUND_TYPE (type)) in f77_get_dynamic_lowerbound()
79 TYPE_ARRAY_LOWER_BOUND_VALUE (type), in f77_get_dynamic_lowerbound()
90 *lower_bound = TYPE_ARRAY_LOWER_BOUND_VALUE (type); in f77_get_dynamic_lowerbound()
103 TYPE_ARRAY_LOWER_BOUND_VALUE (type), in f77_get_dynamic_lowerbound()
124 f77_get_dynamic_upperbound (struct type *type, int *upper_bound) in f77_get_dynamic_upperbound() argument
129 switch (TYPE_ARRAY_UPPER_BOUND_TYPE (type)) in f77_get_dynamic_upperbound()
137 TYPE_ARRAY_UPPER_BOUND_VALUE (type), in f77_get_dynamic_upperbound()
[all …]
Dtypeprint.c48 static struct type *ptype_eval (struct expression *);
59 typedef_print (struct type *type, struct symbol *new, struct ui_file *stream) in typedef_print() argument
61 CHECK_TYPEDEF (type); in typedef_print()
68 type_print (type, "", stream, 0); in typedef_print()
82 type_print (type, "", stream, 0); in typedef_print()
89 type_print (type, "", stream, 0); in typedef_print()
106 type_print (struct type *type, char *varstring, struct ui_file *stream, in type_print() argument
109 LA_PRINT_TYPE (type, varstring, stream, show, 0); in type_print()
121 struct type *real_type = NULL; in whatis_exp()
122 struct type *type; in whatis_exp() local
[all …]
Dvalue.h34 struct type;
52 extern struct type *value_type (struct value *);
59 struct type *type);
131 extern struct type *value_enclosing_type (struct value *);
133 struct type *new_type);
265 extern LONGEST unpack_long (struct type *type, const gdb_byte *valaddr);
266 extern DOUBLEST unpack_double (struct type *type, const gdb_byte *valaddr,
268 extern CORE_ADDR unpack_pointer (struct type *type, const gdb_byte *valaddr);
269 extern LONGEST unpack_field_as_long (struct type *type,
273 extern struct value *value_from_longest (struct type *type, LONGEST num);
[all …]
Dstabsread.c91 struct type *, struct objfile *);
93 static struct type *dbx_alloc_type (int[2], struct objfile *);
97 static struct type *error_type (char **, struct objfile *);
107 static struct type *read_type (char **, struct objfile *);
109 static struct type *read_range_type (char **, int[2], int, struct objfile *);
111 static struct type *read_sun_builtin_type (char **, int[2], struct objfile *);
113 static struct type *read_sun_floating_type (char **, int[2],
116 static struct type *read_enum_type (char **, struct type *, struct objfile *);
118 static struct type *rs6000_builtin_type (int);
121 read_member_functions (struct field_info *, char **, struct type *,
[all …]
Djv-lang.c43 struct type *java_int_type;
44 struct type *java_byte_type;
45 struct type *java_short_type;
46 struct type *java_long_type;
47 struct type *java_boolean_type;
48 struct type *java_char_type;
49 struct type *java_float_type;
50 struct type *java_double_type;
51 struct type *java_void_type;
75 static struct type *java_link_class_type (struct type *, struct value *);
[all …]
Dvalops.c57 struct type *, int);
61 int, int *, struct type *);
63 static int find_oload_champ_namespace (struct type **arg_types, int nargs,
70 int find_oload_champ_namespace_loop (struct type **arg_types, int nargs,
78 static int find_oload_champ (struct type **arg_types, int nargs, int method,
95 static int check_field_in (struct type *, const char *);
97 static struct value *value_struct_elt_for_reference (struct type *domain,
99 struct type *curtype,
101 struct type *intype,
104 static struct value *value_namespace_elt (const struct type *curtype,
[all …]
/mirbsd/src/etc/mtree/
Dspecial8 . type=dir mode=0755 uname=root gname=wheel
9 .profile type=file mode=0600 uname=root gname=wheel
11 dev type=dir mode=0755 uname=root gname=wheel
12 drum type=char mode=0640 uname=root gname=kmem
13 fd type=dir mode=0555 uname=root gname=wheel ignore
15 kmem type=char mode=0640 uname=root gname=kmem
16 mem type=char mode=0640 uname=root gname=kmem
19 etc type=dir mode=0755 uname=root gname=wheel
20 bgpd.conf type=file mode=0600 uname=root gname=wheel optional
21 chio.conf type=file mode=0600 uname=root gname=wheel optional
[all …]
/mirbsd/src/usr.bin/telnet/
Dencrypt.c147 findencryption(int type) in findencryption() argument
151 if (!(I_SUPPORT_ENCRYPT & remote_supports_decrypt & typemask(type))) in findencryption()
153 while (ep->type && ep->type != type) in findencryption()
155 return(ep->type ? ep : 0); in findencryption()
159 finddecryption(int type) in finddecryption() argument
163 if (!(I_SUPPORT_DECRYPT & remote_supports_encrypt & typemask(type))) in finddecryption()
165 while (ep->type && ep->type != type) in finddecryption()
167 return(ep->type ? ep : 0); in finddecryption()
202 while (ep->type) { in encrypt_init()
205 Name, ENCTYPE_NAME(ep->type)); in encrypt_init()
[all …]
/mirbsd/src/lib/libm/src/
Dk_standard.c89 __kernel_standard(double x, double y, int type) in __kernel_standard() argument
104 switch(type) { in __kernel_standard()
108 exc.type = DOMAIN; in __kernel_standard()
109 exc.name = type < 100 ? "acos" : "acosf"; in __kernel_standard()
124 exc.type = DOMAIN; in __kernel_standard()
125 exc.name = type < 100 ? "asin" : "asinf"; in __kernel_standard()
142 exc.type = DOMAIN; in __kernel_standard()
143 exc.name = type < 100 ? "atan2" : "atan2f"; in __kernel_standard()
157 exc.type = OVERFLOW; in __kernel_standard()
158 exc.name = type < 100 ? "hypot" : "hypotf"; in __kernel_standard()
[all …]
/mirbsd/src/usr.bin/less/
Doptfunc.c72 opt_o(type, s) in opt_o() argument
73 int type; in opt_o()
83 switch (type)
120 opt__O(type, s) in opt__O() argument
121 int type; in opt__O()
125 opt_o(type, s);
133 opt_l(type, s) in opt_l() argument
134 int type; in opt_l()
141 switch (type)
159 opt_k(type, s) in opt_k() argument
[all …]

12345678910>>...98