Searched refs:two (Results 1 - 13 of 13) sorted by relevance

/art/test/068-classloader/src-ex/
H A DDoubledImplement.java29 public void two() { method in class:DoubledImplement
30 System.out.println("DoubledImplement two");
H A DDoubledImplement2.java29 public void two() { method in class:DoubledImplement2
30 System.out.println("DoubledImplement2 two");
/art/test/005-annotations/src/android/test/anno/
H A DFullyNoted.java21 @AnnoFancyParameter(factor=3.7879912899761) long two)
30 @AnnoFancyParameter(factor=3.7879912899761) long two)
19 bar( @nnoSimpleParameter int one, @AnnoFancyParameter(factor=3.7879912899761) long two) argument
28 bar1( @nnoSimpleParameter int one, @AnnoFancyParameter(factor=3.7879912899761) long two) argument
/art/libdexfile/dex/
H A Dutf-inl.h39 const uint8_t two = *(*utf8_data_in)++; local
41 // two-byte encoding
42 return ((one & 0x1f) << 6) | (two & 0x3f);
47 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
59 const uint32_t code_point = ((one & 0x0f) << 18) | ((two & 0x3f) << 12)
63 // Step two: Write out the high (leading) surrogate to the bottom 16 bits
/art/test/641-checker-arraycopy/src/
H A DMain.java50 public static void assertEquals(Object one, Object two) { argument
51 if (one != two) {
52 throw new Error("Expected " + one + ", got " + two);
/art/test/050-sync-test/src/
H A DMain.java48 CpuThread one, two;
51 two = new CpuThread(2);
63 two.start();
69 two.join();
/art/test/093-serialization/src/
H A DMain.java96 Integer two; field in class:Base
101 two = Integer.valueOf(2);
127 System.out.println("one=" + one + " two=" + two + " three=" + three
/art/test/ti-agent/
H A Dti_utf.h74 const uint8_t two = *(*utf8_data_in)++; local
76 // two-byte encoding
77 return ((one & 0x1f) << 6) | (two & 0x3f);
82 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
94 const uint32_t code_point = ((one & 0x0f) << 18) | ((two & 0x3f) << 12)
98 // Step two: Write out the high (leading) surrogate to the bottom 16 bits
/art/test/046-reflect/src/
H A DMain.java66 String one, two, three, four;
73 two = (String) field.get(instance);
78 System.out.println(" ::: " + one + ":" + two + ":" + three);
/art/compiler/optimizing/
H A Dregister_allocator_test.cc106 // Test with two intervals of the same range.
118 // Test with two non-intersecting intervals.
131 // Test with two non-intersecting intervals, with one with a lifetime hole.
431 * allocating for at the minimum lifetime position between the two inactive intervals.
870 HInstruction* two = new (GetAllocator()) HParameterValue( local
877 entry->AddInstruction(two);
910 LiveInterval* second = BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), -1, two);
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S1319 bnez $t2, .Lslow_lock # if either of the top two bits are set, go slow path
1367 bnez $t2, .Lslow_unlock # if either of the top two bits are set, go slow path
1773 # combine the two shifts together.
2249 # when the first two arguments are both single precision floats. This lets
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S1265 bnezc $t2, .Lslow_lock # if either of the top two bits are set, go slow path
1312 bnezc $t2, .Lslow_unlock # if either of the top two bits are set, go slow path
1698 # combine the two shifts together.
/art/runtime/arch/arm/
H A Dquick_entrypoints_arm.S700 cbnz r3, .Lslow_lock @ if either of the top two bits are set, go slow path
750 cbnz r2, .Lslow_unlock @ if either of the top two bits are set, go slow path
1201 // two shifts together.
2466 // Check if the top two bits are one, if this is the case it is a forwarding address.

Completed in 223 milliseconds