Lines Matching full:rflags
1 /* Test if definedness of rflags values is correctly propagated in and out
8 flag value (indicating if the syscall succeeded) in the rflags. This save
9 operation unfortunately makes all rflags initialised (due to imprecise
21 #define OBIT(rflags) (!!((rflags) & (1 << 11)))
22 #define SBIT(rflags) (!!((rflags) & (1 << 7)))
43 long rflags;
75 : "=d" (rflags)
81 Note: This actually fails because the rflags are only approximate
88 if (!OBIT(rflags) || !SBIT(rflags))