/external/valgrind/main/lackey/tests/ |
true.stderr.exp | 18 IRStmts : guest instr = ... : ...
|
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/ |
AndroidJUnit3ClassRunner.java | 31 public AndroidJUnit3ClassRunner(Class<?> klass, Bundle bundle, Instrumentation instr) { 32 super(new AndroidTestSuite(klass.asSubclass(TestCase.class), bundle, instr));
|
/external/chromium_org/v8/src/ |
hydrogen-environment-liveness.cc | 118 HInstruction* instr, 120 switch (instr->opcode()) { 122 HEnvironmentMarker* marker = HEnvironmentMarker::cast(instr); 152 ASSERT(instr->next()->IsSimulate()); 153 ASSERT(instr->next()->next()->IsGoto()); 162 HEnterInlined* enter = HEnterInlined::cast(instr); 172 last_simulate_ = HSimulate::cast(instr); 204 for (HInstruction* instr = block->last(); instr != NULL; 205 instr = instr->previous()) [all...] |
hydrogen-gvn.cc | 102 void Store(GVNFlagSet flags, HInstruction* instr); 355 void HSideEffectMap::Store(GVNFlagSet flags, HInstruction* instr) { 360 data_[i] = instr; 402 HInstruction* instr = it.Current(); local 403 side_effects.Add(instr->ChangesFlags()); 404 if (instr->IsDeoptimize()) { 549 HInstruction* instr = block->first(); local 550 while (instr != NULL) { 551 HInstruction* next = instr->next(); 553 if (instr->CheckFlag(HValue::kUseGVN)) 778 HInstruction* instr = it.Current(); local [all...] |
hydrogen-environment-liveness.h | 57 void UpdateLivenessAtInstruction(HInstruction* instr, BitVector* live);
|
hydrogen-gvn.h | 69 bool ShouldMove(HInstruction* instr, HBasicBlock* loop_header);
|
/external/llvm/utils/ |
codegen-diff | 13 my ($addr, $bytes, $instr) = ($1, $2, $4); 16 $instr =~ s/\s*(.*\S)\s*/$1/; 17 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr}); 18 print "addr=$addr bytes='$bytes' instr='$instr'\n" if $DEBUG; 33 my ($addr, $bytes, $instr) = ($1, $3, $2); 37 $instr =~ s/\s*(.*\S)\s*/$1/; 38 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr}); [all...] |
/frameworks/testing/androidtestlib/src/com/android/test/runner/ |
AndroidRunnerBuilder.java | 36 public AndroidRunnerBuilder(boolean canUseSuiteMethod, Instrumentation instr, Bundle bundle, 39 mAndroidJUnit3Builder = new AndroidJUnit3Builder(instr, bundle, skipExecution); 40 mAndroidJUnit4Builder = new AndroidJUnit4Builder(instr, bundle, skipExecution);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
seq_instr.h | 39 struct snd_seq_instr instr; member in struct:snd_seq_kinstr 98 struct snd_seq_instr *instr, 102 struct snd_seq_kinstr *instr);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
seq_instr.h | 39 struct snd_seq_instr instr; member in struct:snd_seq_kinstr 98 struct snd_seq_instr *instr, 102 struct snd_seq_kinstr *instr);
|
/external/chromium_org/v8/src/mips/ |
simulator-mips.cc | 78 void Stop(Instruction* instr); 86 static const Instr kBreakpointInstr = SPECIAL | BREAK | 0xfffff << 6; 87 static const Instr kNopInstr = 0x0; 125 void MipsDebugger::Stop(Instruction* instr) { 127 uint32_t code = instr->Bits(25, 6); 130 reinterpret_cast<char**>(sim_->get_pc() + Instr::kInstrSize); 145 instr->SetInstructionBits(kNopInstr); 146 reinterpret_cast<Instr*>(msg_address)->SetInstructionBits(kNopInstr); 159 void MipsDebugger::Stop(Instruction* instr) { 161 uint32_t code = instr->Bits(25, 6) 405 Instruction* instr = reinterpret_cast<Instruction*>(sim_->get_pc()); local [all...] |
assembler-mips.h | 520 static const int kInstrSize = sizeof(Instr); 886 static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); } 887 static void instr_at_put(byte* pc, Instr instr) { 888 *reinterpret_cast<Instr*>(pc) = instr; 890 Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); } 891 void instr_at_put(int pos, Instr instr) [all...] |
/external/v8/src/mips/ |
simulator-mips.cc | 78 void Stop(Instruction* instr); 86 static const Instr kBreakpointInstr = SPECIAL | BREAK | 0xfffff << 6; 87 static const Instr kNopInstr = 0x0; 125 void MipsDebugger::Stop(Instruction* instr) { 127 uint32_t code = instr->Bits(25, 6); 130 reinterpret_cast<char**>(sim_->get_pc() + Instr::kInstrSize); 145 instr->SetInstructionBits(kNopInstr); 146 reinterpret_cast<Instr*>(msg_address)->SetInstructionBits(kNopInstr); 159 void MipsDebugger::Stop(Instruction* instr) { 161 uint32_t code = instr->Bits(25, 6) 405 Instruction* instr = reinterpret_cast<Instruction*>(sim_->get_pc()); local [all...] |
assembler-mips.h | 593 static const int kInstrSize = sizeof(Instr); 952 static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); } 953 static void instr_at_put(byte* pc, Instr instr) { 954 *reinterpret_cast<Instr*>(pc) = instr; 956 Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); } 957 void instr_at_put(int pos, Instr instr) [all...] |
/external/chromium_org/v8/src/arm/ |
assembler-arm.cc | 300 Instr* pc = reinterpret_cast<Instr*>(pc_); 301 Instr* instr = reinterpret_cast<Instr*>(instructions); local 303 *(pc + i) = *(instr + i); 460 const Instr kPopInstruction = 465 const Instr kPushRegPattern = 469 const Instr kPopRegPattern = 472 const Instr kMovLrPc = al | MOV | kRegister_pc_Code | kRegister_lr_Code * B12 777 Instr instr = instr_at(pos); local 794 Instr instr = instr_at(pos); local 828 Instr instr = instr_at(l.pos()); local 1720 Instr instr; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-jai.jar | |
/external/emma/core/java12/com/vladium/emma/report/ |
MethodItem.java | 96 final int instr = blockSizes [b]; local 98 totalBlockInstr += instr; 102 coverageBlockInstr += instr; 125 final int instr = blockSizes [b]; local 127 thisLineTotalInstr += instr; 131 thisLineCoverageInstr += instr;
|
/frameworks/testing/androidtestlib/src/com/android/test/runner/listener/ |
CoverageListener.java | 47 * @param instr the {@link Instrumentation} that the test is running under 51 public CoverageListener(Instrumentation instr, String customCoverageFilePath) { 52 super(instr); 55 mCoverageFilePath = instr.getTargetContext().getFilesDir().getAbsolutePath() +
|
/external/v8/src/arm/ |
assembler-arm.cc | 144 Instr* pc = reinterpret_cast<Instr*>(pc_); 145 Instr* instr = reinterpret_cast<Instr*>(instructions); local 147 *(pc + i) = *(instr + i); 239 const Instr kPopInstruction = 244 const Instr kPushRegPattern = 248 const Instr kPopRegPattern = 251 const Instr kMovLrPc = al | MOV | kRegister_pc_Code | kRegister_lr_Code * B12 554 Instr instr = instr_at(pos); local 571 Instr instr = instr_at(pos); local 605 Instr instr = instr_at(l.pos()); local [all...] |
/external/llvm/lib/Target/X86/Disassembler/ |
X86Disassembler.h | 116 DecodeStatus getInstruction(MCInst &instr,
|
/dalvik/vm/compiler/template/mips/ |
funop.S | 3 * Generic 32-bit unary operation. Provide an "instr" line that 20 $instr # v0<- op, a0-a3 changed
|
funopNarrower.S | 3 * Generic 64bit-to-32bit unary operation. Provide an "instr" line 23 $instr # v0<- op, a0-a3 changed
|
funopWider.S | 4 * "instr" line that specifies an instruction that performs "d0 = op s0". 17 $instr # result<- op, a0-a3 changed
|
/dalvik/vm/mterp/arm-vfp/ |
fbinop2addr.S | 3 * an "instr" line that specifies an instruction that performs 18 $instr @ s2<- op
|
fbinopWide2addr.S | 3 * an "instr" line that specifies an instruction that performs 19 $instr @ d2<- op
|