Searched refs:idesc (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/x64/ |
D | disasm-x64.cc | 1231 const InstructionDesc& idesc = cmov_instructions[condition]; in TwoByteOpcodeInstruction() local 1232 byte_size_operand_ = idesc.byte_size_operation; in TwoByteOpcodeInstruction() 1233 current += PrintOperands(idesc.mnem, idesc.op_order_, current); in TwoByteOpcodeInstruction() 1343 const InstructionDesc& idesc = instruction_table.Get().Get(current); in InstructionDecode() local 1344 byte_size_operand_ = idesc.byte_size_operation; in InstructionDecode() 1345 switch (idesc.type) { in InstructionDecode() 1354 AppendToBuffer("%s%c", idesc.mnem, operand_size_code()); in InstructionDecode() 1356 AppendToBuffer("%s", idesc.mnem, operand_size_code()); in InstructionDecode() 1363 data += PrintOperands(idesc.mnem, idesc.op_order_, data); in InstructionDecode() 1372 idesc.mnem, in InstructionDecode() [all …]
|
/external/chromium_org/v8/src/x64/ |
D | disasm-x64.cc | 1259 const InstructionDesc& idesc = cmov_instructions[condition]; in TwoByteOpcodeInstruction() local 1260 byte_size_operand_ = idesc.byte_size_operation; in TwoByteOpcodeInstruction() 1261 current += PrintOperands(idesc.mnem, idesc.op_order_, current); in TwoByteOpcodeInstruction() 1403 const InstructionDesc& idesc = instruction_table_->Get(current); in InstructionDecode() local 1404 byte_size_operand_ = idesc.byte_size_operation; in InstructionDecode() 1405 switch (idesc.type) { in InstructionDecode() 1414 AppendToBuffer("%s%c", idesc.mnem, operand_size_code()); in InstructionDecode() 1416 AppendToBuffer("%s", idesc.mnem, operand_size_code()); in InstructionDecode() 1423 data += PrintOperands(idesc.mnem, idesc.op_order_, data); in InstructionDecode() 1432 idesc.mnem, in InstructionDecode() [all …]
|
/external/chromium_org/chrome/browser/devtools/adb/ |
D | android_usb_device.cc | 55 scoped_refptr<const UsbInterfaceAltSettingDescriptor> idesc = in IsAndroidInterface() local 58 if (idesc->GetInterfaceClass() != kAdbClass || in IsAndroidInterface() 59 idesc->GetInterfaceSubclass() != kAdbSubclass || in IsAndroidInterface() 60 idesc->GetInterfaceProtocol() != kAdbProtocol || in IsAndroidInterface() 61 idesc->GetNumEndpoints() != 2) { in IsAndroidInterface() 72 scoped_refptr<const UsbInterfaceAltSettingDescriptor> idesc = in ClaimInterface() local 79 for (size_t i = 0; i < idesc->GetNumEndpoints(); ++i) { in ClaimInterface() 81 idesc->GetEndpoint(i); in ClaimInterface()
|
/external/v8/src/ia32/ |
D | disasm-ia32.cc | 894 const InstructionDesc& idesc = instruction_table_->Get(*data); in InstructionDecode() local 895 switch (idesc.type) { in InstructionDecode() 897 AppendToBuffer(idesc.mnem); in InstructionDecode() 903 data += PrintOperands(idesc.mnem, idesc.op_order_, data); in InstructionDecode() 911 AppendToBuffer("%s %s", idesc.mnem, NameOfCPURegister(*data & 0x07)); in InstructionDecode() 926 AppendToBuffer("%s %s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode() 933 AppendToBuffer("%s eax, %s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode() 939 AppendToBuffer("%s al, 0x%x", idesc.mnem, data[1]); in InstructionDecode()
|
/external/chromium_org/v8/src/ia32/ |
D | disasm-ia32.cc | 906 const InstructionDesc& idesc = instruction_table_->Get(*data); in InstructionDecode() local 907 switch (idesc.type) { in InstructionDecode() 909 AppendToBuffer(idesc.mnem); in InstructionDecode() 915 data += PrintOperands(idesc.mnem, idesc.op_order_, data); in InstructionDecode() 923 AppendToBuffer("%s %s", idesc.mnem, NameOfCPURegister(*data & 0x07)); in InstructionDecode() 938 AppendToBuffer("%s %s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode() 945 AppendToBuffer("%s eax,%s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode() 951 AppendToBuffer("%s al,0x%x", idesc.mnem, data[1]); in InstructionDecode()
|