Lines Matching defs:flags
919 uint8_t flags = result_and_flags.second;
920 ReadNzcv().SetN((flags >> 3) & 1);
921 ReadNzcv().SetZ((flags >> 2) & 1);
922 ReadNzcv().SetC((flags >> 1) & 1);
923 ReadNzcv().SetV((flags >> 0) & 1);
4089 // If the condition passes, set the status flags to the result of comparing
4098 // If the condition fails, set the status flags to the nzcv immediate.
6722 // Can't set the flags in place due to the logical dependencies.
13832 FlagsUpdate flags = LeaveFlags;
13838 flags = SetFlags;
13848 if (flags == SetFlags) {
14683 void* address, size_t length, int prot, int flags, int fd, off_t offset) {
14691 mmap(address, length, prot, flags, fd, offset));