Lines Matching defs:of

15 *  supporting documentation, and that the name of the authors not be used
16 * in advertising or publicity pertaining to distribution of the software
18 * representations about the suitability of this software for any purpose.
36 * and emulation of all the x86 processor instructions.
49 * Many of the procedures are *VERY* similar in coding. This has
50 * allowed for a very large amount of code to be generated in a fairly
51 * short amount of time (i.e. cut, paste, and modify). The result is
52 * that much of the code below could have been folded into subroutines
53 * for a large reduction in size of this file. The downside would be
62 * into the second category. The coding of the "switch(mod){ .... }"
63 * in many of the subroutines below falls into the first category.
64 * Especially, the coding of {add,and,or,sub,...}_{byte,word}
65 * subroutines are an especially glaring case of the third guideline.
66 * Since so much of the code is cloned from other modules (compare
2192 * note the lack of DECODE_CLEAR_SEGOVR(r) since, here is one of 4
3918 * what type of processor is in the system.
4261 * note the lack of DECODE_CLEAR_SEGOVR(r) since, here is one of 4
4278 * note the lack of DECODE_CLEAR_SEGOVR(r) since, here is one of 4
5093 int sf, of;
5103 of = ACCESS_FLAG(F_OF) != 0;
5104 if (sf ^ of)
5118 int sf, of;
5128 of = ACCESS_FLAG(F_OF) != 0;
5129 /* note: inverse of above, but using == instead of xor. */
5130 if (sf == of)
5144 int sf, of;
5155 of = ACCESS_FLAG(F_OF) != 0;
5156 if ((sf ^ of) || ACCESS_FLAG(F_ZF))
5170 int sf, of;
5181 of = ACCESS_FLAG(F_OF) != 0;
5182 if ((sf == of) && !ACCESS_FLAG(F_ZF))
5213 * Weirdo special case instruction format. Part of the opcode
5342 * Weirdo special case instruction format. Part of the opcode
5532 * Weirdo special case instruction format. Part of the opcode
5657 * Weirdo special case instruction format. Part of the opcode
7174 /* clear the lower bits of the flag register */
8209 * Yet another weirdo special case instruction format. Part of
8333 * Yet another weirdo special case instruction format. Part of
8961 * Yet another weirdo special case instruction format. Part of
9053 * Yet another weirdo special case instruction format. Part of
9204 * Yet another weirdo special case instruction format. Part of
9298 * Yet another weirdo special case instruction format. Part of
9939 of 32 cases. */
10221 of 32 cases. */