Searched refs:type (Results 76 - 100 of 6116) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/byacc/test/
H A Dbtyacc_destroy1.y7 typedef enum {tREAL, tINTEGER} type;
10 struct symbol { class c; type t; name id; };
21 extern symbol *mksymbol(type t, class c, name id);
33 %type <nlist> declaration
34 %type <nlist> locnamelist
35 %type <cval> class
36 %type <tval> type
37 %type <nlist> namelist
53 type tva
71 type : REAL { $$ = tREAL; } label
[all...]
H A Dbtyacc_destroy2.y7 typedef enum {tREAL, tINTEGER} type;
10 struct symbol { class c; type t; name id; };
21 extern symbol *mksymbol(type t, class c, name id);
33 %type <nlist> declaration
34 %type <nlist> locnamelist
35 %type <cval> class
36 %type <tval> type
37 %type <nlist> namelist
53 type tva
71 type : REAL { $$ = tREAL; } label
[all...]
H A Dbtyacc_destroy3.y10 typedef enum {tREAL, tINTEGER} type;
13 struct symbol { class c; type t; name id; };
24 extern symbol *mksymbol(type t, class c, name id);
36 %type <nlist> declaration
37 %type <nlist> locnamelist
38 %type <cval> class
39 %type <tval> type
40 %type <nlist> namelist
56 type tva
74 type : REAL { $$ = tREAL; } label
[all...]
H A Derr_inherit1.y5 typedef enum {tREAL, tINTEGER} type;
8 struct symbol { class c; type t; name id; };
14 extern symbol *mksymbol(type t, class c, name id);
26 %type <nlist> declaration namelist(<cval>, <tval>) locnamelist(<tval>)
27 %type <cval> class
28 %type <tval> type
42 type tval;
50 declaration: class type namelist($1, $2)
52 | type locnamelis
60 type : REAL { $$ = tREAL; } label
[all...]
H A Dinherit1.y5 typedef enum {tREAL, tINTEGER} type;
8 struct symbol { class c; type t; name id; };
14 extern symbol *mksymbol(type t, class c, name id);
28 %type <nlist> declaration namelist locnamelist
29 %type <cval> class
30 %type <tval> type
35 type tval;
43 declaration: class type namelist
45 | type locnamelis
53 type : REAL { $$ = tREAL; } label
[all...]
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Da_type.c66 if ((a->value.ptr != NULL) || (a->type == V_ASN1_NULL))
67 return (a->type);
72 void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value) argument
78 a->type = type;
79 if (type == V_ASN1_BOOLEAN)
85 int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value) argument
87 if (!value || (type == V_ASN1_BOOLEAN)) {
89 ASN1_TYPE_set(a, type, p);
90 } else if (type
[all...]
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dlist.h64 #define offsetof(type, member) ((long) &((type *) 0)->member)
67 #define dl_list_entry(item, type, member) \
68 ((type *) ((char *) item - offsetof(type, member)))
70 #define dl_list_first(list, type, member) \
72 dl_list_entry((list)->next, type, member))
74 #define dl_list_last(list, type, member) \
76 dl_list_entry((list)->prev, type, member))
78 #define dl_list_for_each(item, list, type, membe
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Djv-lang.c41 struct type *java_int_type;
42 struct type *java_byte_type;
43 struct type *java_short_type;
44 struct type *java_long_type;
45 struct type *java_boolean_type;
46 struct type *java_char_type;
47 struct type *java_float_type;
48 struct type *java_double_type;
49 struct type *java_void_type;
71 static struct type *java_link_class_typ
138 add_class_symbol(struct type *type, CORE_ADDR addr) argument
249 struct type *type; local
333 java_link_class_type(struct type *type, struct value *clas) argument
596 is_object_type(struct type *type) argument
770 java_array_type(struct type *type, int dims) argument
839 struct type *type; local
849 struct type *type; local
[all...]
H A Dcp-abi.h29 struct type;
103 TYPE is the base type of *VALUEP whose method we're invoking ---
104 this is the type containing F. OFFSET is the offset of that base
105 type within *VALUEP. */
108 struct type *type, int offset);
111 /* Try to find the run-time type of VALUE, using C++ run-time type
112 information. Return the run-time type, or zero if we can't figure
115 If we do find the run-time type
[all...]
H A Dp-lang.c37 /* Determines if type TYPE is a pascal string type.
38 Returns 1 if the type is a known pascal type
40 If it is a pascal string type, then it also sets info needed
48 is_pascal_string_type (struct type *type,int *length_pos, argument
52 if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
54 /* Old Borland type pascal strings from Free Pascal Compiler. */
56 if (TYPE_NFIELDS (type)
277 struct type *type = NULL; local
[all...]
H A Dtypeprint.c40 /* For real-type printing in whatis_exp() */
41 extern int objectprint; /* Controls looking up an object's derived type
48 static struct type *ptype_eval (struct expression *);
54 /* Print a description of a type in the format of a
56 NEW is the new name for a type TYPE. */
59 typedef_print (struct type *type, struct symbol *new, struct ui_file *stream) argument
61 CHECK_TYPEDEF (type);
68 type_print (type, "", stream, 0);
82 type_print (type, "", strea
106 type_print(struct type *type, char *varstring, struct ui_file *stream, int show) argument
122 struct type *type; local
205 struct type *type; local
249 print_type_scalar(struct type *type, LONGEST val, struct ui_file *stream) argument
326 struct type *type; local
[all...]
H A Dc-valprint.c59 /* Print data of type TYPE located at VALADDR (within GDB), which came from
73 c_val_print (struct type *type, char *valaddr, int embedded_offset,
79 struct type *elttype;
84 CHECK_TYPEDEF (type);
85 switch (TYPE_CODE (type))
88 elttype = check_typedef (TYPE_TARGET_TYPE (type));
89 if (TYPE_LENGTH (type) > 0 && TYPE_LENGTH (TYPE_TARGET_TYPE (type)) > 0)
92 len = TYPE_LENGTH (type) / eltle
72 c_val_print(struct type *type, char *valaddr, int embedded_offset, CORE_ADDR address, struct ui_file *stream, int format, int deref_ref, int recurse, enum val_prettyprint pretty) argument
494 struct type *type = VALUE_TYPE (val); local
[all...]
H A Df-valprint.c45 static void f77_print_array (struct type *, char *, CORE_ADDR,
48 static void f77_print_array_1 (int, int, struct type *, char *,
52 static void f77_create_arrayprint_offset_tbl (struct type *,
54 static void f77_get_dynamic_length_of_aggregate (struct type *);
71 f77_get_dynamic_lowerbound (struct type *type, int *lower_bound) argument
76 switch (TYPE_ARRAY_LOWER_BOUND_TYPE (type))
84 TYPE_ARRAY_LOWER_BOUND_VALUE (type),
95 *lower_bound = TYPE_ARRAY_LOWER_BOUND_VALUE (type);
108 TYPE_ARRAY_LOWER_BOUND_VALUE (type),
129 f77_get_dynamic_upperbound(struct type *type, int *upper_bound) argument
194 f77_get_dynamic_length_of_aggregate(struct type *type) argument
232 f77_create_arrayprint_offset_tbl(struct type *type, struct ui_file *stream) argument
281 f77_print_array_1(int nss, int ndimensions, struct type *type, char *valaddr, CORE_ADDR address, struct ui_file *stream, int format, int deref_ref, int recurse, enum val_prettyprint pretty, int *elts) argument
326 f77_print_array(struct type *type, char *valaddr, CORE_ADDR address, struct ui_file *stream, int format, int deref_ref, int recurse, enum val_prettyprint pretty) argument
364 f_val_print(struct type *type, char *valaddr, int embedded_offset, CORE_ADDR address, struct ui_file *stream, int format, int deref_ref, int recurse, enum val_prettyprint pretty) argument
[all...]
H A Dc-typeprint.c44 static void cp_type_print_method_args (struct type *mtype, char *prefix,
48 static void c_type_print_args (struct type *, struct ui_file *);
50 static void cp_type_print_derivation_info (struct ui_file *, struct type *);
52 static void c_type_print_varspec_prefix (struct type *, struct ui_file *, int,
56 static void c_type_print_modifier (struct type *, struct ui_file *,
66 c_print_type (struct type *type, char *varstring, struct ui_file *stream,
74 CHECK_TYPEDEF (type);
76 c_type_print_base (type, stream, show, level);
77 code = TYPE_CODE (type);
65 c_print_type(struct type *type, char *varstring, struct ui_file *stream, int show, int level) argument
132 cp_type_print_derivation_info(struct ui_file *stream, struct type *type) argument
204 c_type_print_varspec_prefix(struct type *type, struct ui_file *stream, int show, int passed_a_ptr, int need_post_space) argument
303 c_type_print_modifier(struct type *type, struct ui_file *stream, int need_pre_space, int need_post_space) argument
346 c_type_print_args(struct type *type, struct ui_file *stream) argument
389 is_type_conversion_operator(struct type *type, int i, int j) argument
525 c_type_print_varspec_suffix(struct type *type, struct ui_file *stream, int show, int passed_a_ptr, int demangled_args) argument
655 c_type_print_base(struct type *type, struct ui_file *stream, int show, int level) argument
[all...]
H A Dcp-valprint.c44 int objectprint; /* Controls looking up an object's derived type
53 static void cp_print_static_field (struct type *, struct value *,
57 static void cp_print_value (struct type *, struct type *, char *, int,
59 enum val_prettyprint, struct type **);
61 static void cp_print_hpacc_virtual_table_entries (struct type *, int *,
70 struct type *type,
73 struct type *domain;
83 struct type *target_typ
69 cp_print_class_method(char *valaddr, struct type *type, struct ui_file *stream) argument
177 cp_is_vtbl_ptr_type(struct type *type) argument
188 cp_is_vtbl_member(struct type *type) argument
234 cp_print_value_fields(struct type *type, struct type *real_type, char *valaddr, int offset, CORE_ADDR address, struct ui_file *stream, int format, int recurse, enum val_prettyprint pretty, struct type **dont_print_vb, int dont_print_statmem) argument
494 cp_print_value(struct type *type, struct type *real_type, char *valaddr, int offset, CORE_ADDR address, struct ui_file *stream, int format, int recurse, enum val_prettyprint pretty, struct type **dont_print_vb) argument
635 cp_print_static_field(struct type *type, struct value *val, struct ui_file *stream, int format, int recurse, enum val_prettyprint pretty) argument
753 cp_print_hpacc_virtual_table_entries(struct type *type, int *vfuncs, struct value *v, struct ui_file *stream, int format, int recurse, enum val_prettyprint pretty) argument
[all...]
H A Dm2-lang.c33 static struct type *m2_create_fundamental_type (struct objfile *, int);
198 static struct type *
201 struct type *type = NULL; local
206 /* FIXME: For now, if we are asked to produce a type not in this
207 language, create the equivalent of a C integer type with the
208 name "<?type?>". When all the dust settles from the type
210 type = init_type (TYPE_CODE_INT,
212 0, "<?type
[all...]
H A Dada-valprint.c38 struct type *type; member in struct:ada_val_print_args
49 static void print_record (struct type *, char *, struct ui_file *, int,
52 static int print_field_values (struct type *, char *, struct ui_file *,
54 int, struct type *, char *);
56 static int print_variant_part (struct type *, int, char *,
58 enum val_prettyprint, int, struct type *,
61 static void val_print_packed_array_elements (struct type *, char *valaddr,
65 static void adjust_type_signedness (struct type *);
69 static int ada_val_print_1 (struct type *, cha
76 adjust_type_signedness(struct type *type) argument
89 print_optional_low_bound(struct ui_file *stream, struct type *type) argument
135 val_print_packed_array_elements(struct type *type, char *valaddr, int bitoffset, struct ui_file *stream, int format, int recurse, enum val_prettyprint pretty) argument
248 printable_val_type(struct type *type, char *valaddr) argument
300 ada_print_scalar(struct type *type, LONGEST val, struct ui_file *stream) argument
492 ada_val_print(struct type *type, char *valaddr0, int embedded_offset, CORE_ADDR address, struct ui_file *stream, int format, int deref_ref, int recurse, enum val_prettyprint pretty) argument
526 ada_val_print_1(struct type *type, char *valaddr0, int embedded_offset, CORE_ADDR address, struct ui_file *stream, int format, int deref_ref, int recurse, enum val_prettyprint pretty) argument
784 print_variant_part(struct type *type, int field_num, char *valaddr, struct ui_file *stream, int format, int recurse, enum val_prettyprint pretty, int comma_needed, struct type *outer_type, char *outer_valaddr) argument
809 struct type *type = local
851 print_record(struct type *type, char *valaddr, struct ui_file *stream, int format, int recurse, enum val_prettyprint pretty) argument
883 print_field_values(struct type *type, char *valaddr, struct ui_file *stream, int format, int recurse, enum val_prettyprint pretty, int comma_needed, struct type *outer_type, char *outer_valaddr) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp32 std::string AppleObjCTypeEncodingParser::ReadStructName(StringLexer &type) { argument
34 while (type.HasAtLeast(1) && type.Peek() != '=')
35 buffer.Printf("%c", type.Next());
39 std::string AppleObjCTypeEncodingParser::ReadQuotedString(StringLexer &type) { argument
41 while (type.HasAtLeast(1) && type.Peek() != '"')
42 buffer.Printf("%c", type.Next());
43 StringLexer::Character next = type.Next();
49 uint32_t AppleObjCTypeEncodingParser::ReadNumber(StringLexer &type) { argument
64 ReadStructElement(ClangASTContext &ast_ctx, StringLexer &type, bool for_expression) argument
78 BuildStruct( ClangASTContext &ast_ctx, StringLexer &type, bool for_expression) argument
84 BuildUnion( ClangASTContext &ast_ctx, StringLexer &type, bool for_expression) argument
90 BuildAggregate( ClangASTContext &ast_ctx, StringLexer &type, bool for_expression, char opener, char closer, uint32_t kind) argument
147 BuildArray( ClangASTContext &ast_ctx, StringLexer &type, bool for_expression) argument
165 BuildObjCObjectPointerType( ClangASTContext &clang_ast_ctx, StringLexer &type, bool for_expression) argument
250 BuildType(ClangASTContext &clang_ast_ctx, StringLexer &type, bool for_expression, uint32_t *bitfield_bit_size) argument
[all...]
H A DAppleObjCTypeEncodingParser.h31 clang::QualType type; member in struct:lldb_private::AppleObjCTypeEncodingParser::StructElement
38 clang::QualType BuildType(ClangASTContext &clang_ast_ctx, StringLexer &type,
42 clang::QualType BuildStruct(ClangASTContext &ast_ctx, StringLexer &type,
46 StringLexer &type, bool for_expression,
49 clang::QualType BuildUnion(ClangASTContext &ast_ctx, StringLexer &type,
52 clang::QualType BuildArray(ClangASTContext &ast_ctx, StringLexer &type,
55 std::string ReadStructName(StringLexer &type);
57 StructElement ReadStructElement(ClangASTContext &ast_ctx, StringLexer &type,
61 StringLexer &type,
64 uint32_t ReadNumber(StringLexer &type);
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/
H A DMSP430.cpp37 RelExpr getRelExpr(RelType type, const Symbol &s,
39 void relocateOne(uint8_t *loc, RelType type, uint64_t val) const override;
48 RelExpr MSP430::getRelExpr(RelType type, const Symbol &s, argument
50 switch (type) {
63 void MSP430::relocateOne(uint8_t *loc, RelType type, uint64_t val) const { argument
64 switch (type) {
66 checkIntUInt(loc, val, 8, type);
73 checkIntUInt(loc, val, 16, type);
77 checkIntUInt(loc, val, 32, type);
82 checkInt(loc, offset, 10, type);
[all...]
/freebsd-11-stable/contrib/gdb/gdb/config/i386/
H A Dnm-i386.h38 of the type TYPE. Return 0 on success, -1 on failure. */
39 extern int i386_insert_watchpoint (CORE_ADDR addr, int len, int type);
43 type TYPE. Return 0 on success, -1 on failure. */
44 extern int i386_remove_watchpoint (CORE_ADDR addr, int len, int type);
67 /* Returns the number of hardware watchpoints of type TYPE that we can
69 setting watchpoints of type TYPE is not supported, and negative if
70 CNT is more than the maximum number of watchpoints of type TYPE
84 #define TARGET_CAN_USE_HARDWARE_WATCHPOINT(type, cnt, ot) 1
104 #define target_insert_watchpoint(addr, len, type) \
105 i386_insert_watchpoint (addr, len, type)
[all...]
/freebsd-11-stable/contrib/gcc/config/ia64/
H A Dia64-c.c40 enum cpp_ttype type; local
43 type = pragma_lex (&x);
44 while (type == CPP_NAME)
47 type = pragma_lex (&x);
48 if (type == CPP_COMMA)
49 type = pragma_lex (&x);
51 if (type != CPP_EOF)
/freebsd-11-stable/contrib/gcc/
H A Dconvert.c1 /* Utility routines for data type conversion for GCC.
37 /* Convert EXPR to some pointer or reference type TYPE.
42 convert_to_pointer (tree type, tree expr) argument
44 if (TREE_TYPE (expr) == type)
49 tree t = build_int_cst (type, 0);
60 return fold_build1 (NOP_EXPR, type, expr);
69 return fold_build1 (CONVERT_EXPR, type, expr);
74 if (objc_is_id (type)
75 || (TREE_CODE (type) == POINTER_TYPE && VOID_TYPE_P (TREE_TYPE (type))))
87 convert_to_block_pointer(tree type, tree expr) argument
140 tree type = NULL; local
178 convert_to_real(tree type, tree expr) argument
406 convert_to_integer(tree type, tree expr) argument
803 convert_to_complex(tree type, tree expr) argument
856 convert_to_vector(tree type, tree expr) argument
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dsockaddr.c63 if (a->type.sa.sa_family != b->type.sa.sa_family)
65 switch (a->type.sa.sa_family) {
68 memcmp(&a->type.sin.sin_addr, &b->type.sin.sin_addr,
69 sizeof(a->type.sin.sin_addr)) != 0)
72 a->type.sin.sin_port != b->type.sin.sin_port)
77 memcmp(&a->type.sin6.sin6_addr, &b->type
[all...]
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dsymbol.h70 struct type;
78 } type; member in struct:value
94 struct type *type; member in struct:member
120 struct type { struct
121 Typetype type; member in struct:type
124 struct type *subtype;
130 typedef struct type Type;
136 Type *type; member in struct:constraint_spec::__anon5955::__anon5956
153 Type *type; member in struct:symbol
[all...]

Completed in 133 milliseconds

1234567891011>>