Searched refs:c2 (Results 1 - 15 of 15) sorted by relevance

/art/runtime/
H A Dutf-inl.h74 uint32_t c1, c2; local
77 c2 = *utf8_2;
80 return (c2 == 0) ? 0 : -1;
81 } else if (c2 == 0) {
86 c2 = GetUtf16FromUtf8(&utf8_2);
87 } while (c1 == c2);
89 const uint32_t leading_surrogate_diff = GetLeadingUtf16Char(c1) - GetLeadingUtf16Char(c2);
94 return GetTrailingUtf16Char(c1) - GetTrailingUtf16Char(c2);
H A Ddex_instruction_visitor_test.cc54 const uint16_t c2[] = { 0, 0 }; local
55 v2.Visit(c2, sizeof(c2));
H A Djni_internal_test.cc1284 jclass c2 = env_->GetObjectClass(c); local
1285 ASSERT_TRUE(env_->IsSameObject(class_class, env_->GetObjectClass(c2)));
H A Dcheck_jni.cc1729 static jboolean IsAssignableFrom(JNIEnv* env, jclass c1, jclass c2) { argument
1732 JniValueType args[3] = {{.E = env}, {.c = c1}, {.c = c2}};
1735 result.b = baseEnv(env)->IsAssignableFrom(env, c1, c2);
H A Djni_internal.cc414 mirror::Class* c2 = soa.Decode<mirror::Class*>(java_class2); local
415 return c2->IsAssignableFrom(c1) ? JNI_TRUE : JNI_FALSE;
H A Dclass_linker.cc334 mirror::Class* c2 = FindSystemClass(self, descriptor); local
335 if (c2 == nullptr) {
339 if (c1.Get() != c2) {
342 c2->DumpClass(os2, mirror::Class::kDumpClassFullDetail);
/art/compiler/driver/
H A Dcompiled_method_storage.cc88 static constexpr uint32_t c2 = 0x1b873593; local
104 k *= c2;
125 k1 *= c2;
/art/test/115-native-bridge/src/
H A DNativeBridgeMain.java139 native static char charMethod(char c1, char c2, char c3, char c4, char c5, char c6, char c7, argument
/art/compiler/optimizing/
H A Dinduction_var_range.cc29 static bool IsSafeAdd(int32_t c1, int32_t c2) { argument
30 return CanLongValueFitIntoInt(static_cast<int64_t>(c1) + static_cast<int64_t>(c2));
34 static bool IsSafeSub(int32_t c1, int32_t c2) { argument
35 return CanLongValueFitIntoInt(static_cast<int64_t>(c1) - static_cast<int64_t>(c2));
39 static bool IsSafeMul(int32_t c1, int32_t c2) { argument
40 return CanLongValueFitIntoInt(static_cast<int64_t>(c1) * static_cast<int64_t>(c2));
44 static bool IsSafeDiv(int32_t c1, int32_t c2) { argument
45 return c2 != 0 && CanLongValueFitIntoInt(static_cast<int64_t>(c1) / static_cast<int64_t>(c2));
H A Dbounds_check_elimination.cc1021 int32_t c2 = upper.GetConstant(); variable
1022 // (array.length + c0 - v) where v is in [c1, array.length + c2]
1023 // gets [c0 - c2, array.length + c0 - c1] as its value range.
1024 if (!ValueBound::WouldAddOverflowOrUnderflow(c0, -c2) &&
/art/runtime/verifier/
H A Dreg_type.cc702 mirror::Class* c2 = incoming_type.GetClass(); local
704 DCHECK(c2 != nullptr && !c2->IsPrimitive());
705 mirror::Class* join_class = ClassJoin(c1, c2);
708 } else if (c2 == join_class && !incoming_type.IsPreciseReference()) {
/art/test/115-native-bridge/
H A Dnativebridge.cc174 static jchar trampoline_Java_Main_charMethod(JNIEnv* env, jclass klass, jchar c1, jchar c2, argument
181 return fnPtr(env, klass, c1, c2, c3, c4, c5, c6, c7, c8, c9, c10);
/art/test/004-JniTest/src/
H A DMain.java162 private static native char charMethod(char c1, char c2, char c3, char c4, char c5, char c6, char c7, argument
/art/test/004-JniTest/
H A Djni_test.cc250 extern "C" jchar JNICALL Java_Main_charMethod(JNIEnv*, jclass, jchar c1, jchar c2, argument
254 CHECK_EQ(c2, 'a');
/art/runtime/arch/
H A Dstub_test.cc827 Handle<mirror::Class> c2(
837 Invoke3(reinterpret_cast<size_t>(c2.Get()), reinterpret_cast<size_t>(c2.Get()), 0U,
842 Invoke3(reinterpret_cast<size_t>(c.Get()), reinterpret_cast<size_t>(c2.Get()), 0U,
849 Invoke3(reinterpret_cast<size_t>(c2.Get()), reinterpret_cast<size_t>(c.Get()), 0U,

Completed in 513 milliseconds