Searched defs:t1 (Results 1 - 4 of 4) sorted by relevance

/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_));
/art/runtime/
H A Dexception_test.cc113 const DexFile::TryItem *t0, *t1; local
115 t1 = dex_->GetTryItems(*code_item, 1);
116 EXPECT_LE(t0->start_addr_, t1->start_addr_);
H A Dclass_linker.cc3068 uint64_t t1 = NanoTime(); local
3083 global_stats->class_init_time_ns += (t1 - t0);
3084 thread_stats->class_init_time_ns += (t1 - t0);
/art/compiler/dex/quick/mips/
H A Dint_mips.cc34 * sgt t1, x.hi, y.hi; # (y.hi > x.hi) ? 1:0
35 * subu res, t0, t1 # res = -1:1:0 for [ < > = ]
39 * subu res, t0, t1
48 int t1 = AllocTemp(); local
51 NewLIR3(kMipsSlt, t1, rl_src2.high_reg, rl_src1.high_reg);
52 NewLIR3(kMipsSubu, rl_result.low_reg, t1, t0);
55 NewLIR3(kMipsSltu, t1, rl_src2.low_reg, rl_src1.low_reg);
56 NewLIR3(kMipsSubu, rl_result.low_reg, t1, t0);
58 FreeTemp(t1);
341 * addu t1,a
[all...]

Completed in 123 milliseconds