Home
last modified time | relevance | path

Searched refs:SetLocalVariableInt (Results 1 – 22 of 22) sorted by relevance

/art/test/1965-get-set-local-primitive-no-tables/src/art/
DTest1965.java188 NamedSet("Int", Locals::SetLocalVariableInt, Integer.MAX_VALUE),
204 .exec(NamedSet("IntBoolSize", Locals::SetLocalVariableInt, 1));
206 .exec(NamedSet("IntByteSize", Locals::SetLocalVariableInt, Byte.MAX_VALUE - 1));
209 .exec(NamedSet("IntCharSize", Locals::SetLocalVariableInt, Character.MAX_VALUE - 1));
211 .exec(NamedSet("IntShortSize", Locals::SetLocalVariableInt, Short.MAX_VALUE - 1));
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1912-get-set-local-primitive/src/art/
DTest1912.java238 NamedSet("Int", Locals::SetLocalVariableInt, Integer.MAX_VALUE),
254 .exec(NamedSet("IntBoolSize", Locals::SetLocalVariableInt, 1));
256 .exec(NamedSet("IntByteSize", Locals::SetLocalVariableInt, Byte.MAX_VALUE - 1));
259 .exec(NamedSet("IntCharSize", Locals::SetLocalVariableInt, Character.MAX_VALUE - 1));
261 .exec(NamedSet("IntShortSize", Locals::SetLocalVariableInt, Short.MAX_VALUE - 1));
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1913-get-set-local-objects/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1939-proxy-frames/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1925-self-frame-pop/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1914-get-local-instance/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/jvmti-common/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1911-get-local-var-table/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1966-get-set-local-objects-no-table/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1967-get-set-local-bad-slot/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
DTest1967.java212 BadSet("Int_at_too_high", Locals::SetLocalVariableInt, Integer.MAX_VALUE, (i) -> i + 100),
219 BadSet("Int_at_negative", Locals::SetLocalVariableInt, Integer.MAX_VALUE, (i) -> -1),
/art/test/1924-frame-pop-toggle/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1926-missed-frame-pop/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1915-get-set-local-current-thread/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
DTest1915.java68 Locals.SetLocalVariableInt(Thread.currentThread(), depth, slot, SET_VALUE); in run()
/art/test/1916-get-set-current-frame/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
DTest1916.java118 Locals.SetLocalVariableInt(target_set, depth, slot, SET_VALUE); in runSet()
/art/test/1923-frame-pop/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1935-get-set-current-frame-jit/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1935-get-set-current-frame-jit/src/
DMain.java153 Locals.SetLocalVariableInt(target_set, depth, slot, SET_VALUE); in runSet()