/art/runtime/ |
D | utf-inl.h | 74 uint32_t c1, c2; in CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues() local 77 c2 = *utf8_2; in CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues() 80 return (c2 == 0) ? 0 : -1; in CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues() 81 } else if (c2 == 0) { in CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues() 86 c2 = GetUtf16FromUtf8(&utf8_2); in CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues() 87 } while (c1 == c2); in CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues() 89 const uint32_t leading_surrogate_diff = GetLeadingUtf16Char(c1) - GetLeadingUtf16Char(c2); in CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues() 94 return GetTrailingUtf16Char(c1) - GetTrailingUtf16Char(c2); in CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues()
|
D | dex_instruction_visitor_test.cc | 54 const uint16_t c2[] = { 0, 0 }; in TEST() local 55 v2.Visit(c2, sizeof(c2)); in TEST()
|
D | jni_internal_test.cc | 1223 jclass c2 = env_->GetObjectClass(c); in TEST_F() local 1224 ASSERT_TRUE(env_->IsSameObject(class_class, env_->GetObjectClass(c2))); in TEST_F()
|
D | check_jni.cc | 1547 static jboolean IsAssignableFrom(JNIEnv* env, jclass c1, jclass c2) { in IsAssignableFrom() argument 1550 JniValueType args[3] = {{.E = env}, {.c = c1}, {.c = c2}}; in IsAssignableFrom() 1553 result.b = baseEnv(env)->IsAssignableFrom(env, c1, c2); in IsAssignableFrom()
|
D | jni_internal.cc | 419 mirror::Class* c2 = soa.Decode<mirror::Class*>(java_class2); in IsAssignableFrom() local 420 return c2->IsAssignableFrom(c1) ? JNI_TRUE : JNI_FALSE; in IsAssignableFrom()
|
/art/runtime/verifier/ |
D | reg_type.cc | 691 mirror::Class* c2 = incoming_type.GetClass(); in Merge() local 693 DCHECK(c2 != nullptr && !c2->IsPrimitive()); in Merge() 694 mirror::Class* join_class = ClassJoin(c1, c2); in Merge() 697 } else if (c2 == join_class && !incoming_type.IsPreciseReference()) { in Merge()
|
/art/test/115-native-bridge/src/ |
D | NativeBridgeMain.java | 139 native static char charMethod(char c1, char c2, char c3, char c4, char c5, char c6, char c7, in charMethod() argument
|
/art/compiler/utils/ |
D | assembler_thumb_test_expected.cc.inc | 586 " c2: 23c0 movs r3, #192 ; 0xc0\n", 587 " c4: 23c2 movs r3, #194 ; 0xc2\n", 714 " 1c2: 23c0 movs r3, #192 ; 0xc0\n", 715 " 1c4: 23c2 movs r3, #194 ; 0xc2\n", 842 " 2c2: 23c0 movs r3, #192 ; 0xc0\n", 843 " 2c4: 23c2 movs r3, #194 ; 0xc2\n", 970 " 3c2: 23c0 movs r3, #192 ; 0xc0\n", 971 " 3c4: 23c2 movs r3, #194 ; 0xc2\n", 1098 " 4c2: 23c0 movs r3, #192 ; 0xc0\n", 1099 " 4c4: 23c2 movs r3, #194 ; 0xc2\n", [all …]
|
/art/test/004-JniTest/src/ |
D | Main.java | 154 …private static native char charMethod(char c1, char c2, char c3, char c4, char c5, char c6, char c… in charMethod() argument
|
/art/test/115-native-bridge/ |
D | nativebridge.cc | 174 static jchar trampoline_Java_Main_charMethod(JNIEnv* env, jclass klass, jchar c1, jchar c2, in trampoline_Java_Main_charMethod() argument 181 return fnPtr(env, klass, c1, c2, c3, c4, c5, c6, c7, c8, c9, c10); in trampoline_Java_Main_charMethod()
|
/art/compiler/driver/ |
D | compiler_driver.h | 701 static constexpr uint32_t c2 = 0x1b873593; in operator() local 717 k *= c2; in operator() 738 k1 *= c2; in operator()
|
/art/test/004-JniTest/ |
D | jni_test.cc | 242 extern "C" jchar JNICALL Java_Main_charMethod(JNIEnv*, jclass, jchar c1, jchar c2, in Java_Main_charMethod() argument 246 assert(c2 == 'a'); in Java_Main_charMethod()
|
/art/runtime/arch/ |
D | stub_test.cc | 1090 Handle<mirror::Class> c2( in TEST_F() local 1100 Invoke3(reinterpret_cast<size_t>(c2.Get()), reinterpret_cast<size_t>(c2.Get()), 0U, in TEST_F() 1105 Invoke3(reinterpret_cast<size_t>(c.Get()), reinterpret_cast<size_t>(c2.Get()), 0U, in TEST_F() 1112 Invoke3(reinterpret_cast<size_t>(c2.Get()), reinterpret_cast<size_t>(c.Get()), 0U, in TEST_F()
|
/art/compiler/optimizing/ |
D | bounds_check_elimination.cc | 1626 int32_t c2 = upper.GetConstant(); in VisitSub() local 1629 if (!ValueBound::WouldAddOverflowOrUnderflow(c0, -c2) && in VisitSub()
|