Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 58) sorted by relevance

123

/art/test/701-easy-div-rem/src/
DMain.java58 public static int idiv_by_pow2_0(int x) {return x / 1;} in idiv_by_pow2_0()
59 public static int idiv_by_pow2_1(int x) {return x / 2;} in idiv_by_pow2_1()
60 public static int idiv_by_pow2_2(int x) {return x / 4;} in idiv_by_pow2_2()
61 public static int idiv_by_pow2_3(int x) {return x / 8;} in idiv_by_pow2_3()
62 public static int idiv_by_pow2_4(int x) {return x / 16;} in idiv_by_pow2_4()
63 public static int idiv_by_pow2_5(int x) {return x / 32;} in idiv_by_pow2_5()
64 public static int idiv_by_pow2_6(int x) {return x / 64;} in idiv_by_pow2_6()
65 public static int idiv_by_pow2_7(int x) {return x / 128;} in idiv_by_pow2_7()
66 public static int idiv_by_pow2_8(int x) {return x / 256;} in idiv_by_pow2_8()
67 public static int idiv_by_pow2_9(int x) {return x / 512;} in idiv_by_pow2_9()
[all …]
/art/test/ProtoCompare2/
DProtoCompare2.java18 int m1(short x, int y, long z) { return x + y + (int)z; } in m1()
19 int m2(short x, int y, long z) { return x + y + (int)z; } in m2()
20 int m3(long x, int y, short z) { return (int)x + y + z; } in m3()
21 long m4(long x, int y, short z) { return x + y + z; } in m4()
/art/test/ProtoCompare/
DProtoCompare.java18 int m1(short x, int y, long z) { return x + y + (int)z; } in m1()
19 int m2(short x, int y, long z) { return x + y + (int)z; } in m2()
20 int m3(long x, int y, short z) { return (int)x + y + z; } in m3()
21 long m4(long x, int y, short z) { return x + y + z; } in m4()
/art/runtime/base/
Dmacros.h148 #define PACKED(x) __attribute__ ((__aligned__(x), __packed__)) argument
150 #define LIKELY(x) __builtin_expect((x), true) argument
151 #define UNLIKELY(x) __builtin_expect((x), false) argument
154 #define QUOTE(x) #x argument
155 #define STRINGIFY(x) QUOTE(x) argument
185 #define THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) argument
187 #define THREAD_ANNOTATION_ATTRIBUTE__(x) // no-op argument
193 #define GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) argument
196 #define LOCK_RETURNED(x) THREAD_ANNOTATION_ATTRIBUTE__(lock_returned(x)) argument
199 #define PT_GUARDED_BY(x) argument
Dlogging.h31 #define CHECK(x) \ argument
43 #define CHECK_EQ(x, y) CHECK_OP(x, y, ==) argument
44 #define CHECK_NE(x, y) CHECK_OP(x, y, !=) argument
45 #define CHECK_LE(x, y) CHECK_OP(x, y, <=) argument
46 #define CHECK_LT(x, y) CHECK_OP(x, y, <) argument
47 #define CHECK_GE(x, y) CHECK_OP(x, y, >=) argument
48 #define CHECK_GT(x, y) CHECK_OP(x, y, >) argument
76 #define CHECK_CONSTEXPR(x, out, dummy) \ argument
81 #define DCHECK(x) CHECK(x) argument
82 #define DCHECK_EQ(x, y) CHECK_EQ(x, y) argument
[all …]
/art/test/003-omnibus-opcodes/src/
DIntMath.java164 static int[] intOperTest(int x, int y) { in intOperTest()
210 static int[] lit16Test(int x) { in lit16Test()
240 static int[] lit8Test(int x) { in lit8Test()
378 static long[] longOperTest(long x, long y) { in longOperTest()
455 static int unopTest(int x) { in unopTest()
473 static Shorty truncateTest(int x) { in truncateTest()
495 int x = 100 / z; in divideByZero() local
501 int x = 100 % z; in divideByZero() local
507 long x = 100L / z; in divideByZero() local
513 long x = 100L % z; in divideByZero() local
DUnresTest1.java10 int x = stuff.instField; in run() local
16 int x = stuff.instField; in run() local
/art/test/107-int-math2/src/
DMain.java67 static int instanceTest(int x) { in instanceTest()
98 static int superTest(int x) { in superTest()
106 static int constClassTest(int x) { in constClassTest()
115 static int constStringTest(int x) { in constStringTest()
128 static int catchBlock(int x) { in catchBlock()
143 static int catchBlockNoThrow(int x) { in catchBlockNoThrow()
152 static int staticFieldTest(int x) { in staticFieldTest()
197 static int unopTest(int x) { in unopTest()
337 static int intOperTest(int x, int y) { in intOperTest()
380 static int lit16Test(int x) { in lit16Test()
[all …]
/art/test/004-ReferenceMap/src/
DMain.java22 Object x[] = new Object[2]; in f() local
37 native int refmap(int x); in refmap()
/art/test/044-proxy/src/
DBasicTest.java131 public int rectangle(int x, int y); in rectangle()
141 public int rectangle(int x, int y); in rectangle()
142 public int square(int x, int y); in square()
143 public int trapezoid(int x, double off, int y); in trapezoid()
181 public int rectangle(int x, int y) { in rectangle()
185 public int square(int x, int y) { in square()
189 public int trapezoid(int x, double off, int y) { in trapezoid()
DClash3.java45 class R3base implements I3 { int mBlah; public void x() {} } in x() method in R3base
48 class R3b implements I3 { int mBlah_b; public void x() {} } in x() method in R3b
51 void x(); in x() method
/art/test/075-verification-error/src/
DMain.java55 int x = mutant.disappearingField; in testMissingStuff() local
90 int x = mutant.inaccessibleField; in testBadAccess() local
/art/runtime/
Dutils.h85 static constexpr bool IsPowerOfTwo(T x) { in IsPowerOfTwo()
90 static inline bool IsAligned(T x) { in IsAligned()
96 static inline bool IsAligned(T* x) { in IsAligned()
101 static inline bool IsAlignedParam(T x, int n) { in IsAlignedParam()
Dleb128.h101 uint32_t x = 6 + 32 - CLZ(data | 1); in UnsignedLeb128Size() local
111 uint32_t x = 1 /* we need to encode the sign bit */ + 6 + 32 - CLZ(data | 1); in SignedLeb128Size() local
/art/test/106-exceptions2/src/
DMain.java133 static int nullCheckTestNoThrow(int x) { in nullCheckTestNoThrow()
142 static int nullCheckTestThrow(int x) { in nullCheckTestThrow()
181 static int throwImplicitDivZero(int x, int y) { in throwImplicitDivZero()
/art/test/StaticLeafMethods/
DStaticLeafMethods.java20 static byte identity(byte x) { in identity()
23 static int identity(int x) { in identity()
38 static double identity(double x) { in identity()
/art/test/NonStaticLeafMethods/
DNonStaticLeafMethods.java22 byte identity(byte x) { in identity()
25 int identity(int x) { in identity()
40 double identity(double x) { in identity()
/art/test/088-monitor-verification/src/
DMain.java182 public void twoPath(Object obj1, Object obj2, int x) { in twoPath()
202 public void triplet(Object obj1, Object obj2, int x) { in triplet()
/art/test/003-omnibus-opcodes/src2/
DUnresStuff.java8 public int x; field in UnresStuff
/art/test/026-access/src/
DUnrelated.java21 protected Unrelated(int x) { in Unrelated()
/art/runtime/entrypoints/jni/
Djni_entrypoints.h23 #define JNI_ENTRYPOINT_OFFSET(ptr_size, x) \ argument
/art/test/093-serialization/src/
DMain.java81 private final int x; field in Main.Inner
82 public Inner (int x) { in Inner()
/art/test/101-fibonacci/src/
DMain.java48 int x = Integer.parseInt(arg); in main() local
/art/test/GetMethodSignature/
DGetMethodSignature.java19 GetMethodSignature m2(boolean x, short y, char z) { return null; } in m2()
/art/test/004-SignalTest/src/
DMain.java52 int x = testSignal(); in main() local

123