Lines Matching refs:u_int

116 	u_int	size;		/* size in bit */
117 u_int align : 15; /* alignment in bit */
118 u_int sincompl : 1; /* set if incomplete type */
128 u_int eincompl : 1; /* incomplete enum type */
140 u_int t_aincompl : 1; /* incomplete array type */
141 u_int t_const : 1; /* const modifier */
142 u_int t_volatile : 1; /* volatile modifier */
143 u_int t_proto : 1; /* function prototype (t_args valid) */
144 u_int t_vararg : 1; /* prototype with ... */
145 u_int t_typedef : 1; /* type defined with typedef */
146 u_int t_isfield : 1; /* type is bitfield */
147 u_int t_isenum : 1; /* type is (or was) enum (t_enum valid) */
155 u_int _t_flen : 8; /* length of bit-field */
156 u_int _t_foffs : 24; /* offset of bit-field */
216 u_int s_keyw : 1; /* keyword */
217 u_int s_field : 1; /* bit-field */
218 u_int s_set : 1; /* variable set, label defined */
219 u_int s_used : 1; /* variable/label used */
220 u_int s_arg : 1; /* symbol is function argument */
221 u_int s_reg : 1; /* symbol is register variable */
222 u_int s_defarg : 1; /* undefined symbol in old style function
224 u_int s_rimpl : 1; /* return value of function implicit decl. */
225 u_int s_osdef : 1; /* symbol stems from old style function def. */
226 u_int s_inline : 1; /* true if this is an inline function */
275 u_int tn_lvalue : 1; /* node is lvalue */
276 u_int tn_cast : 1; /* if tn_op == CVT its an explizit cast */
277 u_int tn_parn : 1; /* node parenthesized */
322 u_int d_const : 1; /* const in declaration specifiers */
323 u_int d_volatile : 1; /* volatile in declaration specifiers */
324 u_int d_inline : 1; /* inline in declaration specifiers */
325 u_int d_mscl : 1; /* multiple storage classes */
326 u_int d_terr : 1; /* invalid type combination */
327 u_int d_nedecl : 1; /* 1 if at least a tag is declared */
328 u_int d_vararg : 1; /* ... in current function decl. */
329 u_int d_proto : 1; /* current funct. decl. is prototype */
330 u_int d_notyp : 1; /* set if no type specifier was present */
331 u_int d_asm : 1; /* set if d_ctx == AUTO and asm() present */
348 u_int i_brace : 1; /* need } for pop */
349 u_int i_nolimit : 1; /* incomplete array type */
350 u_int i_namedmem : 1; /* has c9x named members */
362 u_int p_const : 1;
363 u_int p_volatile : 1;
380 u_int c_loop : 1; /* continue && break are valid */
381 u_int c_switch : 1; /* case && break are valid */
382 u_int c_break : 1; /* loop/switch has break */
383 u_int c_cont : 1; /* loop has continue */
384 u_int c_default : 1; /* switch has default */
385 u_int c_infinite : 1; /* break condition always false
387 u_int c_rchif : 1; /* end of if-branch reached */
388 u_int c_noretval : 1; /* had "return;" */
389 u_int c_retval : 1; /* had "return (e);" */