Home | History | Annotate | Download | only in src

Lines Matching defs:rop

80 /* ROP  ->  (ROP & P) | (D & ~P) */
168 * given ROP. The rule is that both the lower and upper nibble of the rop
170 * with a ROP which does not contain the source, the virge will hang when
176 int rop = (shifted_rop & (0xff << 17)) >> 17;
178 if ((((rop & 0x0f) == 0x0a) | ((rop & 0x0f) == 0x0f)
179 | ((rop & 0x0f) == 0x05) | ((rop & 0x0f) == 0x00)) &
180 (((rop & 0xf0) == 0xa0) | ((rop & 0xf0) == 0xf0)
181 | ((rop & 0xf0) == 0x50) | ((rop & 0xf0) == 0x00)))
188 * given ROP. The rule is that both the lower and upper nibble of the rop
194 int rop = (shifted_rop & (0xff << 17)) >> 17;
196 if ((((rop & 0x0f) == 0x0c) | ((rop & 0x0f) == 0x0f)
197 | ((rop & 0x0f) == 0x03) | ((rop & 0x0f) == 0x00)) &
198 (((rop & 0xf0) == 0xc0) | ((rop & 0xf0) == 0xf0)
199 | ((rop & 0xf0) == 0x30) | ((rop & 0xf0) == 0x00)))