Home
last modified time | relevance | path

Searched refs:ord (Results 1 – 3 of 3) sorted by relevance

/art/tools/
Dstream-trace-converter.py36 return ord(byte1) + (ord(byte2) << 8);
56 return ord(byte1) + (ord(byte2) << 8) + (ord(byte3) << 16) + (ord(byte4) << 24);
134 code = ord(input.read(1))
/art/test/719-varhandle-concurrency/src/
DMain.java208 private final Integer ord; field in Main.TestTask
211 TestTask(Integer ord, Consumer<Integer> action) { in TestTask() argument
212 this.ord = ord; in TestTask()
217 action.accept(ord); in exec()
/art/compiler/optimizing/
Dload_store_elimination_test.cc301 std::ostream& operator<<(std::ostream& os, const TestOrder& ord) { in operator <<() argument
302 switch (ord) { in operator <<()