/art/test/567-checker-compare/src/ |
D | Main.java | 54 private static int compareBooleans(boolean x, boolean y) { in compareBooleans() 58 private static int compareBooleansSmali(boolean x, boolean y) throws Exception { in compareBooleansSmali() 75 private static int compareBytes(byte x, byte y) { in compareBytes() 90 private static int compareShorts(short x, short y) { in compareShorts() 105 private static int compareChars(char x, char y) { in compareChars() 120 private static int compareInts(int x, int y) { in compareInts() 135 private static int compareLongs(long x, long y) { in compareLongs() 151 public static int compareByteShort(byte x, short y) { in compareByteShort() 166 public static int compareByteChar(byte x, char y) { in compareByteChar() 181 public static int compareByteInt(byte x, int y) { in compareByteInt() [all …]
|
/art/test/570-checker-select/src/ |
D | Main.java | 37 public static int $noinline$BoolCond_IntVarVar(boolean cond, int x, int y) { in $noinline$BoolCond_IntVarVar() 81 public static int $noinline$BoolCond_IntCstVar(boolean cond, int y) { in $noinline$BoolCond_IntCstVar() 104 public static long $noinline$BoolCond_LongVarVar(boolean cond, long x, long y) { in $noinline$BoolCond_LongVarVar() 150 public static long $noinline$BoolCond_LongCstVar(boolean cond, long y) { in $noinline$BoolCond_LongCstVar() 162 public static float $noinline$BoolCond_FloatVarVar(boolean cond, float x, float y) { in $noinline$BoolCond_FloatVarVar() 186 public static float $noinline$BoolCond_FloatCstVar(boolean cond, float y) { in $noinline$BoolCond_FloatCstVar() 209 public static int $noinline$IntNonmatCond_IntVarVar(int a, int b, int x, int y) { in $noinline$IntNonmatCond_IntVarVar() 235 public static int $noinline$IntMatCond_IntVarVar(int a, int b, int x, int y) { in $noinline$IntMatCond_IntVarVar() 260 public static long $noinline$IntNonmatCond_LongVarVar(int a, int b, long x, long y) { in $noinline$IntNonmatCond_LongVarVar() 293 public static long $noinline$IntMatCond_LongVarVar(int a, int b, long x, long y) { in $noinline$IntMatCond_LongVarVar() [all …]
|
/art/test/660-checker-sad/src/ |
D | SadChar.java | 29 static int sad1(char x, char y) { in sad1() 40 static int sad2(char x, char y) { in sad2() 53 static int sad3(char x, char y) { in sad3() 65 static int sad3Alt(char x, char y) { in sad3Alt() 77 static long sadL1(char x, char y) { in sadL1() 90 static long sadL2(char x, char y) { in sadL2() 103 static long sadL3(char x, char y) { in sadL3() 115 static long sadL3Alt(char x, char y) { in sadL3Alt() 139 char y = interesting[j]; in main() local
|
D | SadShort.java | 29 static int sad1(short x, short y) { in sad1() 40 static int sad2(short x, short y) { in sad2() 53 static int sad3(short x, short y) { in sad3() 65 static int sad3Alt(short x, short y) { in sad3Alt() 77 static long sadL1(short x, short y) { in sadL1() 90 static long sadL2(short x, short y) { in sadL2() 103 static long sadL3(short x, short y) { in sadL3() 115 static long sadL3Alt(short x, short y) { in sadL3Alt() 139 short y = interesting[j]; in main() local
|
D | SadInt.java | 34 static int sad1(int x, int y) { in sad1() 45 static int sad2(int x, int y) { in sad2() 58 static int sad3(int x, int y) { in sad3() 70 static int sad3Alt(int x, int y) { in sad3Alt() 82 static long sadL1(int x, int y) { in sadL1() 95 static long sadL2(int x, int y) { in sadL2() 108 static long sadL3(int x, int y) { in sadL3() 120 static long sadL3Alt(int x, int y) { in sadL3Alt() 138 int y = interesting[j]; in main() local
|
D | SadByte.java | 29 static int sad1(byte x, byte y) { in sad1() 40 static int sad2(byte x, byte y) { in sad2() 53 static int sad3(byte x, byte y) { in sad3() 65 static int sad3Alt(byte x, byte y) { in sad3Alt() 77 static long sadL1(byte x, byte y) { in sadL1() 90 static long sadL2(byte x, byte y) { in sadL2() 103 static long sadL3(byte x, byte y) { in sadL3() 115 static long sadL3Alt(byte x, byte y) { in sadL3Alt()
|
D | SadLong.java | 34 static long sad1(long x, long y) { in sad1() 45 static long sad2(long x, long y) { in sad2() 58 static long sad3(long x, long y) { in sad3() 70 static long sad3Alt(long x, long y) { in sad3Alt() 94 long y = interesting[j]; in main() local
|
/art/test/474-checker-boolean-input/src/ |
D | Main.java | 54 public static boolean InlineAnd(boolean x, boolean y) { in InlineAnd() 58 public static boolean TestAndAsBoolean(boolean x, boolean y) { in TestAndAsBoolean() 71 public static boolean InlineOr(boolean x, boolean y) { in InlineOr() 75 public static boolean TestOrAsBoolean(boolean x, boolean y) { in TestOrAsBoolean() 88 public static boolean InlineXor(boolean x, boolean y) { in InlineXor() 92 public static boolean TestXorAsBoolean(boolean x, boolean y) { in TestXorAsBoolean()
|
/art/test/674-hiddenapi/src/ |
D | ParentClass.java | 141 public ParentClass(int x, short y) {} in ParentClass() 142 ParentClass(float x, short y) {} in ParentClass() 143 protected ParentClass(long x, short y) {} in ParentClass() 144 private ParentClass(double x, short y) {} in ParentClass() 147 public ParentClass(int x, boolean y) {} in ParentClass() 148 ParentClass(float x, boolean y) {} in ParentClass() 149 protected ParentClass(long x, boolean y) {} in ParentClass() 150 private ParentClass(double x, boolean y) {} in ParentClass() 153 public ParentClass(int x, byte y) {} in ParentClass() 154 ParentClass(float x, byte y) {} in ParentClass() [all …]
|
D | NullaryConstructorLightGreylist.java | 19 public NullaryConstructorLightGreylist(int y) { x = y; } in NullaryConstructorLightGreylist()
|
/art/test/ProtoCompare2/ |
D | ProtoCompare2.java | 18 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/ |
D | ProtoCompare.java | 18 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/463-checker-boolean-simplifier/src-art/ |
D | Main.java | 61 public static boolean GreaterThan(int x, int y) { in GreaterThan() 89 public static boolean LessThan(int x, int y) { in LessThan() 105 public static int SimpleTrueBlock(boolean x, int y) { in SimpleTrueBlock() 121 public static int SimpleFalseBlock(boolean x, int y) { in SimpleFalseBlock() 139 public static int SimpleBothBlocks(boolean x, int y, int z) { in SimpleBothBlocks() 153 public static int ThreeBlocks(boolean x, boolean y) { in ThreeBlocks()
|
/art/test/565-checker-condition-liveness/src/ |
D | Main.java | 82 public static void testThrowIntoCatchBlock(int x, Object y, int[] a) { in testThrowIntoCatchBlock() 128 public static void testBoundsCheck(int x, Object y, int[] a) { in testBoundsCheck() 164 public static void testDeoptimize(int x, Object y, int[] a) { in testDeoptimize() 179 int y = field; in main() local
|
/art/test/660-checker-simd-sad/src/ |
D | SimdSadLong.java | 46 private static long sadLong2Long(long[] x, long[] y) { in sadLong2Long() 73 private static long sadLong2LongAlt(long[] x, long[] y) { in sadLong2LongAlt() 108 private static long sadLong2LongAlt2(long[] x, long[] y) { in sadLong2LongAlt2() 145 private static long sadLong2LongAt1(long[] x, long[] y) { in sadLong2LongAt1() 157 long[] y = { 0, Long.MAX_VALUE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; in main() local
|
D | SimdSadInt.java | 42 private static int sadInt2Int(int[] x, int[] y) { in sadInt2Int() 68 private static int sadInt2IntAlt(int[] x, int[] y) { in sadInt2IntAlt() 99 private static int sadInt2IntAlt2(int[] x, int[] y) { in sadInt2IntAlt2() 138 private static long sadInt2Long(int[] x, int[] y) { in sadInt2Long() 175 private static long sadInt2LongAt1(int[] x, int[] y) { in sadInt2LongAt1() 189 int[] y = { 0, Integer.MIN_VALUE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; in main() local
|
/art/test/552-checker-x86-avx2-bit-manipulation/src/ |
D | Main.java | 49 public static long and_not_64( long x, long y) { in and_not_64() 80 public static int and_not_32( int x, int y) { in and_not_32() 125 int y = x; in reset_lowest_set_bit_32() local 164 long y = x; in reset_lowest_set_bit_64() local 214 int y = x/2; in main() local
|
/art/test/561-shared-slowpaths/src/ |
D | Main.java | 27 private static void init(int[] x, int [] y, int l1, int h1, int l2, int h2) { in init() 40 int[] y = new int[100]; in main() local 144 private static void reset(int[] x, int[] y) { in reset()
|
/art/test/656-checker-simd-opt/src/ |
D | Main.java | 45 private static void unroll(float[] x, float[] y) { in unroll() 117 static long longInductionReduction(long[] y) { in longInductionReduction() 144 static void intVectorLongInvariant(int[] x, long[] y) { in intVectorLongInvariant() 173 static void longCanBeDoneWithInt(int[] x, int[] y) { in longCanBeDoneWithInt() 181 float[] y = new float[100]; in testUnroll() local
|
/art/test/480-checker-dead-blocks/src/ |
D | Main.java | 34 public static int testTrueBranch(int x, int y) { in testTrueBranch() 44 public static int testFalseBranch(int x, int y) { in testFalseBranch() 136 public static int testRemoveSuspendCheck(int x, int y) { in testRemoveSuspendCheck()
|
/art/test/044-proxy/src/ |
D | BasicTest.java | 127 public int rectangle(int x, int y); in rectangle() 137 public int rectangle(int x, int y); in rectangle() 138 public int square(int x, int y); in square() 139 public int trapezoid(int x, double off, int y); in trapezoid() 177 public int rectangle(int x, int y) { in rectangle() 181 public int square(int x, int y) { in square() 185 public int trapezoid(int x, double off, int y) { in trapezoid()
|
/art/test/481-regression-phi-cond/src/ |
D | Main.java | 25 public static boolean inlinePhi(boolean x, boolean y, boolean z) { in inlinePhi() 39 public static boolean testCase(boolean x, boolean y, boolean z) { in testCase()
|
/art/test/075-verification-error/src/ |
D | Main.java | 76 int y = Mutant.disappearingStaticField; in testMissingStuff() local 112 int y = Mutant.inaccessibleStaticField; in testBadAccess() local
|
/art/test/807-method-handle-and-mr/src/ |
D | Main.java | 25 public Long binaryFunction(int x, double y) { in binaryFunction() 80 private Double y; field in Test
|
/art/runtime/gc/ |
D | racing_check.h | 28 #define RACING_DCHECK_LE(x, y) \ argument
|