Searched refs:STRUCT (Results 1 - 23 of 23) sorted by relevance

/freebsd-12-stable/contrib/gcc/config/rs6000/
H A Daix.h173 #define ROUND_TYPE_ALIGN(STRUCT, COMPUTED, SPECIFIED) \
174 ((TREE_CODE (STRUCT) == RECORD_TYPE \
175 || TREE_CODE (STRUCT) == UNION_TYPE \
176 || TREE_CODE (STRUCT) == QUAL_UNION_TYPE) \
178 ? rs6000_special_round_type_align (STRUCT, COMPUTED, SPECIFIED) \
H A Ddarwin.h408 #define ROUND_TYPE_ALIGN(STRUCT, COMPUTED, SPECIFIED) \
409 ((TREE_CODE (STRUCT) == RECORD_TYPE \
410 || TREE_CODE (STRUCT) == UNION_TYPE \
411 || TREE_CODE (STRUCT) == QUAL_UNION_TYPE) \
413 ? rs6000_special_round_type_align (STRUCT, COMPUTED, SPECIFIED) \
414 : (TREE_CODE (STRUCT) == VECTOR_TYPE \
415 && ALTIVEC_VECTOR_MODE (TYPE_MODE (STRUCT))) \
H A Dlinux64.h230 #define ROUND_TYPE_ALIGN(STRUCT, COMPUTED, SPECIFIED) \
232 && (TREE_CODE (STRUCT) == RECORD_TYPE \
233 || TREE_CODE (STRUCT) == UNION_TYPE \
234 || TREE_CODE (STRUCT) == QUAL_UNION_TYPE) \
236 ? rs6000_special_round_type_align (STRUCT, COMPUTED, SPECIFIED) \
/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dfixup_tdescs.c66 if (!(str = lookupname(strs[i])) || str->t_type != STRUCT)
82 if (act->t_type != STRUCT || !streq(act->t_name, acts[i]))
120 if (!(str = lookupname(strs[i])) || str->t_type != STRUCT)
129 (ml->ml_type->t_tdesc->t_type != STRUCT &&
225 if (!streq(cpu->t_name, "cpu") || cpu->t_type != STRUCT)
258 } else if (machcpu->t_type != STRUCT) {
H A Dctftools.h138 STRUCT, enumerator in enum:stabtype
H A Dstabs.c88 if (!new || (new->t_type != STRUCT && new->t_type != UNION))
H A Dctf.c378 case STRUCT:
388 if (tp->t_type == STRUCT)
1128 tdp->t_type = (kind == CTF_K_STRUCT ? STRUCT : UNION);
1243 if (tdp->t_type == STRUCT || tdp->t_type == UNION ||
H A Dtdata.c81 case STRUCT:
H A Dst_parse.c387 (void) soudef(cp, STRUCT, &rtdp);
768 cp = soudef(cp, (type == 'u') ? UNION : STRUCT, rtdp);
1064 if (tdp->t_type == STRUCT || tdp->t_type == UNION ||
H A Ddwarf.c182 case STRUCT:
217 case STRUCT:
1089 die_sou_create(dw, die, off, tdp, STRUCT, "struct");
1129 (mt->t_type == STRUCT || mt->t_type == UNION))
1166 const char *typename = (tdp->t_type == STRUCT ? "struct" : "union");
H A Dmerge.c341 return (defn->t_type == STRUCT || defn->t_type == UNION ||
/freebsd-12-stable/contrib/gcc/
H A Dgengtype-yacc.y44 %token STRUCT
234 | STRUCT ID '{' struct_fields '}'
236 | STRUCT ID
H A Dgengtype-lex.l289 "struct"/[^[:alnum:]_] { return STRUCT; }
H A Dtree.h50 #define CODE_CONTAINS_STRUCT(CODE, STRUCT) (tree_contains_struct[(CODE)][(STRUCT)])
672 #define CONTAINS_STRUCT_CHECK(T, STRUCT) __extension__ \
674 if (tree_contains_struct[TREE_CODE(__t)][(STRUCT)] != 1) \
675 tree_contains_struct_check_failed (__t, (STRUCT), __FILE__, __LINE__, \
/freebsd-12-stable/crypto/openssl/crypto/perlasm/
H A Dx86masm.pl130 XMMWORD STRUCT 16
/freebsd-12-stable/contrib/gcc/config/sparc/
H A Dsparc.h669 (given by STRUCT as a tree node) if the alignment computed in the
675 #define ROUND_TYPE_ALIGN(STRUCT, COMPUTED, SPECIFIED) \
677 ((TREE_CODE (STRUCT) == RECORD_TYPE \
678 || TREE_CODE (STRUCT) == UNION_TYPE \
679 || TREE_CODE (STRUCT) == QUAL_UNION_TYPE) \
680 && TYPE_FIELDS (STRUCT) != 0 \
/freebsd-12-stable/contrib/gdb/gdb/
H A Dobjc-exp.y195 %token STRUCT CLASS UNION ENUM SIZEOF UNSIGNED COLONCOLON
903 | STRUCT name
1603 return STRUCT;
H A Dp-exp.y198 %token STRUCT CLASS SIZEOF COLONCOLON
730 | STRUCT name
1376 return STRUCT;
H A Dc-exp.y191 %token STRUCT CLASS UNION ENUM SIZEOF UNSIGNED COLONCOLON
864 | STRUCT name
1656 return STRUCT;
H A Dobjc-exp.c65 STRUCT = 267, enumerator in enum:yytokentype
108 #define STRUCT 267 macro
538 "SELECTOR", "NAME", "TYPENAME", "CLASSNAME", "NAME_OR_INT", "STRUCT",
3248 return STRUCT;
H A Dp-exp.c63 STRUCT = 265, enumerator in enum:yytokentype
99 #define STRUCT 265 macro
486 "NAME", "TYPENAME", "NAME_OR_INT", "STRUCT", "CLASS", "SIZEOF",
2701 return STRUCT;
H A Dc-exp.c62 STRUCT = 264, enumerator in enum:yytokentype
105 #define STRUCT 264 macro
540 "TYPENAME", "NAME_OR_INT", "STRUCT", "CLASS", "UNION", "ENUM", "SIZEOF",
3289 return STRUCT;
/freebsd-12-stable/contrib/binutils/gas/config/
H A Dtc-mips.c943 /* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
945 #define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
946 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
949 /* Extract bits MASK << SHIFT from STRUCT and shift them right
951 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
952 (((STRUCT) >> (SHIFT)) & (MASK))

Completed in 172 milliseconds