Home
last modified time | relevance | path

Searched refs:one (Results 1 – 25 of 35) sorted by relevance

12

/art/runtime/
Dutf-inl.h33 const uint8_t one = *(*utf8_data_in)++; in GetUtf16FromUtf8() local
34 if ((one & 0x80) == 0) { in GetUtf16FromUtf8()
36 return one; in GetUtf16FromUtf8()
40 if ((one & 0x20) == 0) { in GetUtf16FromUtf8()
42 return ((one & 0x1f) << 6) | (two & 0x3f); in GetUtf16FromUtf8()
46 if ((one & 0x10) == 0) { in GetUtf16FromUtf8()
47 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f); in GetUtf16FromUtf8()
59 const uint32_t code_point = ((one & 0x0f) << 18) | ((two & 0x3f) << 12) in GetUtf16FromUtf8()
/art/test/050-sync-test/src/
DMain.java48 CpuThread one, two; in countTest() local
50 one = new CpuThread(1); in countTest()
53 synchronized (one) { in countTest()
54 one.start(); in countTest()
56 one.wait(); in countTest()
68 one.join(); in countTest()
/art/tools/
Dsymbolize.sh29 function one() { function
57 one $DIR $NAME
69 one $DIR $NAME
/art/test/047-returns/
Dexpected.txt2 one running
3 one
/art/test/005-annotations/src/android/test/anno/
DFullyNoted.java20 @AnnoSimpleParameter int one, in bar()
29 @AnnoSimpleParameter int one, in bar1()
/art/test/093-serialization/src/
DMain.java95 Boolean one; field in Base
100 one = true; in Base()
127 System.out.println("one=" + one + " two=" + two + " three=" + three in check()
/art/test/003-omnibus-opcodes/src/
DThrow.java29 public void one() { in one() method in Throw
119 th.one(); in run()
DIntMath.java91 int one = thirtyTwo / 32; in shiftTest3() local
99 Main.assertTrue(1 << -one == -2147483648); in shiftTest3()
107 Main.assertTrue(1 >> -one == 0); in shiftTest3()
115 Main.assertTrue(1 >>> -one == 0); in shiftTest3()
/art/test/474-checker-boolean-input/
Dinfo.txt1 Tests if zero/one constants and integer Phis are accepted as boolean values.
/art/test/068-classloader/src/
DDoubledImplement.java29 public void one() { in one() method in DoubledImplement
DDoubledImplement2.java29 public void one() { in one() method in DoubledImplement2
/art/test/093-serialization/
Dexpected.txt1 one=true two=2 three=three four=4.0 five=5.0 six=6 seven=7 eight=8 nine=9 thing=X
/art/test/138-duplicate-classes-check2/
Dinfo.txt1 Check whether a duplicate class is not detected, even though we compiled against one (but removed
/art/test/505-simplifier-type-propagation/
Dinfo.txt3 instructions from one type to the same type.
/art/test/484-checker-register-hints/
Dinfo.txt2 blocks because one block forced spilling. The block that
/art/test/079-phantom/
Dexpected.txt2 Created Bitmap one: 10x10 (100)
/art/test/800-smali/smali/
Db_22244733.smali5 .registers 2 # One local and one parameter.
/art/test/045-reflect-array/
Dexpected.txt7 zero one two ++
/art/test/431-type-propagation/smali/
DTypePropagation.smali25 # Putting a float in v1 will lead to the creation of a phi with one
26 # float input and one integer input. Since the SSA builder trusts
/art/test/068-classloader/
Dexpected.txt11 DoubledImplement one
/art/test/303-verification-stress/
Dinfo.txt2 classes, each one initializing a big array of string in its class initializer.
/art/test/015-switch/
Dexpected.txt117 CORRECT (one)
/art/runtime/jdwp/
Djdwp_socket.cc128 int one = 1; in SocketStartup() local
129 if (setsockopt(netState->listenSock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) < 0) { in SocketStartup()
/art/test/064-field-access/
Dinfo.txt7 same time, we can only throw one or the other.
/art/tools/dexfuzz/
DREADME10 a bug in one of the modes.
46 You MUST specify one of the following ISAs:
60 --allarm. Also in this case only one backend is needed, if i.e., you wanted to test
99 Timed Out - mutated files that timed out for one or more backends.

12