Searched defs:second (Results 1 - 13 of 13) sorted by relevance

/art/test/626-const-class-linking/src/
H A DClassPair.java19 public Class<?> second; field in class:ClassPair
21 public ClassPair(Class<?> first, Class<?> second) { argument
23 this.second = second;
29 String second_loader_name = second.getClassLoader().getClass().getName();
30 System.out.println("second: " + second.getName() + " class loader: " + second_loader_name);
/art/libdexfile/dex/
H A Dutf.cc185 const uint16_t second = GetTrailingUtf16Char(pair); local
186 if (second != 0) {
187 hash = hash * 31 + second;
H A Dutf_test.cc180 const std::vector<uint8_t>& prefix_out = prefix.second;
183 const std::vector<uint8_t>& test_out = test.second;
186 const std::vector<uint8_t>& suffix_out = suffix.second;
309 static void codePointToSurrogatePair(uint32_t code_point, uint16_t &first, uint16_t &second) { argument
311 second = (code_point & 0x03ff) + 0xdc00;
/art/compiler/optimizing/
H A Dregister_allocator_test.cc815 HInstruction* second = new (GetAllocator()) HParameterValue( local
818 entry->AddInstruction(second);
825 DataType::Type::kInt32, first, second, 0); // don't care about dex_pc.
910 LiveInterval* second = BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), -1, two); local
912 new (GetAllocator()) LocationSummary(second->GetDefinedBy(), LocationSummary::kNoCall);
949 register_allocator.unhandled_core_intervals_.push_back(second);
962 intervals.push_back(second);
H A Dinstruction_builder.cc615 HInstruction* second = LoadLocal(instruction.VRegB(), DataType::Type::kInt32); local
616 T* comparison = new (allocator_) T(first, second, dex_pc);
654 HInstruction* second = LoadLocal(instruction.VRegC(), type); local
655 AppendInstruction(new (allocator_) T(type, first, second, dex_pc));
664 HInstruction* second = LoadLocal(instruction.VRegC(), DataType::Type::kInt32); local
665 AppendInstruction(new (allocator_) T(type, first, second, dex_pc));
674 HInstruction* second = LoadLocal(instruction.VRegC(), type); local
675 AppendInstruction(new (allocator_) HCompare(type, first, second, bias, dex_pc));
684 HInstruction* second = LoadLocal(instruction.VRegB(), DataType::Type::kInt32); local
685 AppendInstruction(new (allocator_) T(type, first, second, dex_p
694 HInstruction* second = LoadLocal(instruction.VRegB(), type); local
702 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22s(), dex_pc); local
713 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22b(), dex_pc); local
1645 HInstruction* second = nullptr; local
[all...]
H A Dnodes.cc372 static void FixPhisAfterPredecessorsReodering(HBasicBlock* block, size_t first, size_t second) { argument
376 HInstruction* second_instr = phi->InputAt(second);
377 phi->ReplaceInput(first_instr, second);
2443 // with the second half.
H A Dcode_generator_arm64.cc3267 Location second = locations->InAt(1); local
3268 DCHECK(second.IsConstant());
3272 int64_t imm = Int64FromConstant(second.GetConstant());
3290 Location second = locations->InAt(1); local
3291 DCHECK(second.IsConstant());
3295 int64_t imm = Int64FromConstant(second.GetConstant());
3325 Location second = locations->InAt(1); local
3326 DCHECK(second.IsConstant());
3330 int64_t imm = Int64FromConstant(second.GetConstant());
3380 Location second local
[all...]
H A Dcode_generator_arm_vixl.cc1559 const Operand& second,
1561 if (second.IsImmediate() && second.GetImmediate() == 0) {
1570 __ Add(out, first, second);
1573 __ And(out, first, second);
1576 __ Orr(out, first, second);
1579 __ Sub(out, first, second);
1582 __ Eor(out, first, second);
1627 const Location second = locations->InAt(1); local
1633 const vixl32::Register second_hi = HighRegisterFrom(second);
1556 GenerateDataProcInstruction(HInstruction::InstructionKind kind, vixl32::Register out, vixl32::Register first, const Operand& second, CodeGeneratorARMVIXL* codegen) argument
3080 const Location second = locations->InAt(1); local
4158 Location second = locations->InAt(1); local
4221 Location second = locations->InAt(1); local
4279 Location second = locations->InAt(1); local
4332 Location second = instruction->GetLocations()->InAt(1); local
4356 Location second = locations->InAt(1); local
4390 Location second = locations->InAt(1); local
4432 Location second = instruction->GetLocations()->InAt(1); local
4641 Location second = locations->InAt(1); local
4926 Location second = locations->InAt(1); local
6616 Location second = instruction->GetLocations()->InAt(1); local
6980 vixl32::DRegister second = DRegisterFrom(destination); local
7980 Location second = locations->InAt(1); local
8054 const vixl32::Register second = instruction->InputAt(1)->GetType() == DataType::Type::kInt64 local
8091 const vixl32::Register second = InputRegisterAt(instruction, 1); local
8196 Location second = locations->InAt(1); local
[all...]
H A Dcode_generator_mips.cc1058 it.second.start = __ GetAdjustedPosition(it.second.start);
1059 it.second.end = __ GetAdjustedPosition(it.second.end);
3704 Location second = locations->InAt(1); local
3705 DCHECK(second.IsConstant());
3706 int64_t imm = Int64FromConstant(second.GetConstant());
3750 Location second = locations->InAt(1); local
3753 DCHECK(second.IsConstant());
3758 int32_t imm = second
3956 Location second = locations->InAt(1); local
4008 Location second = locations->InAt(1); local
[all...]
H A Dcode_generator_x86.cc2973 Location second = locations->InAt(1); local
2978 if (second.IsRegister()) {
2980 __ addl(out.AsRegister<Register>(), second.AsRegister<Register>());
2981 } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) {
2985 first.AsRegister<Register>(), second.AsRegister<Register>(), TIMES_1, 0));
2987 } else if (second.IsConstant()) {
2988 int32_t value = second.GetConstant()->AsIntConstant()->GetValue();
2996 __ addl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
3002 if (second.IsRegisterPair()) {
3003 __ addl(first.AsRegisterPairLow<Register>(), second
3092 Location second = locations->InAt(1); local
3210 Location second = locations->InAt(1); local
3402 Location second = locations->InAt(1); local
3572 Location second = locations->InAt(1); local
3692 Location second = locations->InAt(1); local
3903 Location second = locations->InAt(1); local
4098 Location second = locations->InAt(1); local
6978 Location second = locations->InAt(1); local
[all...]
H A Dcode_generator_x86_64.cc3056 Location second = locations->InAt(1); local
3061 if (second.IsRegister()) {
3063 __ addl(out.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
3064 } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) {
3068 first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>(), TIMES_1, 0));
3070 } else if (second.IsConstant()) {
3073 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
3076 first.AsRegister<CpuRegister>(), second.GetConstant()->AsIntConstant()->GetValue()));
3080 __ addl(first.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
3086 if (second
3176 Location second = locations->InAt(1); local
3279 Location second = locations->InAt(1); local
3388 Location second = locations->InAt(1); local
3439 Location second = locations->InAt(1); local
3480 Location second = locations->InAt(1); local
3526 Location second = locations->InAt(1); local
3642 Location second = locations->InAt(1); local
3725 Location second = locations->InAt(1); local
3903 Location second = locations->InAt(1); local
3978 Location second = locations->InAt(1); local
6378 Location second = locations->InAt(1); local
[all...]
H A Dnodes.h626 constant = cached_constant->second;
1627 * second line indicates the type of the access (in the order of the
3554 HInstruction* second,
3559 second,
3640 HEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3641 : HCondition(kEqual, first, second, dex_pc) {
3686 HNotEqual(HInstruction* first, HInstruction* second, argument
3688 : HCondition(kNotEqual, first, second, dex_pc) {
3732 HLessThan(HInstruction* first, HInstruction* second, argument
3734 : HCondition(kLessThan, first, second, dex_p
3552 HCondition(InstructionKind kind, HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3772 HLessThanOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3812 HGreaterThan(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3851 HGreaterThanOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3890 HBelow(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3932 HBelowOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3974 HAbove(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
4016 HAboveOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
4063 HCompare(DataType::Type comparison_type, HInstruction* first, HInstruction* second, ComparisonBias bias, uint32_t dex_pc) argument
[all...]
/art/runtime/mirror/
H A Ddex_cache.h458 ConversionPair(IntType f, IntType s) : first(f), second(s) { }
462 IntType second; variable
490 uint64_t first, second; local
493 : "=&a"(first), "=&d"(second)
496 return ConversionPair64(first, second);
501 uint64_t first, second; local
508 : "=&a"(first), "=&d"(second)
509 : "r"(target), "b"(value.first), "c"(value.second)

Completed in 1262 milliseconds