Searched refs:t1 (Results 1 - 9 of 9) sorted by relevance

/art/runtime/arch/mips/
H A Dmemcmp16_mips.S25 li $t1,0
31 lhu $t1,0($a1)
33 bne $t0,$t1,done
39 subu $v0,$t0,$t1
H A Dquick_entrypoints_mips.S312 lw $t1, 36($a0)
525 lw $t1, 20($sp) # get shorty
526 lb $t1, 0($t1) # get result type char
528 beq $t1, $t2, 1f # branch if result type char == 'D'
530 beq $t1, $t3, 1f # branch if result type char == 'F'
634 sltu $t1, $a1, $t0
635 bnez $t1, .Lart_quick_aput_obj_gp_set
648 lw $t1, CLASS_OFFSET($a2)
650 bne $t1,
[all...]
/art/test/122-secondarydex/src/
H A DMain.java32 Test t1 = new Test();
35 t1.test(t2);
36 t1.test(t3);
/art/test/051-thread/src/
H A DMain.java145 PriorityStoringThread t1 = new PriorityStoringThread(false);
146 t1.setPriority(Thread.MAX_PRIORITY);
147 t1.start();
148 t1.join();
149 if (supportsThreadPriorities() && (t1.getNativePriority() != Thread.MAX_PRIORITY)) {
150 System.out.print("thread priority for t1 was " + t1.getNativePriority() +
/art/compiler/sea_ir/types/
H A Dtype_inference_visitor.cc101 const Type* TypeInferenceVisitor::MergeTypes(const Type* t1, const Type* t2) const { argument
103 DCHECK(t1 != NULL);
105 const Type* result = &(t1->Merge(*t2, type_cache_));
H A Dtype_inference_visitor.h60 const Type* MergeTypes(const Type* t1, const Type* t2) const;
/art/runtime/
H A Dexception_test.cc131 const DexFile::TryItem *t0, *t1; local
133 t1 = dex_->GetTryItems(*code_item, 1);
134 EXPECT_LE(t0->start_addr_, t1->start_addr_);
H A Dclass_linker.cc4251 uint64_t t1 = NanoTime(); local
4266 global_stats->class_init_time_ns += (t1 - t0);
4267 thread_stats->class_init_time_ns += (t1 - t0);
/art/compiler/dex/quick/mips/
H A Dint_mips.cc35 * sgt t1, x.hi, y.hi; # (y.hi > x.hi) ? 1:0
36 * subu res, t0, t1 # res = -1:1:0 for [ < > = ]
40 * subu res, t0, t1
49 RegStorage t1 = AllocTemp(); local
52 NewLIR3(kMipsSlt, t1.GetReg(), rl_src2.reg.GetHighReg(), rl_src1.reg.GetHighReg());
53 NewLIR3(kMipsSubu, rl_result.reg.GetReg(), t1.GetReg(), t0.GetReg());
56 NewLIR3(kMipsSltu, t1.GetReg(), rl_src2.reg.GetLowReg(), rl_src1.reg.GetLowReg());
57 NewLIR3(kMipsSubu, rl_result.reg.GetReg(), t1.GetReg(), t0.GetReg());
59 FreeTemp(t1);
403 * addu t1,a
[all...]

Completed in 2414 milliseconds