Home
last modified time | relevance | path

Searched refs:thistype (Results 1 – 6 of 6) sorted by relevance

/NextBSD/contrib/gdb/gdb/
HDgdbtypes.h768 #define TYPE_INSTANCE_FLAGS(thistype) (thistype)->instance_flags argument
769 #define TYPE_MAIN_TYPE(thistype) (thistype)->main_type argument
770 #define TYPE_NAME(thistype) TYPE_MAIN_TYPE(thistype)->name argument
772 #define TYPE_TARGET_TYPE(thistype) TYPE_MAIN_TYPE(thistype)->target_type argument
773 #define TYPE_POINTER_TYPE(thistype) (thistype)->pointer_type argument
774 #define TYPE_REFERENCE_TYPE(thistype) (thistype)->reference_type argument
775 #define TYPE_CHAIN(thistype) (thistype)->chain argument
780 #define TYPE_LENGTH(thistype) (thistype)->length argument
781 #define TYPE_OBJFILE(thistype) TYPE_MAIN_TYPE(thistype)->objfile argument
782 #define TYPE_FLAGS(thistype) TYPE_MAIN_TYPE(thistype)->flags argument
[all …]
HDcp-valprint.c504 struct type *thistype; in cp_print_value() local
540 thistype = real_type; in cp_print_value()
576 thistype = baseclass; in cp_print_value()
601 cp_print_value_fields (baseclass, thistype, base_valaddr, in cp_print_value()
/NextBSD/crypto/heimdal/lib/asn1/
HDextra.c54 Der_type thistype; in decode_heim_any() local
60 e = der_get_tag (p, len, &thisclass, &thistype, &thistag, &l); in decode_heim_any()
HDder_get.c546 Der_type thistype; in der_match_tag() local
549 e = der_match_tag2(p, len, class, &thistype, tag, size); in der_match_tag()
551 if (thistype != type) return ASN1_BAD_ID; in der_match_tag()
/NextBSD/contrib/gcc/
HDc-decl.c2180 tree thistype; in pushdecl() local
2182 thistype = composite_type (vistype, type); in pushdecl()
2184 thistype = TREE_TYPE (b_use->decl); in pushdecl()
2188 thistype in pushdecl()
2189 = build_type_attribute_variant (thistype, in pushdecl()
2192 TREE_TYPE (b_use->decl) = thistype; in pushdecl()
2280 tree thistype; in pushdecl() local
2284 thistype = composite_type (vistype, type); in pushdecl()
2286 thistype = TREE_TYPE (b->decl); in pushdecl()
2289 thistype = type; in pushdecl()
[all …]
/NextBSD/contrib/binutils/gas/config/
HDtc-arm.c1124 enum neon_el_type thistype = NT_untyped; in parse_neon_type() local
1138 case 'i': thistype = NT_integer; break; in parse_neon_type()
1139 case 'f': thistype = NT_float; break; in parse_neon_type()
1140 case 'p': thistype = NT_poly; break; in parse_neon_type()
1141 case 's': thistype = NT_signed; break; in parse_neon_type()
1142 case 'u': thistype = NT_unsigned; break; in parse_neon_type()
1144 thistype = NT_float; in parse_neon_type()
1156 if (thistype == NT_float && !ISDIGIT (*ptr)) in parse_neon_type()
1174 type->el[type->elems].type = thistype; in parse_neon_type()