Home
last modified time | relevance | path

Searched defs:y (Results 1 – 24 of 24) sorted by relevance

/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/test/MyClassNatives/
DMyClassNatives.java23 native int fooII(int x, int y); in fooII()
24 native long fooJJ(long x, long y); in fooJJ()
26 native double fooDD(double x, double y); in fooDD()
27 synchronized native long fooJJ_synchronized(long x, long y); in fooJJ_synchronized()
28 native Object fooIOO(int x, Object y, Object z); in fooIOO()
29 static native Object fooSIOO(int x, Object y, Object z); in fooSIOO()
30 static native int fooSII(int x, int y); in fooSII()
31 static native double fooSDD(double x, double y); in fooSDD()
32 static synchronized native Object fooSSIOO(int x, Object y, Object z); in fooSSIOO()
/art/test/044-proxy/src/
DBasicTest.java130 public int rectangle(int x, int y); in rectangle()
140 public int rectangle(int x, int y); in rectangle()
141 public int square(int x, int y); in square()
142 public int trapezoid(int x, double off, int y); in trapezoid()
180 public int rectangle(int x, int y) { in rectangle()
184 public int square(int x, int y) { in square()
188 public int trapezoid(int x, double off, int y) { in trapezoid()
/art/runtime/base/
Dlogging.h41 #define CHECK_EQ(x, y) CHECK_OP(x, y, ==) argument
42 #define CHECK_NE(x, y) CHECK_OP(x, y, !=) argument
43 #define CHECK_LE(x, y) CHECK_OP(x, y, <=) argument
44 #define CHECK_LT(x, y) CHECK_OP(x, y, <) argument
45 #define CHECK_GE(x, y) CHECK_OP(x, y, >=) argument
46 #define CHECK_GT(x, y) CHECK_OP(x, y, >) argument
70 #define DCHECK_EQ(x, y) CHECK_EQ(x, y) argument
71 #define DCHECK_NE(x, y) CHECK_NE(x, y) argument
72 #define DCHECK_LE(x, y) CHECK_LE(x, y) argument
73 #define DCHECK_LT(x, y) CHECK_LT(x, y) argument
[all …]
/art/test/075-verification-error/src/
DMain.java62 int y = Mutant.disappearingStaticField; in testMissingStuff() local
98 int y = Mutant.inaccessibleStaticField; in testBadAccess() local
/art/test/101-fibonacci/src/
DMain.java49 int y = fibonacci(x); in main() local
/art/test/003-omnibus-opcodes/src/
DUnresTest1.java42 int y = UnresStuff.staticField; in run() local
DClasses.java79 static void yTests(Object y) { in yTests()
136 MoreClasses y = new MoreClasses(); in arrayInstance() local
DFloatMath.java135 static float[] floatOperTest(float x, float y) { in floatOperTest()
165 static double[] doubleOperTest(double x, double y) { in doubleOperTest()
DIntMath.java164 static int[] intOperTest(int x, int y) { in intOperTest()
378 static long[] longOperTest(long x, long y) { in longOperTest()
/art/test/CreateMethodSignature/
DCreateMethodSignature.java19 CreateMethodSignature m2(boolean x, short y, char z) { return null; } in m2()
/art/test/ReferenceMap/
DReferenceMap.java23 Object y = null; in f() local
/art/compiler/jni/
Djni_compiler_test.cc203 jint Java_MyClassNatives_fooII(JNIEnv* env, jobject thisObj, jint x, jint y) { in Java_MyClassNatives_fooII()
230 jlong Java_MyClassNatives_fooJJ(JNIEnv* env, jobject thisObj, jlong x, jlong y) { in Java_MyClassNatives_fooJJ()
258 jdouble Java_MyClassNatives_fooDD(JNIEnv* env, jobject thisObj, jdouble x, jdouble y) { in Java_MyClassNatives_fooDD()
287 jlong Java_MyClassNatives_fooJJ_synchronized(JNIEnv* env, jobject thisObj, jlong x, jlong y) { in Java_MyClassNatives_fooJJ_synchronized()
312 jobject Java_MyClassNatives_fooIOO(JNIEnv* env, jobject thisObj, jint x, jobject y, in Java_MyClassNatives_fooIOO()
364 jint Java_MyClassNatives_fooSII(JNIEnv* env, jclass klass, jint x, jint y) { in Java_MyClassNatives_fooSII()
387 jdouble Java_MyClassNatives_fooSDD(JNIEnv* env, jclass klass, jdouble x, jdouble y) { in Java_MyClassNatives_fooSDD()
415 jobject Java_MyClassNatives_fooSIOO(JNIEnv* env, jclass klass, jint x, jobject y, in Java_MyClassNatives_fooSIOO()
468 jobject Java_MyClassNatives_fooSSIOO(JNIEnv* env, jclass klass, jint x, jobject y, jobject z) { in Java_MyClassNatives_fooSSIOO()
/art/test/010-instance/src/
DInstanceTest.java30 Y y = new Y(); in main() local
/art/test/106-exceptions2/src/
DMain.java181 static int throwImplicitDivZero(int x, int y) { in throwImplicitDivZero()
/art/test/079-phantom/src/
DBitmap.java49 public void drawAt(int x, int y) { in drawAt()
/art/test/107-int-math2/src/
DMain.java319 static int intOperTest(int x, int y) { in intOperTest()
438 static int longOperTest(long x, long y) { in longOperTest()
/art/runtime/
Dcommon_test.h79 uint32_t t = 0, y = 0; in DecodeBase64() local
/art/runtime/mirror/
Dobject_test.cc468 SirtRef<Object> y(soa.Self(), Y->AllocObject(soa.Self())); in TEST_F() local
/art/compiler/dex/quick/mips/
Dmips_lir.h108 #define MIPS_S2D(x, y) ((x) | MIPS_FP_DOUBLE) argument
/art/compiler/driver/
Dcompiler_driver.cc59 static double Percentage(size_t x, size_t y) { in Percentage()
63 static void DumpStat(size_t x, size_t y, const char* str) { in DumpStat()
/art/compiler/dex/quick/x86/
Dx86_lir.h126 #define X86_S2D(x, y) ((x) | X86_FP_DOUBLE) argument
/art/compiler/dex/quick/arm/
Darm_lir.h116 #define ARM_S2D(x, y) ((x) | ARM_FP_DOUBLE) argument