/art/runtime/ |
H A D | dex_instruction_visitor_test.cc | 49 const uint16_t c1[] = { 0 }; local 50 v1.Visit(c1, sizeof(c1));
|
H A D | utf-inl.h | 74 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 D | dex_file_test.cc | 223 const DexFile::ClassDef& c1 = raw->GetClassDef(1); local 224 EXPECT_STREQ("LNested;", raw->GetClassDescriptor(c1));
|
H A D | check_jni.cc | 1729 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 D | jni_internal.cc | 413 mirror::Class* c1 = soa.Decode<mirror::Class*>(java_class1); local 415 return c2->IsAssignableFrom(c1) ? JNI_TRUE : JNI_FALSE;
|
H A D | class_linker.cc | 333 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 D | compiled_method_storage.cc | 87 static constexpr uint32_t c1 = 0xcc9e2d51; local 102 k *= c1; 123 k1 *= c1;
|
/art/test/115-native-bridge/src/ |
H A D | NativeBridgeMain.java | 139 native static char charMethod(char c1, char c2, char c3, char c4, char c5, char c6, char c7, argument
|
/art/runtime/verifier/ |
H A D | reg_type.cc | 701 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/compiler/optimizing/ |
H A D | induction_var_range.cc | 29 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 D | bounds_check_elimination.cc | 1020 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/004-JniTest/src/ |
H A D | Main.java | 162 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 D | nativebridge.cc | 174 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/ |
H A D | jni_test.cc | 250 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];
|