Lines Matching defs:_flags
85 u1 _flags;
121 // The _struct._flags word is formatted as [trap_state:4 | flags:4].
166 return ((_header._struct._flags >> trap_shift) & trap_mask);
171 uint old_flags = (_header._struct._flags & flag_mask);
172 _header._struct._flags = (new_state << trap_shift) | old_flags;
176 return _header._struct._flags;
210 _header._struct._flags |= (0x1 << flag_number);
214 return (_header._struct._flags & (0x1 << flag_number)) != 0;
225 return byte_offset_of(DataLayout, _header._struct._flags);
233 // Return a value which, when or-ed as a byte into _flags, sets the flag.
238 return temp._header._struct._flags;
243 temp._header._struct._flags = byte_constant;