Searched defs:c1 (Results 1 - 11 of 11) sorted by relevance

/art/runtime/
H A Ddex_instruction_visitor_test.cc49 const uint16_t c1[] = { 0 }; local
50 v1.Visit(c1, sizeof(c1));
H A Dutf-inl.h74 uint32_t c1, c2; local
76 c1 = *utf8_1;
79 if (c1 == 0) {
85 c1 = GetUtf16FromUtf8(&utf8_1);
87 } while (c1 == c2);
89 const uint32_t leading_surrogate_diff = GetLeadingUtf16Char(c1) - GetLeadingUtf16Char(c2);
94 return GetTrailingUtf16Char(c1) - GetTrailingUtf16Char(c2);
H A Ddex_file_test.cc223 const DexFile::ClassDef& c1 = raw->GetClassDef(1); local
224 EXPECT_STREQ("LNested;", raw->GetClassDescriptor(c1));
H A Dcheck_jni.cc1547 static jboolean IsAssignableFrom(JNIEnv* env, jclass c1, jclass c2) { argument
1550 JniValueType args[3] = {{.E = env}, {.c = c1}, {.c = c2}};
1553 result.b = baseEnv(env)->IsAssignableFrom(env, c1, c2);
H A Djni_internal.cc418 mirror::Class* c1 = soa.Decode<mirror::Class*>(java_class1); local
420 return c2->IsAssignableFrom(c1) ? JNI_TRUE : JNI_FALSE;
/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/runtime/verifier/
H A Dreg_type.cc690 mirror::Class* c1 = GetClass(); local
692 DCHECK(c1 != nullptr && !c1->IsPrimitive());
694 mirror::Class* join_class = ClassJoin(c1, c2);
695 if (c1 == join_class && !IsPreciseReference()) {
/art/compiler/driver/
H A Dcompiler_driver.h700 static constexpr uint32_t c1 = 0xcc9e2d51; local
715 k *= c1;
736 k1 *= c1;
/art/test/004-JniTest/src/
H A DMain.java154 private static native char charMethod(char c1, char c2, char c3, char c4, char c5, char c6, char c7, argument
/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/compiler/optimizing/
H A Dbounds_check_elimination.cc1625 int32_t c1 = lower.GetConstant(); local
1627 // (array.length + c0 - v) where v is in [c1, array.length + c2]
1628 // gets [c0 - c2, array.length + c0 - c1] as its value range.
1630 !ValueBound::WouldAddOverflowOrUnderflow(c0, -c1)) {
1631 if ((c0 - c1) <= 0) {
1632 // array.length + (c0 - c1) won't overflow/underflow.

Completed in 267 milliseconds