HomeSort by relevance Sort by last modified time
    Searched refs:instr (Results 226 - 250 of 504) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/
llvm-tblgen-rules.mk 50 $(call transform-td-to-out,instr-info)
67 $(call transform-td-to-out,instr-info)
84 $(call transform-td-to-out,instr-info)
104 $(call transform-td-to-out,instr-info)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sound/
sfnt_info.h 57 #define SNDRV_SFNT_REMOVE_INFO 9 /* optarg=(bank<<8)|instr */
146 unsigned char instr; /* midi preset number */ member in struct:soundfont_voice_rec_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sound/
sfnt_info.h 57 #define SNDRV_SFNT_REMOVE_INFO 9 /* optarg=(bank<<8)|instr */
146 unsigned char instr; /* midi preset number */ member in struct:soundfont_voice_rec_hdr
  /art/runtime/arch/arm/
fault_handler_arm.cc 44 uint16_t instr = pc[0] | pc[1] << 8; local
45 bool is_32bit = ((instr & 0xF000) == 0xF000) || ((instr & 0xF800) == 0xE800);
  /external/emma/core/java12/com/vladium/emma/report/
SrcFileItem.java 182 final int instr = mbsizes [block]; local
184 data [1] += instr;
188 data [3] += instr;
  /art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc 332 const Instruction* instr = Instruction::At(&code->insns_[dex_pc]); local
333 Instruction::Code instr_code = instr->Opcode();
376 LOG(FATAL) << "Unexpected call into trampoline: " << instr->DumpString(NULL);
381 uint32_t dex_method_idx = (is_range) ? instr->VRegB_3rc() : instr->VRegB_35c();
  /external/chromium_org/v8/src/mips/
macro-assembler-mips.h 451 static inline bool IsMarkedCode(Instr instr, int type) {
453 return IsNop(instr, type);
457 static inline int GetCodeMarker(Instr instr) {
458 uint32_t opcode = ((instr & kOpcodeMask));
459 uint32_t rt = ((instr & kRtFieldMask) >> kRtShift);
460 uint32_t rs = ((instr & kRsFieldMask) >> kRsShift);
461 uint32_t sa = ((instr & kSaFieldMask) >> kSaShift);
559 #define DEFINE_INSTRUCTION(instr) \
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp 65 if (DEBUGME) errs() << "New instr: " << *i << "\n"
484 // Remove unconditional branch instr.
2905 MachineInstr *instr = &(*iter); local
2915 MachineInstr *instr = &*iter; local
2934 MachineInstr *instr = &*iter; local
2949 MachineInstr *instr = &(*iter); local
2960 MachineInstr *instr = &(*iter); local
2970 MachineInstr *instr = &(*iter); local
2979 MachineInstr *instr = getReturnInstr(blk); local
3182 MachineInstr *instr = func->CloneMachineInstr(iter); local
    [all...]
Makefile 43 $(call tablegen, -gen-instr-info, AMDGPU.td, $@)
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp 65 if (DEBUGME) errs() << "New instr: " << *i << "\n"
484 // Remove unconditional branch instr.
2905 MachineInstr *instr = &(*iter); local
2915 MachineInstr *instr = &*iter; local
2934 MachineInstr *instr = &*iter; local
2949 MachineInstr *instr = &(*iter); local
2960 MachineInstr *instr = &(*iter); local
2970 MachineInstr *instr = &(*iter); local
2979 MachineInstr *instr = getReturnInstr(blk); local
3182 MachineInstr *instr = func->CloneMachineInstr(iter); local
    [all...]
Makefile 43 $(call tablegen, -gen-instr-info, AMDGPU.td, $@)
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3string.c 677 printable8(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING instr)
688 string = factory->newSize(factory, instr->len *2 + 1);
695 for (i = 0; i < instr->len; i++)
697 if (*(instr->chars + i) == '\n')
702 else if (*(instr->chars + i) == '\r')
707 else if (!isprint(*(instr->chars +i)))
713 *scannedText++ = *(instr->chars + i);
724 printableUTF16(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING instr)
737 string = factory->newSize(factory, instr->len *2 + 1);
743 inText = (pANTLR3_UINT16)(instr->chars)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_vertprog.c 602 o_inst = vp->instr;
780 if ((o_inst - vp->instr) == 31) {
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_vertprog.c 602 o_inst = vp->instr;
780 if ((o_inst - vp->instr) == 31) {
    [all...]
  /external/chromium_org/v8/src/
hydrogen.cc 126 void HBasicBlock::AddInstruction(HInstruction* instr,
129 ASSERT(!instr->IsLinked());
133 instr->set_position(position);
148 instr->InsertAfter(last_);
173 HSimulate* instr = local
176 instr->set_closure(environment->closure());
182 instr->AddPushedValue(environment->ExpressionStackAt(i));
189 instr->AddAssignedValue(index, environment->Lookup(index));
192 return instr;
223 HGoto* instr = new(zone()) HGoto(block) local
243 HGoto* instr = new(zone()) HGoto(target); local
4471 HInstruction* instr = Add<HStoreFrameContext>(inner_context); local
4489 HInstruction* instr = Add<HStoreFrameContext>(outer_context); local
4621 HInstruction* instr = Add<HStoreFrameContext>(context); local
4653 HInstruction* instr = Add<HStoreFrameContext>(context); local
5265 HConstant* instr = New<HConstant>(constant_value); local
5290 HLoadGlobalCell* instr = local
5298 HLoadGlobalGeneric* instr = local
5332 HLoadContextSlot* instr = local
5347 HConstant* instr = New<HConstant>(expr->value()); local
5358 HRegExpLiteral* instr = New<HRegExpLiteral>(literals, local
5683 HStoreKeyed* instr = Add<HStoreKeyed>(elements, key, value, local
5761 HStoreNamedField *instr; local
6249 HInstruction* instr = BuildNamedGeneric(access_type, object, name, value); local
6325 HInstruction* instr = BuildNamedAccess(STORE, ast_id, return_id, expr, local
6387 HInstruction* instr = local
6396 HStoreNamedGeneric* instr = local
6472 HStoreContextSlot* instr = Add<HStoreContextSlot>( local
6619 HStoreContextSlot* instr = Add<HStoreContextSlot>( local
6835 HInstruction* instr = BuildUncheckedMonomorphicElementAccess( local
6910 HInstruction* instr = NULL; local
6984 HInstruction* instr = NULL; local
7167 HInstruction* instr = NULL; local
9202 HInstruction* instr = current_block()->last(); local
9683 HInstruction* instr = New<HInvokeFunction>(function, 3); local
9718 HInstruction* instr = New<HTypeof>(value); local
9795 HInstruction* instr = AddUncasted<HAdd>(Top(), delta); local
9886 HStoreContextSlot* instr = Add<HStoreContextSlot>(context, var->index(), local
10227 HInstruction* instr = NULL; local
10488 HTypeofIsAndBranch* instr = New<HTypeofIsAndBranch>(value, check); local
10534 HClassOfTestAndBranch* instr = New<HClassOfTestAndBranch>(value, rhs); local
10751 HCompareObjectEqAndBranch* instr = local
11051 HInstruction* instr = BuildThisFunction(); local
    [all...]
  /external/chromium_org/v8/src/arm64/
assembler-arm64-inl.h 573 Instruction* instr = reinterpret_cast<Instruction*>(pc);
574 ASSERT(instr->IsLdrLiteralX());
575 return reinterpret_cast<Address>(instr->ImmPCOffsetTarget());
599 Instruction* instr = reinterpret_cast<Instruction*>(candidate);
600 USE(instr);
601 ASSERT(instr->IsLdrLiteralX());
626 Instruction* instr = reinterpret_cast<Instruction*>(pc);
627 if (instr->IsMovz()) {
629 ASSERT(instr->following(1)->IsMovk());
630 ASSERT(instr->following(2)->IsMovk())
    [all...]
assembler-arm64.cc 179 Instruction* instr = reinterpret_cast<Instruction*>(pc_); local
180 return instr->IsLdrLiteralX();
186 Instr* pc = reinterpret_cast<Instr*>(pc_);
187 Instr* instr = reinterpret_cast<Instr*>(instructions); local
189 *(pc + i) = *(instr + i);
643 bool Assembler::IsConstantPoolAt(Instruction* instr) {
647 bool result = instr->IsLdrLiteralX() && (instr->Rt() == xzr.code())
703 Instruction* instr = reinterpret_cast<Instruction*>(pc_); local
2628 Instruction* instr = reinterpret_cast<Instruction*>(rinfo.pc()); local
    [all...]
  /external/chromium_org/v8/src/arm/
assembler-arm-inl.h 312 Instr current_instr = Assembler::instr_at(pc_);
313 Instr next_instr = Assembler::instr_at(pc_ + Assembler::kInstrSize);
323 Instr current_instr = Assembler::instr_at(pc_);
424 void Assembler::emit(Instr x) {
426 *reinterpret_cast<Instr*>(pc_) = x;
432 Instr instr = Memory::int32_at(pc); local
433 return pc + GetLdrRegisterImmediateOffset(instr) + kPcLoadDelta;
441 Instr instr = Memory::int32_at(pc) local
451 Instruction* instr = Instruction::At(pc); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_tgsi.c 380 struct tgsi_full_instruction *instr = bld_base->instructions + local
383 tgsi_get_opcode_info(instr->Instruction.Opcode);
384 if (!lp_build_tgsi_inst_llvm(bld_base, instr)) {
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi.c 380 struct tgsi_full_instruction *instr = bld_base->instructions + local
383 tgsi_get_opcode_info(instr->Instruction.Opcode);
384 if (!lp_build_tgsi_inst_llvm(bld_base, instr)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchConfigDelegate.java 132 for (Instrumentation instr : manifestParser.getInstrumentations()) {
133 if (instr.getName().equals(runner)) {
134 return instr.getTargetPackage();
  /frameworks/testing/support/src/android/support/test/internal/runner/
TestRequestBuilder.java 563 public TestRequest build(Instrumentation instr, Bundle bundle) {
569 Request request = classes(instr, bundle, mSkipExecution, new Computer(),
578 * @param instr the {@link Instrumentation} to inject into any tests that require it
586 private static Request classes(Instrumentation instr, Bundle bundle, boolean skipExecution,
589 AndroidRunnerBuilder builder = new AndroidRunnerBuilder(instr, bundle, skipExecution);
  /external/emma/lib/
emma.jar 
  /external/owasp/sanitizer/tools/emma/lib/
emma.jar 
  /external/llvm/lib/Target/Mips/Disassembler/
MipsDisassembler.cpp 79 DecodeStatus getInstruction(MCInst &instr,
98 DecodeStatus getInstruction(MCInst &instr,
744 MipsDisassembler::getInstruction(MCInst &instr,
760 Result = decodeInstruction(DecoderTableMicroMips32, instr, Insn, Address,
772 decodeInstruction(DecoderTableCOP3_32, instr, Insn, Address, this, STI);
781 Result = decodeInstruction(DecoderTableMips32r6_64r6_GP6432, instr, Insn,
791 Result = decodeInstruction(DecoderTableMips32r6_64r632, instr, Insn,
801 Result = decodeInstruction(DecoderTableMips32, instr, Insn, Address,
812 Mips64Disassembler::getInstruction(MCInst &instr,
826 Result = decodeInstruction(DecoderTableMips6432, instr, Insn, Address
    [all...]

Completed in 1273 milliseconds

1 2 3 4 5 6 7 8 91011>>