Home
last modified time | relevance | path

Searched refs:val (Results 1 – 25 of 229) sorted by relevance

12345678910

/art/test/542-inline-trycatch/src/
DMain.java48 int val = 0; in testSingleBlockFromTry() local
51 val = $inline$SingleBlock("42"); in testSingleBlockFromTry()
55 assertEquals(42, val); in testSingleBlockFromTry()
64 int val = 0; in testSingleBlockFromCatch() local
69 val = $inline$SingleBlock("42"); in testSingleBlockFromCatch()
71 assertEquals(42, val); in testSingleBlockFromCatch()
75 int val = 0; in testMultipleBlocksFromTry() local
78 val = $inline$MultipleBlocks("42", false); in testMultipleBlocksFromTry()
82 assertEquals(42, val); in testMultipleBlocksFromTry()
85 val = $inline$MultipleBlocks("20", true); in testMultipleBlocksFromTry()
[all …]
/art/test/1974-resize-array/
Dexpected.txt2 val is: [1, 2, 3] resize +3
3 val is: [1, 2, 3, 0, 0, 0, 0, 0]
7 val is: [1, 2, 3, 4] resize +3
9 val is: [1, 2, 3, 4, 0, 0, 0]
13 val is: [weak, ref] resize +3
14 val is: [weak, ref, null, null, null, null, null]
18 val is: [<SELF REF>, A, B, C] resize +5 item 0 is [<SELF REF>, A, B, C]
19 val is: [<SELF REF>, A, B, C, null, null, null, null, null]
20 val is: [<SELF REF>, A, B, C, null, null, null, null, null]
26 val is: [<SELF REF>, A, B, C, null, null, null, null, null] resize -7 item 0 is [<SELF REF>, A, B, …
[all …]
/art/openjdkjvmti/
Dti_logging.cc108 bool val = (value == JNI_TRUE) ? true : false; in SetVerboseFlag() local
110 art::gLogVerbosity.collector = val; in SetVerboseFlag()
111 art::gLogVerbosity.compiler = val; in SetVerboseFlag()
112 art::gLogVerbosity.deopt = val; in SetVerboseFlag()
113 art::gLogVerbosity.heap = val; in SetVerboseFlag()
114 art::gLogVerbosity.interpreter = val; in SetVerboseFlag()
115 art::gLogVerbosity.jdwp = val; in SetVerboseFlag()
116 art::gLogVerbosity.jit = val; in SetVerboseFlag()
117 art::gLogVerbosity.monitor = val; in SetVerboseFlag()
118 art::gLogVerbosity.oat = val; in SetVerboseFlag()
[all …]
/art/test/ti-agent/
Dearly_return_helper.cc35 JNIEnv* env, jclass k ATTRIBUTE_UNUSED, jthread thr, jfloat val) { in Java_art_NonStandardExit_forceEarlyReturnFloat() argument
36 JvmtiErrorToException(env, jvmti_env, jvmti_env->ForceEarlyReturnFloat(thr, val)); in Java_art_NonStandardExit_forceEarlyReturnFloat()
40 JNIEnv* env, jclass k ATTRIBUTE_UNUSED, jthread thr, jdouble val) { in Java_art_NonStandardExit_forceEarlyReturnDouble() argument
41 JvmtiErrorToException(env, jvmti_env, jvmti_env->ForceEarlyReturnDouble(thr, val)); in Java_art_NonStandardExit_forceEarlyReturnDouble()
45 JNIEnv* env, jclass k ATTRIBUTE_UNUSED, jthread thr, jlong val) { in Java_art_NonStandardExit_forceEarlyReturnLong() argument
46 JvmtiErrorToException(env, jvmti_env, jvmti_env->ForceEarlyReturnLong(thr, val)); in Java_art_NonStandardExit_forceEarlyReturnLong()
50 JNIEnv* env, jclass k ATTRIBUTE_UNUSED, jthread thr, jint val) { in Java_art_NonStandardExit_forceEarlyReturnInt() argument
51 JvmtiErrorToException(env, jvmti_env, jvmti_env->ForceEarlyReturnInt(thr, val)); in Java_art_NonStandardExit_forceEarlyReturnInt()
60 JNIEnv* env, jclass k ATTRIBUTE_UNUSED, jthread thr, jobject val) { in Java_art_NonStandardExit_forceEarlyReturnObject() argument
61 JvmtiErrorToException(env, jvmti_env, jvmti_env->ForceEarlyReturnObject(thr, val)); in Java_art_NonStandardExit_forceEarlyReturnObject()
/art/test/testrunner/
Denv.py33 val = _env.get(var)
34 if val:
35 if val == "True" or val == "true":
37 if val == "False" or val == "false":
45 val = _get_build_var(var)
46 if val:
47 if val == "True" or val == "true":
49 if val == "False" or val == "false":
/art/runtime/
Doffsets.h30 constexpr explicit Offset(size_t val) : val_(val) {} in Offset() argument
52 constexpr explicit FrameOffset(size_t val) : Offset(val) {} in FrameOffset() argument
61 constexpr explicit ThreadOffset(size_t val) : Offset(val) {} in ThreadOffset() argument
70 constexpr explicit MemberOffset(size_t val) : Offset(val) {} in MemberOffset() argument
/art/runtime/interpreter/
Dshadow_frame-inl.h27 inline void ShadowFrame::SetVRegReference(size_t i, ObjPtr<mirror::Object> val) in SetVRegReference() argument
31 VerifyObject(val); in SetVRegReference()
33 ReadBarrier::MaybeAssertToSpaceInvariant(val.Ptr()); in SetVRegReference()
35 reinterpret_cast<StackReference<mirror::Object>*>(vreg)->Assign(val); in SetVRegReference()
36 References()[i].Assign(val); in SetVRegReference()
/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() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/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() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1923-frame-pop/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/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() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1939-proxy-frames/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/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() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1925-self-frame-pop/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/jvmti-common/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/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() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1926-missed-frame-pop/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1924-frame-pop-toggle/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1914-get-local-instance/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1965-get-set-local-primitive-no-tables/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/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() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1912-get-set-local-primitive/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/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() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/libartbase/base/
Dendian_utils.h66 inline void SetBytes(uint8_t* buf, T val) { in SetBytes() argument
67 memcpy(buf, &val, sizeof(T)); in SetBytes()
70 inline void Set1(uint8_t* buf, uint8_t val) { in Set1() argument
71 *buf = val; in Set1()
74 inline void Set2BE(uint8_t* buf, uint16_t val) { in Set2BE() argument
75 SetBytes<uint16_t>(buf, htobe16(val)); in Set2BE()
78 inline void Set4BE(uint8_t* buf, uint32_t val) { in Set4BE() argument
79 SetBytes<uint32_t>(buf, htobe32(val)); in Set4BE()
82 inline void Set8BE(uint8_t* buf, uint64_t val) { in Set8BE() argument
83 SetBytes<uint64_t>(buf, htobe64(val)); in Set8BE()
/art/test/990-field-trace/src/art/
DTest990.java83 private static String genericToString(Object val) { in genericToString() argument
84 if (val == null) { in genericToString()
86 } else if (val.getClass().isArray()) { in genericToString()
87 return arrayToString(val); in genericToString()
88 } else if (val instanceof Throwable) { in genericToString()
90 ((Throwable) val).printStackTrace(new PrintWriter(w)); in genericToString()
93 return val.toString(); in genericToString()
109 private static String arrayToString(Object val) { in arrayToString() argument
110 Class<?> klass = val.getClass(); in arrayToString()
113 Arrays.stream((Object[])val).map(new Function<Object, String>() { in arrayToString()
[all …]

12345678910