Lines Matching defs:mod
71 /* Decode the SIB byte. This function assumes mod != 0 */
72 static int sib(int mod, unsigned long *fpu_eip)
86 if ((mod == 0) && (base == 5))
100 if (mod == 1) {
109 } else if (mod == 2 || base == 5) { /* The second condition also has mod==0 */
213 u_char mod;
227 mod = (FPU_modrm >> 6) & 3;
229 if (rm == 4 && mod != 3) {
230 address = sib(mod, fpu_eip);
233 switch (mod) {
298 u_char mod;
300 int address = 0; /* Default used for mod == 0 */
311 mod = (FPU_modrm >> 6) & 3;
313 switch (mod) {