Home
last modified time | relevance | path

Searched refs:idesc (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/v8/src/x64/
Ddisasm-x64.cc1237 const InstructionDesc& idesc = cmov_instructions[condition]; in TwoByteOpcodeInstruction() local
1238 byte_size_operand_ = idesc.byte_size_operation; in TwoByteOpcodeInstruction()
1239 current += PrintOperands(idesc.mnem, idesc.op_order_, current); in TwoByteOpcodeInstruction()
1389 const InstructionDesc& idesc = instruction_table_->Get(current); in InstructionDecode() local
1390 byte_size_operand_ = idesc.byte_size_operation; in InstructionDecode()
1391 switch (idesc.type) { in InstructionDecode()
1400 AppendToBuffer("%s%c", idesc.mnem, operand_size_code()); in InstructionDecode()
1402 AppendToBuffer("%s", idesc.mnem, operand_size_code()); in InstructionDecode()
1409 data += PrintOperands(idesc.mnem, idesc.op_order_, data); in InstructionDecode()
1418 idesc.mnem, in InstructionDecode()
[all …]
/external/chromium_org/chrome/browser/devtools/device/usb/
Dandroid_usb_device.cc66 scoped_refptr<const UsbInterfaceAltSettingDescriptor> idesc = in IsAndroidInterface() local
69 if (idesc->GetInterfaceClass() != kAdbClass || in IsAndroidInterface()
70 idesc->GetInterfaceSubclass() != kAdbSubclass || in IsAndroidInterface()
71 idesc->GetInterfaceProtocol() != kAdbProtocol || in IsAndroidInterface()
72 idesc->GetNumEndpoints() != 2) { in IsAndroidInterface()
83 scoped_refptr<const UsbInterfaceAltSettingDescriptor> idesc = in ClaimInterface() local
90 for (size_t i = 0; i < idesc->GetNumEndpoints(); ++i) { in ClaimInterface()
92 idesc->GetEndpoint(i); in ClaimInterface()
/external/chromium_org/v8/src/ia32/
Ddisasm-ia32.cc892 const InstructionDesc& idesc = instruction_table_->Get(*data); in InstructionDecode() local
893 switch (idesc.type) { in InstructionDecode()
895 AppendToBuffer(idesc.mnem); in InstructionDecode()
901 data += PrintOperands(idesc.mnem, idesc.op_order_, data); in InstructionDecode()
909 AppendToBuffer("%s %s", idesc.mnem, NameOfCPURegister(*data & 0x07)); in InstructionDecode()
924 AppendToBuffer("%s %s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode()
931 AppendToBuffer("%s eax,%s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode()
937 AppendToBuffer("%s al,0x%x", idesc.mnem, data[1]); in InstructionDecode()
/external/chromium_org/v8/src/x87/
Ddisasm-x87.cc892 const InstructionDesc& idesc = instruction_table_->Get(*data); in InstructionDecode() local
893 switch (idesc.type) { in InstructionDecode()
895 AppendToBuffer(idesc.mnem); in InstructionDecode()
901 data += PrintOperands(idesc.mnem, idesc.op_order_, data); in InstructionDecode()
909 AppendToBuffer("%s %s", idesc.mnem, NameOfCPURegister(*data & 0x07)); in InstructionDecode()
924 AppendToBuffer("%s %s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode()
931 AppendToBuffer("%s eax,%s", idesc.mnem, NameOfAddress(addr)); in InstructionDecode()
937 AppendToBuffer("%s al,0x%x", idesc.mnem, data[1]); in InstructionDecode()
/external/mockito/cglib-and-asm/src/org/mockito/asm/
DClassReader.java1367 String idesc = readUTF8(cpIndex + 2, c); in accept() local
1369 mv.visitFieldInsn(opcode, iowner, iname, idesc); in accept()
1371 mv.visitMethodInsn(opcode, iowner, iname, idesc); in accept()