Searched refs:instr (Results 151 - 175 of 201) sorted by relevance

123456789

/external/kernel-headers/original/linux/mtd/
H A Dnand.h515 extern int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
/external/llvm/lib/Target/XCore/Disassembler/
H A DXCoreDisassembler.cpp38 virtual DecodeStatus getInstruction(MCInst &instr,
750 XCoreDisassembler::getInstruction(MCInst &instr, argument
763 DecodeStatus Result = decodeInstruction(DecoderTable16, instr, insn16,
777 Result = decodeInstruction(DecoderTable32, instr, insn32, Address, this, STI);
/external/chromium_org/v8/src/arm/
H A Dic-arm.cc1591 Instr instr = Assembler::instr_at(cmp_instruction_address); local
1592 return Assembler::IsCmpImmediate(instr);
1602 Instr instr = Assembler::instr_at(cmp_instruction_address); local
1603 if (!Assembler::IsCmpImmediate(instr)) {
1609 int delta = Assembler::GetCmpImmediateRawImmediate(instr);
1611 Assembler::GetCmpImmediateRegister(instr).code() * kOff12Mask;
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp693 if (const Instruction *instr = dyn_cast<Instruction>(U)) {
694 if (instr->getParent() && instr->getParent()->getParent()) {
695 const Function *curFunc = instr->getParent()->getParent();
797 const Instruction *instr = cast<Instruction>(*iter); local
798 const BasicBlock *bb = instr->getParent();
/external/llvm/lib/Target/R600/
H A DAMDILCFGStructurizer.cpp64 DEBUG(dbgs() << "New instr: " << *i << "\n");
618 MachineInstr *instr = &(*It); local
619 if (instr->getDebugLoc().isUnknown() == false)
620 DL = instr->getDebugLoc();
653 MachineInstr *instr = &(*It); local
654 if (instr->getOpcode() == AMDGPU::RETURN)
655 return instr;
678 <<" is return block without RETURN instr\n";);
765 // Remove unconditional branch instr.
1569 // insertEnd to ensure phi-moves, if exist, go before the continue-instr
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3defs.h490 #define ANTLR3_STRDUP(instr) (pANTLR3_UINT8)(strdup ((const char *)(instr)))
/external/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h325 SUnit(MachineInstr *instr, unsigned nodenum) argument
326 : Node(0), Instr(instr), OrigNode(0), SchedClass(0), NodeNum(nodenum),
H A DSlotIndexes.h407 /// Returns true if the given machine instr is mapped to an index,
409 bool hasIndex(const MachineInstr *instr) const {
410 return mi2iMap.count(instr);
591 // Get a number for the new instr, or 0 if there's no room currently.
623 /// ReplaceMachineInstrInMaps - Replacing a machine instr with a new one in
/external/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp115 X86GenericDisassembler::getInstruction(MCInst &instr, argument
144 return (!translateInstruction(instr, internalInstr, this)) ?
/external/oprofile/events/mips/sb1/
H A Devents24 event:0x21 counters:1,2,3 um:zero minimum:500 name:NO_VALID_INSN :No valid instr to issue
/external/valgrind/main/callgrind/
H A Dcallgrind_control.in80 print " -i --instr=on|off Switch instrumentation state on/off\n";
244 elsif ($arg =~ /^(-i|--instr)(|=on|=off)$/) {
H A Dbb.c119 * - instr_len, cost_count, instr[]
143 bb->jmp = (CJmpInfo*) &(bb->instr[instr_count]);
162 VG_(printf)(" new_bb (instr %d, jmps %d, inv %s) [now %d]: ",
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_context.h65 /* need excess instr: 1 for late loop checking, 2 for
66 additional instr due to instr/attr, 3 for fog */
67 VERTEX_SHADER_INSTRUCTION instr[R200_VSF_MAX_INST + 6]; member in struct:r200_vertex_program
/external/chromium_org/v8/src/x64/
H A Ddisasm-x64.cc1333 // Disassembles the instruction at instr, and writes it into out_buffer.
1335 byte* instr) {
1337 byte* data = instr;
1752 int instr_len = static_cast<int>(data - instr);
1757 for (byte* bp = instr; bp < data; bp++) {
1334 InstructionDecode(v8::internal::Vector<char> out_buffer, byte* instr) argument
/external/emma/core/java12/com/vladium/emma/rt/
H A DClassPathProcessorST.java33 import com.vladium.emma.instr.InstrVisitor;
48 // construct instr path enumerator [throws on illegal input only]:
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_context.h65 /* need excess instr: 1 for late loop checking, 2 for
66 additional instr due to instr/attr, 3 for fog */
67 VERTEX_SHADER_INSTRUCTION instr[R200_VSF_MAX_INST + 6]; member in struct:r200_vertex_program
/external/v8/src/ia32/
H A Ddisasm-ia32.cc877 // Disassembled instruction '*instr' and writes it into 'out_buffer'.
879 byte* instr) {
881 byte* data = instr;
1576 int instr_len = data - instr;
1584 for (byte* bp = instr; bp < data; bp++) {
878 InstructionDecode(v8::internal::Vector<char> out_buffer, byte* instr) argument
/external/v8/src/x64/
H A Ddisasm-x64.cc1318 // Disassembles the instruction at instr, and writes it into out_buffer.
1320 byte* instr) {
1322 byte* data = instr;
1732 int instr_len = static_cast<int>(data - instr);
1737 for (byte* bp = instr; bp < data; bp++) {
1319 InstructionDecode(v8::internal::Vector<char> out_buffer, byte* instr) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_aos.c1079 struct tgsi_full_instruction *instr = bld.bld_base.instructions + pc; local
1081 tgsi_get_opcode_info(instr->Instruction.Opcode);
1082 if (!lp_emit_instruction_aos(&bld, instr, opcode_info, &pc))
/external/kernel-headers/original/linux/
H A Dsoundcard.h1080 # define SEQ_LOAD_GMINSTR(dev, instr) \
1081 OSS_patch_caching(dev, -1, instr, seqfd, _seqbuf, _seqbuflen)
1086 # define SEQ_LOAD_GMINSTR(dev, instr)
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_aos.c1079 struct tgsi_full_instruction *instr = bld.bld_base.instructions + pc; local
1081 tgsi_get_opcode_info(instr->Instruction.Opcode);
1082 if (!lp_emit_instruction_aos(&bld, instr, opcode_info, &pc))
/external/v8/src/mips/
H A Dic-mips.cc1702 Instr instr = Assembler::instr_at(andi_instruction_address); local
1703 if (!(Assembler::IsAndImmediate(instr) &&
1704 Assembler::GetRt(instr) == (uint32_t)zero_reg.code())) {
1710 int delta = Assembler::GetImmediate16(instr);
1711 delta += Assembler::GetRs(instr) * kImm16Mask;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/v8/src/ia32/
H A Ddisasm-ia32.cc880 // Disassembled instruction '*instr' and writes it into 'out_buffer'.
882 byte* instr) {
884 byte* data = instr;
1604 int instr_len = data - instr;
1612 for (byte* bp = instr; bp < data; bp++) {
881 InstructionDecode(v8::internal::Vector<char> out_buffer, byte* instr) argument
/external/llvm/lib/Target/SystemZ/Disassembler/
H A DSystemZDisassembler.cpp30 virtual DecodeStatus getInstruction(MCInst &instr,

Completed in 769 milliseconds

123456789