Home
last modified time | relevance | path

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

12345

/art/test/463-checker-boolean-simplifier/src/
DMain.java69 public static boolean BooleanNot(boolean x) { in BooleanNot()
97 public static boolean GreaterThan(int x, int y) { in GreaterThan()
125 public static boolean LessThan(int x, int y) { in LessThan()
165 public static boolean ValuesOrdered(int x, int y, int z) { in ValuesOrdered()
187 public static int NegatedCondition(boolean x) { in NegatedCondition()
203 public static int SimpleTrueBlock(boolean x, int y) { in SimpleTrueBlock()
219 public static int SimpleFalseBlock(boolean x, int y) { in SimpleFalseBlock()
237 public static int SimpleBothBlocks(boolean x, int y, int z) { in SimpleBothBlocks()
251 public static int ThreeBlocks(boolean x, boolean y) { in ThreeBlocks()
280 int x = 0; in MultiplePhis() local
[all …]
/art/test/530-checker-loops1/src/
DMain.java34 private static int linear(int[] x) { in linear()
48 private static int linearDown(int[] x) { in linearDown()
62 private static int linearObscure(int[] x) { in linearObscure()
77 private static int linearVeryObscure(int[] x) { in linearVeryObscure()
109 private static int linearWhile(int[] x) { in linearWhile()
124 private static int linearThreeWayPhi(int[] x) { in linearThreeWayPhi()
142 private static int linearFourWayPhi(int[] x) { in linearFourWayPhi()
164 private static int wrapAroundThenLinear(int[] x) { in wrapAroundThenLinear()
181 private static int wrapAroundThenLinearThreeWayPhi(int[] x) { in wrapAroundThenLinearThreeWayPhi()
203 int[] x = new int[n]; in linearWithParameter() local
[all …]
/art/test/567-checker-compare/src/
DMain.java33 public static void $opt$noinline$testReplaceInputWithItself(int x) { in $opt$noinline$testReplaceInputWithItself()
87 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()
[all …]
/art/test/474-checker-boolean-input/src/
DMain.java37 public static boolean InlinePhi(int x) { in InlinePhi()
41 public static boolean TestPhiAsBoolean(int x) { in TestPhiAsBoolean()
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/530-checker-loops2/src/
DMain.java54 int[] x = { 1, 3 }; in periodicIdiom() local
72 int[] x = { 1, 3 }; in periodicSequence2() local
96 int[] x = { 1, 3, 5, 7 }; in periodicSequence4() local
121 int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; in justRightUp1() local
136 int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; in justRightUp2() local
151 int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; in justRightUp3() local
168 int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; in justOOBUp() local
184 int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; in justRightDown1() local
199 int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; in justRightDown2() local
214 int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; in justRightDown3() local
[all …]
/art/test/570-checker-select/src/
DMain.java37 public static int BoolCond_IntVarVar(boolean cond, int x, int y) { in BoolCond_IntVarVar()
59 public static int BoolCond_IntVarCst(boolean cond, int x) { in BoolCond_IntVarCst()
104 public static long BoolCond_LongVarVar(boolean cond, long x, long y) { in BoolCond_LongVarVar()
127 public static long BoolCond_LongVarCst(boolean cond, long x) { in BoolCond_LongVarCst()
162 public static float BoolCond_FloatVarVar(boolean cond, float x, float y) { in BoolCond_FloatVarVar()
174 public static float BoolCond_FloatVarCst(boolean cond, float x) { in BoolCond_FloatVarCst()
209 public static int IntNonmatCond_IntVarVar(int a, int b, int x, int y) { in IntNonmatCond_IntVarVar()
235 public static int IntMatCond_IntVarVar(int a, int b, int x, int y) { in IntMatCond_IntVarVar()
260 public static long IntNonmatCond_LongVarVar(int a, int b, long x, long y) { in IntNonmatCond_LongVarVar()
293 public static long IntMatCond_LongVarVar(int a, int b, long x, long y) { in IntMatCond_LongVarVar()
[all …]
/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()
103 public static int testRemoveLoop(int x) { in testRemoveLoop()
120 public static int testInfiniteLoop(int x) { in testInfiniteLoop()
139 public static int testDeadLoop(int x) { in testDeadLoop()
159 public static int testUpdateLoopInformation(int x) { in testUpdateLoopInformation()
179 public static int testRemoveSuspendCheck(int x, int y) { in testRemoveSuspendCheck()
/art/test/564-checker-bitcount/src/
DMain.java27 private static int $noinline$BitCountBoolean(boolean x) { in $noinline$BitCountBoolean()
35 private static int $noinline$BitCountByte(byte x) { in $noinline$BitCountByte()
43 private static int $noinline$BitCountShort(short x) { in $noinline$BitCountShort()
51 private static int $noinline$BitCountChar(char x) { in $noinline$BitCountChar()
59 private static int $noinline$BitCountInt(int x) { in $noinline$BitCountInt()
67 private static int $noinline$BitCountLong(long x) { in $noinline$BitCountLong()
/art/test/566-checker-signum/src/
DMain.java57 private static int signBoolean(boolean x) { in signBoolean()
72 private static int signByte(byte x) { in signByte()
87 private static int signShort(short x) { in signShort()
102 private static int signChar(char x) { in signChar()
117 private static int signInt(int x) { in signInt()
132 private static int signLong(long x) { in signLong()
/art/runtime/base/
Dbit_utils.h31 static constexpr int CLZ(T x) { in CLZ()
44 static constexpr int CTZ(T x) { in CTZ()
59 static constexpr int POPCOUNT(T x) { in POPCOUNT()
89 static constexpr inline T RoundUpToPowerOfTwo(T x) { in RoundUpToPowerOfTwo()
97 static constexpr bool IsPowerOfTwo(T x) { in IsPowerOfTwo()
104 static inline int WhichPowerOf2(T x) { in WhichPowerOf2()
117 static constexpr T RoundDown(T x, typename Identity<T>::type n) { in RoundDown()
127 static constexpr T RoundUp(T x, typename std::remove_reference<T>::type n) { in RoundUp()
136 static inline T* AlignDown(T* x, uintptr_t n) { in AlignDown()
144 static inline T* AlignUp(T* x, uintptr_t n) { in AlignUp()
[all …]
Dlogging.h117 #define CHECK(x) \ argument
134 #define CHECK_EQ(x, y) CHECK_OP(x, y, ==) argument
135 #define CHECK_NE(x, y) CHECK_OP(x, y, !=) argument
136 #define CHECK_LE(x, y) CHECK_OP(x, y, <=) argument
137 #define CHECK_LT(x, y) CHECK_OP(x, y, <) argument
138 #define CHECK_GE(x, y) CHECK_OP(x, y, >=) argument
139 #define CHECK_GT(x, y) CHECK_OP(x, y, >) argument
170 #define CHECK_CONSTEXPR(x, out, dummy) \ argument
182 #define DCHECK(x) if (::art::kEnableDChecks) CHECK(x) argument
183 #define DCHECK_EQ(x, y) if (::art::kEnableDChecks) CHECK_EQ(x, y) argument
[all …]
/art/test/702-LargeBranchOffset/src/
DMain.java.in17 #define DO_2_TIMES(x) x x argument
18 #define DO_4_TIMES(x) DO_2_TIMES(DO_2_TIMES(x)) argument
19 #define DO_16_TIMES(x) DO_4_TIMES(DO_4_TIMES(x)) argument
20 #define DO_256_TIMES(x) DO_16_TIMES(DO_16_TIMES(x)) argument
21 #define DO_512_TIMES(x) DO_256_TIMES(DO_2_TIMES(x)) argument
/art/test/568-checker-onebit/src/
DMain.java22 private static int hi32(int x) { in hi32()
29 private static int lo32(int x) { in lo32()
36 private static long hi64(long x) { in hi64()
43 private static long lo64(long x) { in lo64()
/art/test/552-checker-sharpening/src/
DMain.java33 private static int $noinline$foo(int x) { in $noinline$foo()
63 public static int testSimple(int x) { in testSimple()
105 public static int testDiamond(boolean negate, int x) { in testDiamond()
151 public static int testLoop(int[] array, int x) { in testLoop()
179 public static int testLoopWithDiamond(int[] array, boolean negate, int x) { in testLoopWithDiamond()
/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/473-checker-inliner-constants/src/
DMain.java27 public static Object returnNullConstant(Object x) { in returnNullConstant()
43 public static int returnIntConstant(int x) { in returnIntConstant()
59 public static long returnLongConstant(long x) { in returnLongConstant()
/art/test/481-regression-phi-cond/src/
DMain.java25 public static boolean inlinePhi(boolean x, boolean y, boolean z) { in inlinePhi()
35 public static boolean dontUseParam(boolean x) { in dontUseParam()
39 public static boolean testCase(boolean x, boolean y, boolean z) { in testCase()
/art/test/540-checker-rtp-bug/src/
DMain.java38 Object x = new Final(); in testKeepCheckCast() local
56 Object x = new Final(); in testKeepInstanceOf() local
80 Object x = new Final(); in testNoInline() local
/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()
39 int[] x = new int[100]; in main() local
144 private static void reset(int[] x, int[] y) { in reset()
/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.java133 public int rectangle(int x, int y); in rectangle()
143 public int rectangle(int x, int y); in rectangle()
144 public int square(int x, int y); in square()
145 public int trapezoid(int x, double off, int y); in trapezoid()
183 public int rectangle(int x, int y) { in rectangle()
187 public int square(int x, int y) { in square()
191 public int trapezoid(int x, double off, int y) { in trapezoid()

12345