Lines Matching refs:byte1
452 uint8_t byte1, byte2; in readPrefixes() local
454 if (consumeByte(insn, &byte1)) { in readPrefixes()
464 if ((insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) && in readPrefixes()
465 ((~byte1 & 0xc) == 0xc) && ((byte2 & 0x4) == 0x4)) { in readPrefixes()
474 insn->vectorExtensionPrefix[1] = byte1; in readPrefixes()
498 uint8_t byte1; in readPrefixes() local
500 if (lookAtByte(insn, &byte1)) { in readPrefixes()
505 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) in readPrefixes()
529 uint8_t byte1; in readPrefixes() local
531 if (lookAtByte(insn, &byte1)) { in readPrefixes()
536 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) in readPrefixes()
562 uint8_t byte1; in readPrefixes() local
564 if (lookAtByte(insn, &byte1)) { in readPrefixes()
569 if ((byte1 & 0x38) != 0x0) /* 0 in these 3 bits is a POP instruction. */ in readPrefixes()