Searched refs:three (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Dutf-inl.h45 const uint8_t three = *(*utf8_data_in)++; local
47 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
60 | ((three & 0x3f) << 6) | (four & 0x3f);
66 // Step three : Write out the low (trailing) surrogate to the top 16 bits.
/art/test/093-serialization/src/
H A DMain.java97 String three; field in class:Base
102 three = "three";
127 System.out.println("one=" + one + " two=" + two + " three=" + three
/art/test/046-reflect/src/
H A DMain.java66 String one, two, three, four;
76 three = (String) field.get(instance);
78 System.out.println(" ::: " + one + ":" + two + ":" + three);
218 String three;
220 three = (String) field.get(this);
222 + three);
/art/compiler/optimizing/
H A Dregister_allocator_test.cc427 // Add three temps holding the same register, and starting at different positions.
823 HInstruction* three = new (&allocator) HParameterValue( local
829 entry->AddInstruction(three);
871 LiveInterval* third = BuildInterval(ranges3, arraysize(ranges3), &allocator, -1, three);

Completed in 170 milliseconds