| /src/crypto/external/bsd/heimdal/dist/lib/asn1/ |
| gen_template.c | 236 partial_offset(const char *basetype, const char *name, int need_offset, int isstruct) 241 if (asprintf(&str, "offsetof(%s%s, %s)", isstruct ? "struct " : "", basetype, name) < 0 || str == NULL) 482 template_members(struct templatehead *temp, const char *basetype, const char *name, const Type *t, int optional, int implicit, int isstruct, int need_offset) 487 errx(1, "%s...%s is optional and not a (TTag or TType)", basetype, name); 489 poffset = partial_offset(basetype, name, need_offset, isstruct); 597 fprintf(f, "static const struct asn1_template asn1_%s_%s[] = {\n", basetype, bname); 600 basetype, (unsigned long)count); 608 add_line(temp, "{ A1_OP_BMEMBER, %s, asn1_%s_%s }", poffset, basetype, bname); 626 if (asprintf(&newbasename, "%s_%s", basetype, name) < 0) 629 newbasename = strdup(basetype); 648 fprintf(get_code_file(), "\/* template_members: %s %s %s *\/\\n", basetype, implicit ? "imp" : "exp", tagimplicit ? "imp" : "exp"); local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/d/ |
| types.cc | 809 int nunits = t->basetype->isTypeSArray ()->dim->toUInteger (); 957 tree basetype = (t->sym->memtype) local 1001 || !INTEGRAL_TYPE_P (basetype) 1002 || TREE_CODE (basetype) == BOOLEAN_TYPE) 1007 t->ctype = build_variant_type_copy (basetype); 1019 TREE_TYPE (t->ctype) = basetype; 1027 TYPE_MIN_VALUE (t->ctype) = TYPE_MIN_VALUE (basetype); 1028 TYPE_MAX_VALUE (t->ctype) = TYPE_MAX_VALUE (basetype); 1044 basetype); 1048 CONST_DECL, ident, basetype); [all...] |
| d-codegen.cc | 2310 tree basetype = type; local 2312 if (COMPLEX_FLOAT_TYPE_P (basetype)) 2313 basetype = TREE_TYPE (basetype); 2315 if (TYPE_MAIN_VARIANT (basetype) == double_type_node 2316 || TYPE_MAIN_VARIANT (basetype) == idouble_type_node) 2318 else if (TYPE_MAIN_VARIANT (basetype) == float_type_node 2319 || TYPE_MAIN_VARIANT (basetype) == ifloat_type_node) 2321 else if (TYPE_MAIN_VARIANT (basetype) == long_double_type_node 2322 || TYPE_MAIN_VARIANT (basetype) == ireal_type_node [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| gnu-v2-abi.c | 110 /* Now context is a pointer to the basetype containing the vtbl. */ 120 /* Now context is the basetype containing the vtbl. */ 215 /* Try to get the vptr basetype, fieldno. */ 223 /* Make sure our basetype and known type match, otherwise, cast 293 vb_match (struct type *type, int index, struct type *basetype) 324 if (fieldtype->target_type () == basetype) 327 if (basetype->name () != NULL 329 && strcmp (basetype->name (), 345 struct type *basetype = TYPE_BASECLASS (type, index); 357 if (vb_match (type, i, basetype)) 344 struct type *basetype = TYPE_BASECLASS (type, index); local [all...] |
| c-varobj.c | 641 struct type *basetype = NULL; 647 vptr_fieldno = get_vptr_fieldno (type, &basetype); 655 if ((type == basetype && i == vptr_fieldno) 725 struct type *basetype = NULL; 728 vptr_fieldno = get_vptr_fieldno (type, &basetype); 736 if ((type == basetype && type_index == vptr_fieldno) 640 struct type *basetype = NULL; local 724 struct type *basetype = NULL; local
|
| f-exp.y | 87 static struct type *convert_to_kind_type (struct type *basetype, int kind); 1170 convert_to_kind_type_1 (struct type *basetype, int kind) 1172 if (basetype == parse_f_type (pstate)->builtin_character) 1179 else if (basetype == parse_f_type (pstate)->builtin_complex) 1188 else if (basetype == parse_f_type (pstate)->builtin_real) 1197 else if (basetype == parse_f_type (pstate)->builtin_logical) 1208 else if (basetype == parse_f_type (pstate)->builtin_integer) 1224 'character(kind=1)'. The BASETYPE is the type described by 'character' 1226 new type that represents the basetype of a specific kind. */ 1228 convert_to_kind_type (struct type *basetype, int kind [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| gnu-v2-abi.c | 110 /* Now context is a pointer to the basetype containing the vtbl. */ 120 /* Now context is the basetype containing the vtbl. */ 216 /* Try to get the vptr basetype, fieldno. */ 224 /* Make sure our basetype and known type match, otherwise, cast 294 vb_match (struct type *type, int index, struct type *basetype) 325 if (fieldtype->target_type () == basetype) 328 if (basetype->name () != NULL 330 && strcmp (basetype->name (), 346 struct type *basetype = TYPE_BASECLASS (type, index); 358 if (vb_match (type, i, basetype)) 345 struct type *basetype = TYPE_BASECLASS (type, index); local [all...] |
| c-varobj.c | 641 struct type *basetype = NULL; 647 vptr_fieldno = get_vptr_fieldno (type, &basetype); 655 if ((type == basetype && i == vptr_fieldno) 725 struct type *basetype = NULL; 728 vptr_fieldno = get_vptr_fieldno (type, &basetype); 736 if ((type == basetype && type_index == vptr_fieldno) 640 struct type *basetype = NULL; local 724 struct type *basetype = NULL; local
|
| f-exp.y | 87 static struct type *convert_to_kind_type (struct type *basetype, int kind); 1161 'character(kind=1)'. The BASETYPE is the type described by 'character' 1163 new type that represents the basetype of a specific kind. */ 1165 convert_to_kind_type (struct type *basetype, int kind) 1167 if (basetype == parse_f_type (pstate)->builtin_character) 1174 else if (basetype == parse_f_type (pstate)->builtin_complex) 1183 else if (basetype == parse_f_type (pstate)->builtin_real) 1192 else if (basetype == parse_f_type (pstate)->builtin_logical) 1203 else if (basetype == parse_f_type (pstate)->builtin_integer) 1216 kind, TYPE_SAFE_NAME (basetype)); [all...] |
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| class.cc | 747 tree basetype = non_reference (TREE_TYPE (instance)); 751 tree binfo = lookup_base (fixed_type, basetype, 758 vtbl = build_vfield_ref (instance, basetype); 977 /* This is our very own copy of `basetype' to play with. Later, 2023 tree basetype = TREE_TYPE (base_binfo); 2025 gcc_assert (COMPLETE_TYPE_P (basetype)); 2027 if (CLASSTYPE_FINAL (basetype)) 2029 basetype, t); 2032 if (!CLASSTYPE_LITERAL_P (basetype)) 2039 if (TYPE_HAS_COPY_CTOR (basetype) 746 tree basetype = non_reference (TREE_TYPE (instance)); local 2020 tree basetype = TREE_TYPE (base_binfo); local 2209 tree basetype = BINFO_TYPE (base_binfo); local 2244 tree basetype = BINFO_TYPE (primary); local 3168 tree basetype = BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (t), i)); local 3257 tree basetype = BINFO_TYPE (base_binfo); local 4850 tree basetype = BINFO_TYPE (binfo); local 4898 tree basetype = BINFO_TYPE (binfo); local 5171 tree basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (clone)); local 5432 tree basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (clone)); local 5488 tree o, basetype = BINFO_TYPE (base_binfo); local 6276 tree basetype = TREE_TYPE (base_binfo); local 6429 tree basetype = TREE_TYPE (base_binfo); local 6841 tree basetype; local 7709 tree basetype = BINFO_TYPE (CLASSTYPE_PRIMARY_BINFO (t)); local 7743 tree basetype = TREE_TYPE (base_binfo); local [all...] |
| cvt.cc | 1806 tree basetype = TREE_TYPE (expr); 1821 if (basetype == error_mark_node) 1824 if (! MAYBE_CLASS_TYPE_P (basetype)) 1825 switch (TREE_CODE (basetype)) 1848 if (!gnu_vector_type_p (basetype)) 1854 switch (TREE_CODE (TREE_TYPE (basetype))) 1873 if (!complete_type_or_maybe_complain (basetype, expr, complain)) 1875 if (!TYPE_HAS_CONVERSION (basetype)) 1878 for (conv = lookup_conversions (basetype); conv; conv = TREE_CHAIN (conv)) 1952 basetype); 1804 tree basetype = TREE_TYPE (expr); local [all...] |
| typeck2.cc | 44 BASETYPE as a base class for TYPE. */ 47 error_not_base_type (tree basetype, tree type) 49 if (TREE_CODE (basetype) == FUNCTION_DECL) 50 basetype = DECL_CONTEXT (basetype); 51 error ("type %qT is not a base type for type %qT", basetype, type); 2121 that value to the base specified in BASETYPE. For example, given the 2137 DATUM would be x, and BASETYPE would be A. 2148 build_scoped_ref (tree datum, tree basetype, tree* binfo_p) 2157 binfo = lookup_base (TREE_TYPE (datum), basetype, ba_check [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| class.cc | 746 tree basetype = non_reference (TREE_TYPE (instance)); 750 tree binfo = lookup_base (fixed_type, basetype, 757 vtbl = build_vfield_ref (instance, basetype); 976 /* This is our very own copy of `basetype' to play with. Later, 1797 tree basetype = TREE_TYPE (base_binfo); 1799 gcc_assert (COMPLETE_TYPE_P (basetype)); 1801 if (CLASSTYPE_FINAL (basetype)) 1803 basetype, t); 1806 if (!CLASSTYPE_LITERAL_P (basetype)) 1813 if (TYPE_HAS_COPY_CTOR (basetype) 745 tree basetype = non_reference (TREE_TYPE (instance)); local 1794 tree basetype = TREE_TYPE (base_binfo); local 1983 tree basetype = BINFO_TYPE (base_binfo); local 2018 tree basetype = BINFO_TYPE (primary); local 2942 tree basetype = BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (t), i)); local 3028 tree basetype = BINFO_TYPE (base_binfo); local 4573 tree basetype = BINFO_TYPE (binfo); local 4621 tree basetype = BINFO_TYPE (binfo); local 4880 tree basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (clone)); local 5139 tree basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (clone)); local 5195 tree o, basetype = BINFO_TYPE (base_binfo); local 5975 tree basetype = TREE_TYPE (base_binfo); local 6126 tree basetype = TREE_TYPE (base_binfo); local 6532 tree basetype; local 7399 tree basetype = BINFO_TYPE (CLASSTYPE_PRIMARY_BINFO (t)); local 7433 tree basetype = TREE_TYPE (base_binfo); local [all...] |
| cvt.cc | 1760 tree basetype = TREE_TYPE (expr); 1775 if (basetype == error_mark_node) 1778 if (! MAYBE_CLASS_TYPE_P (basetype)) 1779 switch (TREE_CODE (basetype)) 1802 if (!gnu_vector_type_p (basetype)) 1808 switch (TREE_CODE (TREE_TYPE (basetype))) 1827 if (!complete_type_or_maybe_complain (basetype, expr, complain)) 1829 if (!TYPE_HAS_CONVERSION (basetype)) 1832 for (conv = lookup_conversions (basetype); conv; conv = TREE_CHAIN (conv)) 1906 basetype); 1758 tree basetype = TREE_TYPE (expr); local [all...] |
| typeck2.cc | 44 BASETYPE as a base class for TYPE. */ 47 error_not_base_type (tree basetype, tree type) 49 if (TREE_CODE (basetype) == FUNCTION_DECL) 50 basetype = DECL_CONTEXT (basetype); 51 error ("type %qT is not a base type for type %qT", basetype, type); 2007 that value to the base specified in BASETYPE. For example, given the 2023 DATUM would be x, and BASETYPE would be A. 2034 build_scoped_ref (tree datum, tree basetype, tree* binfo_p) 2043 binfo = lookup_base (TREE_TYPE (datum), basetype, ba_check [all...] |
| /src/sys/arch/prep/pnpbus/ |
| pnpbusvar.h | 105 uint8_t basetype; /* PNP base type */ member in struct:pnpbus_dev_attach_args
|
| /src/external/bsd/tcpdump/dist/ |
| print-snmp.c | 894 SmiBasetype basetype; member in struct:smi2be 951 static int smi_check_type(SmiBasetype basetype, int be) 955 for (i = 0; smi2betab[i].basetype != SMI_BASETYPE_UNKNOWN; i++) { 956 if (smi2betab[i].basetype == basetype && smi2betab[i].be == be) { 969 switch (smiType->basetype) { 1117 if (! smi_check_type(smiType->basetype, elem->type)) { 1135 if (smiType->basetype == SMI_BASETYPE_BITS) { 1161 if (smiType->basetype == SMI_BASETYPE_ENUM) {
|
| /src/external/gpl3/gcc/dist/gcc/ |
| gimple-ssa-warn-restrict.cc | 296 tree basetype = TREE_TYPE (base); local 297 if (TREE_CODE (basetype) == ARRAY_TYPE) 302 else if (tree basesize = TYPE_SIZE_UNIT (basetype)) 1049 tree basetype = TREE_TYPE (dstref->base); 1051 if (POINTER_TYPE_P (basetype)) 1052 basetype = TREE_TYPE (basetype); 1054 while (TREE_CODE (basetype) == ARRAY_TYPE) 1055 basetype = TREE_TYPE (basetype); [all...] |
| gimple-array-bounds.cc | 153 tree basetype = TREE_TYPE (base); local 155 && POINTER_TYPE_P (basetype)) 157 tree ptype = TREE_TYPE (basetype);
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| gimple-ssa-warn-restrict.cc | 296 tree basetype = TREE_TYPE (base); local 297 if (TREE_CODE (basetype) == ARRAY_TYPE) 301 else if (tree basesize = TYPE_SIZE_UNIT (basetype)) 1046 tree basetype = TREE_TYPE (dstref->base); 1048 if (POINTER_TYPE_P (basetype)) 1049 basetype = TREE_TYPE (basetype); 1051 while (TREE_CODE (basetype) == ARRAY_TYPE) 1052 basetype = TREE_TYPE (basetype); [all...] |
| gimple-array-bounds.cc | 161 tree basetype = TREE_TYPE (base); local 163 && POINTER_TYPE_P (basetype)) 165 tree ptype = TREE_TYPE (basetype);
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| typinf.d | 152 return isSpeculativeType(t.basetype);
|
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| trans-types.cc | 1159 tree basetype; 1174 basetype = ptr_type_node; 1176 basetype = pfunc_type_node; 1179 basetype = gfc_get_int_type (spec->kind); 1183 basetype = gfc_get_real_type (spec->kind); 1187 basetype = gfc_get_complex_type (spec->kind); 1191 basetype = gfc_get_logical_type (spec->kind); 1195 basetype = gfc_get_character_type (spec->kind, spec->u.cl); 1200 basetype = gfc_get_character_type_len (gfc_default_character_kind, 1205 basetype = gfc_get_union_type (spec->u.derived) 1156 tree basetype; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| trans-types.cc | 1147 tree basetype; 1162 basetype = ptr_type_node; 1164 basetype = pfunc_type_node; 1167 basetype = gfc_get_int_type (spec->kind); 1171 basetype = gfc_get_real_type (spec->kind); 1175 basetype = gfc_get_complex_type (spec->kind); 1179 basetype = gfc_get_logical_type (spec->kind); 1183 basetype = gfc_get_character_type (spec->kind, spec->u.cl); 1188 basetype = gfc_get_character_type_len (gfc_default_character_kind, 1193 basetype = gfc_get_union_type (spec->u.derived) 1144 tree basetype; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/objc/ |
| objc-act.cc | 1639 tree basetype = TYPE_MAIN_VARIANT (rtype); local 1643 if (basetype != NULL_TREE && TREE_CODE (basetype) == POINTER_TYPE) 1644 basetype = TREE_TYPE (basetype); 1649 while (basetype != NULL_TREE 1650 && TREE_CODE (basetype) == RECORD_TYPE 1651 && OBJC_TYPE_NAME (basetype) 1652 && TREE_CODE (OBJC_TYPE_NAME (basetype)) == TYPE_DECL 1653 && DECL_ORIGINAL_TYPE (OBJC_TYPE_NAME (basetype))) 6558 tree basetype, decl; local [all...] |