HomeSort by: relevance | last modified time | path
    Searched refs:STRUCT (Results 1 - 12 of 12) sorted by relevancy

  /src/usr.bin/xlint/common/
inittyp.c 116 typeinfo("struct", STRUCT, STRUCT, 0, 0, ' '),
lint.h 53 typedef struct {
89 STRUCT, /* structure tag */
102 typedef struct {
156 typedef struct lint1_type type_t;
158 typedef struct lint2_type type_t;
tyname.c 53 typedef struct name_tree_node {
55 struct name_tree_node *ntn_less;
56 struct name_tree_node *ntn_greater;
292 case STRUCT:
  /src/usr.bin/xlint/lint2/
emit2.c 70 } else if (ts == ENUM || ts == STRUCT || ts == UNION) {
184 /* All files referenced by unnamed struct/union/enum declarations. */
194 struct outflist {
196 struct outflist *ofl_next;
198 static struct outflist *outflist;
203 struct outflist *ofl, **pofl;
230 struct outflist *ofl;
read.c 79 typedef struct thtab {
82 struct thtab *th_next;
592 case 's': /* 'signed' or 'struct' or 'float' */
632 return s == 'e' ? ENUM : (s == 's' ? STRUCT : UNION);
713 case STRUCT:
851 t = STRUCT;
892 case STRUCT:
chk.c 261 if ((t1 == STRUCT || t1 == UNION) && !eq) {
263 * If a function returns a struct or union, it
264 * must be declared to return a struct or
1279 if (t == STRUCT || t == UNION) {
  /src/usr.bin/xlint/lint1/
decl.c 61 * nested declarations, such as struct declarations, function prototypes,
99 /* struct, union, enum, ptr, array and func are not shared. */
100 for (int i = (int)SIGNED; i < (int)STRUCT; i++)
112 lint_assert((int)t < (int)STRUCT);
121 // Keep referring to the same subtype, struct, union, enum, params.
132 // Keep referring to the same subtype, struct, union, enum, params.
148 // Keep referring to the same subtype, struct, union, enum, params.
154 * In case of a struct or union type, the members should lose their
155 * qualifiers as well, but that would require a deep copy of the struct
166 * Returns whether the type is 'void' or an incomplete array, struct, unio
    [all...]
tree.c 53 typedef struct integer_constraints {
922 struct generic_association *sel)
1446 case STRUCT:
1776 (lt == STRUCT || rt == STRUCT)) {
2274 * Return whether all struct/union members with the same name have the same
2324 * that no defined struct or union has a member with the same name.
2349 * struct or union specified by 'tn'.
2379 * struct/union, but the right operand is not member of it.
2394 /* left operand of '.' must be struct ... *
    [all...]
lint1.h 44 typedef struct memory_pool {
45 struct memory_pool_item {
68 typedef struct {
74 typedef struct {
81 typedef struct {
88 typedef struct {
104 typedef struct sym sym_t;
115 typedef struct {
125 typedef struct {
133 struct lint1_type
    [all...]
init.c 56 * struct { int x, y; } point = { .y = 4, .x = 3 };
90 typedef struct brace_level {
105 struct brace_level *bl_enclosing;
109 typedef struct initialization {
129 struct initialization *in_enclosing;
285 case STRUCT:
300 "designator '.member' is only for struct/union");
493 case STRUCT:
525 /* too many struct/union initializers */
703 /* cannot initialize struct/union with no named member *
    [all...]
lex.c 107 static const struct keyword {
181 kwdef("struct", T_STRUCT_OR_UNION, .u.kw_tspec = STRUCT, 78,0,1),
289 struct syms {
296 syms_add(struct syms *syms, const sym_t *sym)
309 struct syms syms = { xcalloc(64, sizeof(syms.items[0])), 0, 64 };
350 register_keyword(const struct keyword *kw, bool leading, bool trailing)
383 is_keyword_known(const struct keyword *kw)
414 const struct keyword *kw = keywords + i;
1254 static const struct {
    [all...]
cgram.y 178 struct generic_association *y_generic;
306 /* struct or union */
507 identifier_sym: /* helper for struct/union/enum */
1183 * STDC requires that "struct a;" always introduces
1211 begin_declaration_level($1 == STRUCT ? DLK_STRUCT : DLK_UNION);
1269 /* anonymous struct/union members is a C11 feature */
1891 /* GCC style struct or union member name in initializer */
1914 /* struct or union member name in initializer is ... */

Completed in 23 milliseconds