Home
last modified time | relevance | path

Searched refs:x (Results 76 – 100 of 267) sorted by relevance

1234567891011

/art/test/618-checker-induction/src/
DMain.java646 boolean x = true; in periodicBoolIdiom1()
648 x = !x; in periodicBoolIdiom1()
650 return x; in periodicBoolIdiom1()
665 boolean x = true; in periodicBoolIdiom2()
667 x = (x != true); in periodicBoolIdiom2()
669 return x; in periodicBoolIdiom2()
684 boolean x = true; in periodicBoolIdiom3()
686 x = (x == false); in periodicBoolIdiom3()
688 return x; in periodicBoolIdiom3()
698 private static boolean periodicBoolIdiom1N(boolean x, int n) { in periodicBoolIdiom1N() argument
[all …]
/art/runtime/gc/
Dracing_check.h28 #define RACING_DCHECK_LE(x, y) \ argument
29 if (::android::base::kEnableDChecks && ((x) > (y))) { usleep(1000); CHECK_LE(x, y); }
/art/test/660-checker-simd-sad/src/
DSimdSadShort.java54 int x = s - p; in sadShort2ShortAlt2() local
55 if (x < 0) x = -x; in sadShort2ShortAlt2()
56 sad += x; in sadShort2ShortAlt2()
153 int x = s - p; in sadShort2IntAlt2() local
154 if (x < 0) x = -x; in sadShort2IntAlt2()
155 sad += x; in sadShort2IntAlt2()
286 long x = s1[i]; in sadShort2Long() local
288 sad += Math.abs(x - y); in sadShort2Long()
323 long x = s1[i]; in sadShort2LongAt1() local
325 sad += Math.abs(x - y); in sadShort2LongAt1()
DSimdSadShort3.java173 short x = (short) (val + 1); in sadShort2IntInvariantRight() local
175 sad += Math.abs(s[i] - x); in sadShort2IntInvariantRight()
205 short x = (short) (val + 1); in sadShort2IntInvariantLeft() local
207 sad += Math.abs(x - s[i]); in sadShort2IntInvariantLeft()
241 short x = (short) (s[i] + 110); // narrower part sign extends in sadShort2IntCastedExprRight() local
242 sad += Math.abs(s[i] - x); in sadShort2IntCastedExprRight()
276 short x = (short) (s[i] + 110); // narrower part sign extends in sadShort2IntCastedExprLeft() local
277 sad += Math.abs(x - s[i]); in sadShort2IntCastedExprLeft()
/art/test/479-regression-implicit-null-check/src/
DMain.java19 public int x = 0; field in Main
35 x = 3; in Main()
39 return x; in willBeInlined()
/art/test/557-checker-instruct-simplifier-ror/src/
DMain.java206 public static int ror_int_subv_csubv(int value, int x, int y) { in ror_int_subv_csubv() argument
207 int distance = x - y; in ror_int_subv_csubv()
238 public static int ror_int_subv_csubv_env(int value, int x, int y) { in ror_int_subv_csubv_env() argument
239 int distance = x - y; in ror_int_subv_csubv_env()
278 public static long ror_long_subv_csubv_0(long value, int x, int y) { in ror_long_subv_csubv_0() argument
279 int distance = x - y; in ror_long_subv_csubv_0()
342 public static int rol_int_csubv_subv(int value, int x, int y) { in rol_int_csubv_subv() argument
343 int distance = x - y; in rol_int_csubv_subv()
/art/test/510-checker-try-catch/src/
DMain.java117 public static void boundsCheckAndCatch(int x, int[] a, int[] b) { in boundsCheckAndCatch() argument
118 a[x] = 1; in boundsCheckAndCatch()
120 a[x] = 2; in boundsCheckAndCatch()
121 a[x + 1] = b[0] / x; in boundsCheckAndCatch()
123 a[x] = 1; in boundsCheckAndCatch()
/art/test/473-checker-inliner-constants/src/
DMain.java27 public static Object returnNullConstant(Object x) { in returnNullConstant() argument
43 public static int returnIntConstant(int x) { in returnIntConstant() argument
59 public static long returnLongConstant(long x) { in returnLongConstant() argument
/art/test/640-checker-simd/src/
DSimdChar.java36 static void add(int x) { in add() argument
38 a[i] += x; in add()
49 static void sub(int x) { in sub() argument
51 a[i] -= x; in sub()
62 static void mul(int x) { in mul() argument
64 a[i] *= x; in mul()
76 static void div(int x) { in div() argument
78 a[i] /= x; in div()
DSimdShort.java36 static void add(int x) { in add() argument
38 a[i] += x; in add()
49 static void sub(int x) { in sub() argument
51 a[i] -= x; in sub()
62 static void mul(int x) { in mul() argument
64 a[i] *= x; in mul()
76 static void div(int x) { in div() argument
78 a[i] /= x; in div()
DSimdInt.java36 static void add(int x) { in add() argument
38 a[i] += x; in add()
49 static void sub(int x) { in sub() argument
51 a[i] -= x; in sub()
62 static void mul(int x) { in mul() argument
64 a[i] *= x; in mul()
76 static void div(int x) { in div() argument
78 a[i] /= x; in div()
DSimdLong.java36 static void add(long x) { in add() argument
38 a[i] += x; in add()
49 static void sub(long x) { in sub() argument
51 a[i] -= x; in sub()
62 static void mul(long x) { in mul() argument
64 a[i] *= x; in mul()
76 static void div(long x) { in div() argument
78 a[i] /= x; in div()
DSimdByte.java36 static void add(int x) { in add() argument
38 a[i] += x; in add()
49 static void sub(int x) { in sub() argument
51 a[i] -= x; in sub()
62 static void mul(int x) { in mul() argument
64 a[i] *= x; in mul()
75 static void div(int x) { in div() argument
77 a[i] /= x; in div()
/art/test/567-checker-builder-intrinsics/src/
DTestCompare.java30 public static void $opt$noinline$testReplaceInputWithItself(int x) { in $opt$noinline$testReplaceInputWithItself() argument
35 if (Integer.compare(x, 0) < 0) { in $opt$noinline$testReplaceInputWithItself()
52 private static int compareBooleans(boolean x, boolean y) { in compareBooleans() argument
53 return Integer.compare((x ? 1 : 0), (y ? 1 : 0)); in compareBooleans()
89 private static int compareBooleans2(boolean x, boolean y) { in compareBooleans2() argument
93 if (x) { in compareBooleans2()
114 private static int compareBytes(byte x, byte y) { in compareBytes() argument
115 return Integer.compare(x, y); in compareBytes()
125 private static int compareShorts(short x, short y) { in compareShorts() argument
126 return Integer.compare(x, y); in compareShorts()
[all …]
/art/test/988-method-trace/
Dtrace_fib.cc29 jint x = 1; in Java_art_Test988_nativeFibonacci() local
32 jint z = x + y; in Java_art_Test988_nativeFibonacci()
33 x = y; in Java_art_Test988_nativeFibonacci()
Dgen_srcs.py114 def debug_print(x): argument
116 print(x, file=sys.stderr)
126 for x in sig:
128 obj = obj + x
129 if x == ";":
134 obj = obj + x
135 if x != "[":
140 if x == "[":
143 elif x == "L":
147 lst.append(x)
/art/test/1339-dead-reference-safe/src/
DReachabilityFenceTest.java31 ReachabilityFenceTest x; in $noinline$loop() local
35 x = new ReachabilityFenceTest(); in $noinline$loop()
36 count += x.n; in $noinline$loop()
44 Reference.reachabilityFence(x); in $noinline$loop()
/art/test/530-checker-loops4/src/
DMain.java139 int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, in geo1BCE() local
145 r += x[a]; in geo1BCE()
164 int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, in geo2BCE() local
170 r += x[a]; in geo2BCE()
184 int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, in geo3BCE() local
190 r += x[a]; in geo3BCE()
204 int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, in geo4BCE() local
210 r += x[a]; in geo4BCE()
/art/test/529-checker-unresolved/src/
DMain.java140 int x = 0; in callUnresolvedNull() local
142 x = c.instanceInt; in callUnresolvedNull()
145 x -= 1; in callUnresolvedNull()
147 expectEquals(-1, x); in callUnresolvedNull()
152 x -= 1; in callUnresolvedNull()
154 expectEquals(-2, x); in callUnresolvedNull()
159 x -= 1; in callUnresolvedNull()
161 expectEquals(-3, x); in callUnresolvedNull()
/art/test/669-checker-break/src/
DMain.java217 int x = -123; in breakLoopNastyPhi() local
223 x = i; in breakLoopNastyPhi()
227 return x; // keep another phi live in breakLoopNastyPhi()
272 int x = 0; in breakLoopReduction() local
276 x += a[i]; in breakLoopReduction()
281 return x; in breakLoopReduction()
/art/test/093-serialization/src/
DMain.java81 private final int x; field in Main.Inner
82 public Inner (int x) { in Inner() argument
83 this.x = x; in Inner()
87 System.out.println("x=" + Integer.toHexString(x)); in check()
/art/test/441-checker-inliner/src/
DMain.java143 int x, const1, const3, const5; in InlineWithControlFlow() local
148 x = returnAdd(const1, const3); in InlineWithControlFlow()
150 x = returnSub(const5, const3); in InlineWithControlFlow()
152 return x; in InlineWithControlFlow()
/art/test/026-access/src/
DUnrelated.java21 protected Unrelated(int x) { in Unrelated() argument
22 instance_x = x; in Unrelated()
/art/test/952-invoke-custom/src/
DTestLinkerMethodWithRange.java108 public static void test(int u, int v, int w, int x, int y, int z) throws Throwable { in test() argument
109 assertEquals(u + v + w + x + y + z, add(u, v, w, x, y, z)); in test()
110 System.out.println(u + v + w + x + y + z); in test()
157 public static void test(Double u, Double v, Double w, Double x, Double y, Double z) in test() argument
163 if (x != null) product *= x; in test()
166 assertEquals(product, multiply(u, v, w, x, y, z)); in test()
/art/test/591-checker-regression-dead-loop/src/
DMain.java29 int x = 0; in main() local
31 System.out.println(x++); in main()

1234567891011