Lines Matching refs:byte1
454 uint8_t byte1, byte2; in readPrefixes() local
456 if (consumeByte(insn, &byte1)) { in readPrefixes()
466 if ((insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) && in readPrefixes()
467 ((~byte1 & 0xc) == 0xc) && ((byte2 & 0x4) == 0x4)) { in readPrefixes()
477 insn->vectorExtensionPrefix[1] = byte1; in readPrefixes()
501 uint8_t byte1; in readPrefixes() local
503 if (lookAtByte(insn, &byte1)) { in readPrefixes()
508 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) { in readPrefixes()
536 uint8_t byte1; in readPrefixes() local
538 if (lookAtByte(insn, &byte1)) { in readPrefixes()
543 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) { in readPrefixes()
571 uint8_t byte1; in readPrefixes() local
573 if (lookAtByte(insn, &byte1)) { in readPrefixes()
578 if ((byte1 & 0x38) != 0x0) { /* 0 in these 3 bits is a POP instruction. */ in readPrefixes()