Searched refs:struct_type (Results 1 – 8 of 8) sorted by relevance
/dflybsd-src/sys/dev/raid/twa/ |
H A D | tw_cl_share.h | 320 #define TW_CL_STRUCT_OFFSET(struct_type, field) \ argument 321 (TW_INT8 *)(&((struct_type *)0)->field) 328 #define TW_CL_STRUCT_HEAD(addr, struct_type, field) \ argument 329 (struct_type *)((TW_INT8 *)addr - \ 330 TW_CL_STRUCT_OFFSET(struct_type, field))
|
/dflybsd-src/contrib/gcc-4.7/gcc/ |
H A D | tree-mudflap.c | 328 tree struct_type = make_node (RECORD_TYPE); in mf_make_mf_cache_struct_type() local 329 DECL_CONTEXT (fieldlo) = struct_type; in mf_make_mf_cache_struct_type() 330 DECL_CONTEXT (fieldhi) = struct_type; in mf_make_mf_cache_struct_type() 332 TYPE_FIELDS (struct_type) = fieldlo; in mf_make_mf_cache_struct_type() 333 TYPE_NAME (struct_type) = get_identifier ("__mf_cache"); in mf_make_mf_cache_struct_type() 334 layout_type (struct_type); in mf_make_mf_cache_struct_type() 336 return struct_type; in mf_make_mf_cache_struct_type()
|
H A D | c-typeck.c | 5076 find_anonymous_field_with_type (tree struct_type, tree type) in find_anonymous_field_with_type() argument 5081 gcc_assert (TREE_CODE (struct_type) == RECORD_TYPE in find_anonymous_field_with_type() 5082 || TREE_CODE (struct_type) == UNION_TYPE); in find_anonymous_field_with_type() 5084 for (field = TYPE_FIELDS (struct_type); in find_anonymous_field_with_type()
|
/dflybsd-src/contrib/gdb-7/gdb/ |
H A D | eval.c | 289 struct type *struct_type = check_typedef (value_type (struct_val)); in evaluate_struct_tuple() local 301 while (fieldno < TYPE_NFIELDS (struct_type) in evaluate_struct_tuple() 302 && field_is_static (&TYPE_FIELD (struct_type, in evaluate_struct_tuple() 305 if (fieldno >= TYPE_NFIELDS (struct_type)) in evaluate_struct_tuple() 307 field_type = TYPE_FIELD_TYPE (struct_type, fieldno); in evaluate_struct_tuple() 309 && TYPE_FIELD_NAME (struct_type, fieldno)[0] == '0') in evaluate_struct_tuple() 321 field_type = TYPE_FIELD_TYPE (struct_type, fieldno); in evaluate_struct_tuple() 331 bitsize = TYPE_FIELD_BITSIZE (struct_type, fieldno); in evaluate_struct_tuple() 332 bitpos = TYPE_FIELD_BITPOS (struct_type, fieldno); in evaluate_struct_tuple() 335 modify_field (struct_type, addr, in evaluate_struct_tuple()
|
H A D | ada-lang.c | 508 struct type *struct_type = check_typedef ((struct type *) type); in ada_get_field_index() local 510 for (fieldno = 0; fieldno < TYPE_NFIELDS (struct_type); fieldno++) in ada_get_field_index() 511 if (field_name_match (TYPE_FIELD_NAME (struct_type, fieldno), field_name)) in ada_get_field_index() 516 field_name, TYPE_NAME (struct_type)); in ada_get_field_index()
|
/dflybsd-src/contrib/gcc-4.7/gcc/objc/ |
H A D | objc-next-runtime-abi-02.c | 1907 tree struct_type = TREE_TYPE (ref->refdecl); in build_v2_message_ref_translation_table() local 1919 constructor = objc_build_constructor (struct_type, initializer); in build_v2_message_ref_translation_table()
|
/dflybsd-src/contrib/gcc-8.0/gcc/ |
H A D | dwarf2out.c | 19084 tree struct_type; member 19252 ctx->struct_type, /* context_type */ in field_byte_offset() 24637 analyze_discr_in_predicate (tree operand, tree struct_type) in analyze_discr_in_predicate() argument 24654 && TREE_TYPE (TREE_OPERAND (operand, 0)) == struct_type in analyze_discr_in_predicate() 24720 tree struct_type, in analyze_variants_discr() argument 24792 struct_type); in analyze_variants_discr() 24837 struct_type); in analyze_variants_discr() 24840 struct_type); in analyze_variants_discr() 24926 vlr_ctx->struct_type, /* context_type */ in gen_variant_part() 24946 analyze_variants_discr (variant_part_decl, vlr_ctx->struct_type, in gen_variant_part() [all …]
|
/dflybsd-src/contrib/gcc-8.0/gcc/c/ |
H A D | c-typeck.c | 6069 find_anonymous_field_with_type (tree struct_type, tree type) in find_anonymous_field_with_type() argument 6074 gcc_assert (RECORD_OR_UNION_TYPE_P (struct_type)); in find_anonymous_field_with_type() 6076 for (field = TYPE_FIELDS (struct_type); in find_anonymous_field_with_type()
|