Searched refs:c1 (Results 1 - 16 of 16) sorted by relevance

/art/runtime/
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_instruction_visitor_test.cc49 const uint16_t c1[] = { 0 }; local
50 v1.Visit(c1, sizeof(c1));
H A Ddex_file_test.cc223 const DexFile::ClassDef& c1 = raw->GetClassDef(1); local
224 EXPECT_STREQ("LNested;", raw->GetClassDescriptor(c1));
H A Dclass_linker.h1091 // Check that c1 == FindSystemClass(self, descriptor). Abort with class dumps otherwise.
1092 void CheckSystemClass(Thread* self, Handle<mirror::Class> c1, const char* descriptor)
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.cc413 mirror::Class* c1 = soa.Decode<mirror::Class*>(java_class1); local
415 return c2->IsAssignableFrom(c1) ? JNI_TRUE : JNI_FALSE;
H A Dclass_linker.cc333 void ClassLinker::CheckSystemClass(Thread* self, Handle<mirror::Class> c1, const char* descriptor) { argument
339 if (c1.Get() != c2) {
341 c1->DumpClass(os1, mirror::Class::kDumpClassFullDetail);
/art/compiler/driver/
H A Dcompiled_method_storage.cc87 static constexpr uint32_t c1 = 0xcc9e2d51; local
102 k *= c1;
123 k1 *= c1;
/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.cc1020 int32_t c1 = lower.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.
1025 !ValueBound::WouldAddOverflowOrUnderflow(c0, -c1)) {
1026 if ((c0 - c1) <= 0) {
1027 // array.length + (c0 - c1) won't overflow/underflow.
/art/test/utils/python/
H A Dgenerate_java_main.py222 for c1 in flatten_classes(classes, c):
223 yield from c1.methods
/art/runtime/verifier/
H A Dreg_type.cc701 mirror::Class* c1 = GetClass(); local
703 DCHECK(c1 != nullptr && !c1->IsPrimitive());
705 mirror::Class* join_class = ClassJoin(c1, c2);
706 if (c1 == join_class && !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
253 // We use c1 to drive the output.
264 CHECK_LT(c1, static_cast<jchar>(kCharReturnSize));
266 return char_returns[c1];

Completed in 233 milliseconds