Searched defs:three (Results 1 - 3 of 3) 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/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 173 milliseconds