Home
last modified time | relevance | path

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

123

/art/test/570-checker-select/src/
DMain.java39 public static int BoolCond_IntVarVar(boolean cond, int x, int y) { in BoolCond_IntVarVar()
91 public static int BoolCond_IntCstVar(boolean cond, int y) { in BoolCond_IntCstVar()
118 public static long BoolCond_LongVarVar(boolean cond, long x, long y) { in BoolCond_LongVarVar()
172 public static long BoolCond_LongCstVar(boolean cond, long y) { in BoolCond_LongCstVar()
188 public static float BoolCond_FloatVarVar(boolean cond, float x, float y) { in BoolCond_FloatVarVar()
220 public static float BoolCond_FloatCstVar(boolean cond, float y) { in BoolCond_FloatCstVar()
247 public static int IntNonmatCond_IntVarVar(int a, int b, int x, int y) { in IntNonmatCond_IntVarVar()
277 public static int IntMatCond_IntVarVar(int a, int b, int x, int y) { in IntMatCond_IntVarVar()
306 public static long IntNonmatCond_LongVarVar(int a, int b, long x, long y) { in IntNonmatCond_LongVarVar()
343 public static long IntMatCond_LongVarVar(int a, int b, long x, long y) { in IntMatCond_LongVarVar()
[all …]
/art/test/567-checker-compare/src/
DMain.java87 private static int compareBooleans(boolean x, boolean y) { in compareBooleans()
102 private static int compareBytes(byte x, byte y) { in compareBytes()
117 private static int compareShorts(short x, short y) { in compareShorts()
132 private static int compareChars(char x, char y) { in compareChars()
147 private static int compareInts(int x, int y) { in compareInts()
162 private static int compareLongs(long x, long y) { in compareLongs()
178 public static int compareByteShort(byte x, short y) { in compareByteShort()
193 public static int compareByteChar(byte x, char y) { in compareByteChar()
208 public static int compareByteInt(byte x, int y) { in compareByteInt()
224 public static int compareShortByte(short x, byte y) { in compareShortByte()
[all …]
/art/test/474-checker-boolean-input/src/
DMain.java54 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/463-checker-boolean-simplifier/src/
DMain.java69 public static boolean GreaterThan(int x, int y) { in GreaterThan()
97 public static boolean LessThan(int x, int y) { in LessThan()
137 public static boolean ValuesOrdered(int x, int y, int z) { in ValuesOrdered()
175 public static int SimpleTrueBlock(boolean x, int y) { in SimpleTrueBlock()
191 public static int SimpleFalseBlock(boolean x, int y) { in SimpleFalseBlock()
209 public static int SimpleBothBlocks(boolean x, int y, int z) { in SimpleBothBlocks()
223 public static int ThreeBlocks(boolean x, boolean y) { in ThreeBlocks()
253 int y = 1; in MultiplePhis() local
/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/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/561-shared-slowpaths/src/
DMain.java27 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/480-checker-dead-blocks/src/
DMain.java53 public static int testTrueBranch(int x, int y) { in testTrueBranch()
85 public static int testFalseBranch(int x, int y) { in testFalseBranch()
179 public static int testRemoveSuspendCheck(int x, int y) { in testRemoveSuspendCheck()
/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()
/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/481-regression-phi-cond/src/
DMain.java25 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/compiler/optimizing/
Dnodes.h3374 int32_t Compare(T x, T y) const { return x > y ? 1 : (x < y ? -1 : 0); } in Compare()
3377 int32_t CompareFP(T x, T y) const { in CompareFP()
3405 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE { in Evaluate()
3411 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE { in Evaluate()
3415 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE { in Evaluate()
3418 HConstant* Evaluate(HDoubleConstant* x, HDoubleConstant* y) const OVERRIDE { in Evaluate()
3433 template <typename T> static bool Compute(T x, T y) { return x == y; } in Compute()
3449 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE { in Evaluate()
3455 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE { in Evaluate()
3458 HConstant* Evaluate(HFloatConstant* x, HFloatConstant* y) const OVERRIDE { in Evaluate()
[all …]
/art/test/557-checker-instruct-simplifier-ror/src/
DMain.java284 public static int ror_int_subv_csubv(int value, int x, int y) { in ror_int_subv_csubv()
316 public static int ror_int_subv_csubv_env(int value, int x, int y) { in ror_int_subv_csubv_env()
356 public static long ror_long_subv_csubv_0(long value, int x, int y) { in ror_long_subv_csubv_0()
420 public static int rol_int_csubv_subv(int value, int x, int y) { in rol_int_csubv_subv()
/art/test/562-bce-preheader/src/
DMain.java49 public static int foo(int[] x, int[] y, int n) { in foo()
114 int y; in main() 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
/art/test/565-checker-condition-liveness/src/
DMain.java43 int y = field; in main() local
/art/test/GetMethodSignature/
DGetMethodSignature.java19 GetMethodSignature m2(boolean x, short y, char z) { return null; } in m2()
/art/test/004-ReferenceMap/src/
DMain.java23 Object y = null; in f() local
/art/test/458-checker-instruct-simplification/src/
DMain.java2011 public static int $noinline$intAddSubSimplifyArg1(int x, int y) { in $noinline$intAddSubSimplifyArg1()
2030 public static int $noinline$intAddSubSimplifyArg2(int x, int y) { in $noinline$intAddSubSimplifyArg2()
2049 public static int $noinline$intSubAddSimplifyLeft(int x, int y) { in $noinline$intSubAddSimplifyLeft()
2068 public static int $noinline$intSubAddSimplifyRight(int x, int y) { in $noinline$intSubAddSimplifyRight()
2088 public static float $noinline$floatAddSubSimplifyArg1(float x, float y) { in $noinline$floatAddSubSimplifyArg1()
2108 public static float $noinline$floatAddSubSimplifyArg2(float x, float y) { in $noinline$floatAddSubSimplifyArg2()
2128 public static float $noinline$floatSubAddSimplifyLeft(float x, float y) { in $noinline$floatSubAddSimplifyLeft()
2148 public static float $noinline$floatSubAddSimplifyRight(float x, float y) { in $noinline$floatSubAddSimplifyRight()
/art/test/478-checker-inline-noreturn/src/
DMain.java33 public static int $opt$noinline$Function(int x, int y) { in $opt$noinline$Function()
/art/test/478-checker-inliner-nested-loop/src/
DMain.java26 public static int Inline(int x, int y) { in Inline()
/art/test/010-instance/src/
DInstanceTest.java30 Y y = new Y(); in main() local
/art/test/455-checker-gvn/src/
DMain.java38 public static int foo(int x, int y) { in foo()

123