Home
last modified time | relevance | path

Searched refs:f (Results 201 – 225 of 297) sorted by relevance

12345678910>>...12

/art/test/122-npe/src/
DMain.java21 private int f; field in Main
31 return f; in callSpecial()
35 return f; in callFinal()
594 static void useFloat(float f) { in useFloat() argument
/art/test/957-methodhandle-transforms/src/
DMain.java797 short d, int e, long f, float g, double h) { in permuteArguments_callee() argument
799 e == 78 && f == (long) 97 && g == 98.0f && f == 97.0) { in permuteArguments_callee()
804 + ", " + d + ", " + e + ", " + f + ", " + g + ", " + h); in permuteArguments_callee()
1054 short d, int e, long f, float g, double h) { in spreadByte() argument
1056 ", d: " + d + ", e: " + e + ", f:" + f + ", g: " + g + in spreadByte()
1062 int d, long e, float f, double g) { in spreadChar() argument
1064 ", d: " + d + ", e: " + e + ", f:" + f + ", g: " + g); in spreadChar()
1069 int d, long e, float f, double g) { in spreadShort() argument
1071 ", d: " + d + ", e: " + e + ", f:" + f + ", g:" + g); in spreadShort()
1076 long d, float e, double f) { in spreadInt() argument
[all …]
/art/runtime/hprof/
Dhprof.cc1402 ArtField* f = klass->GetInstanceField(i); in DumpHeapClass() local
1403 __ AddStringId(LookupStringId(f->GetName())); in DumpHeapClass()
1404 HprofBasicType t = SignatureToBasicTypeAndSize(f->GetTypeDescriptor(), nullptr); in DumpHeapClass()
1490 ArtField* f = klass->GetInstanceField(i); in DumpHeapInstanceObject() local
1492 HprofBasicType t = SignatureToBasicTypeAndSize(f->GetTypeDescriptor(), &size); in DumpHeapInstanceObject()
1495 __ AddU1(f->GetByte(obj)); in DumpHeapInstanceObject()
1498 __ AddU1(f->GetBoolean(obj)); in DumpHeapInstanceObject()
1501 __ AddU2(f->GetChar(obj)); in DumpHeapInstanceObject()
1504 __ AddU2(f->GetShort(obj)); in DumpHeapInstanceObject()
1509 f->GetOffset().SizeValue() == mirror::String::CountOffset().SizeValue()) { in DumpHeapInstanceObject()
[all …]
/art/test/004-UnsafeTest/src/
DMain.java58 Field f = unsafeClass.getDeclaredField("theUnsafe"); in getUnsafe() local
59 f.setAccessible(true); in getUnsafe()
60 return (Unsafe) f.get(null); in getUnsafe()
/art/test/988-method-trace/
Dgen_srcs.py247 with open(INTRINSICS_LIST_H) as f:
248 for line in f:
/art/libartbase/base/unix_file/
Drandom_access_file_test.h54 static bool ReadString(RandomAccessFile* f, std::string* s) { in ReadString() argument
59 while ((n = f->Read(buf, sizeof(buf), offset)) > 0) { in ReadString()
/art/test/712-varhandle-invocations/src/
DVarHandleTypeConversionTests.java724 float f = (float) vh.get(); in doTest() local
772 float f = (float) vh.get(); in doTest() local
820 float f = (float) vh.get(); in doTest() local
864 float f = (float) vh.get(); in doTest() local
912 float f = (float) vh.get(); in doTest() local
964 float f = (float) vh.get(); in doTest() local
1020 float f = (float) vh.get(); in doTest() local
1077 float f = (float) vh.get(); in doTest() local
/art/openjdkjvmti/
Dti_redefine.cc2006 for (const art::ClassAccessor::Field& f : accessor.GetStaticFields()) { in GetNewClassSize() local
2008 accessor.GetDexFile().GetFieldId(f.GetIndex()))); in GetNewClassSize()
2141 linked_class->VisitFields([&](art::ArtField* f) REQUIRES_SHARED(art::Locks::mutator_lock_) { in AllocateNewClassObject()
2142 DCHECK_EQ(f->GetDeclaringClass(), linked_class.Get()); in AllocateNewClassObject()
2618 for (art::ArtField& f : old_cls->GetSFields()) { in CollectNewFieldAndMethodMappings()
2619 (*field_map)[&f] = new_cls->FindDeclaredStaticField(f.GetName(), f.GetTypeDescriptor()); in CollectNewFieldAndMethodMappings()
2621 for (art::ArtField& f : old_cls->GetIFields()) { in CollectNewFieldAndMethodMappings()
2622 (*field_map)[&f] = new_cls->FindDeclaredInstanceField(f.GetName(), f.GetTypeDescriptor()); in CollectNewFieldAndMethodMappings()
2682 for (art::ArtField& f : (is_static ? source_class->GetSFields() : source_class->GetIFields())) { in CopyFields()
2684 (is_static ? target_class->FindDeclaredStaticField(f.GetName(), f.GetTypeDescriptor()) in CopyFields()
[all …]
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h739 inline INT_TYPE art_float_to_integral(FLOAT_TYPE f) { in art_float_to_integral() argument
744 if (LIKELY(f > kMinIntAsFloat)) { in art_float_to_integral()
745 if (LIKELY(f < kMaxIntAsFloat)) { in art_float_to_integral()
746 return static_cast<INT_TYPE>(f); in art_float_to_integral()
751 return (f != f) ? 0 : kMinInt; // f != f implies NaN in art_float_to_integral()
/art/runtime/jni/
Djni_internal.cc545 ArtField* f = jni::DecodeArtField(fid); in ToReflectedField() local
547 mirror::Field::CreateFromArtField(soa.Self(), f, true)); in ToReflectedField()
1380 ArtField* f = jni::DecodeArtField<kEnableIndexIds>(fid); in GetObjectField() local
1381 NotifyGetField(f, obj); in GetObjectField()
1383 return soa.AddLocalReference<jobject>(f->GetObject(o)); in GetObjectField()
1389 ArtField* f = jni::DecodeArtField<kEnableIndexIds>(fid); in GetStaticObjectField() local
1390 NotifyGetField(f, nullptr); in GetStaticObjectField()
1391 return soa.AddLocalReference<jobject>(f->GetObject(f->GetDeclaringClass())); in GetStaticObjectField()
1398 ArtField* f = jni::DecodeArtField<kEnableIndexIds>(fid); in SetObjectField() local
1399 NotifySetObjectField(f, java_object, java_value); in SetObjectField()
[all …]
/art/runtime/arch/x86/
Dquick_entrypoints_x86.S430 jz 1f
463 je 2f // goto FOUND_DOUBLE
465 je 3f // goto FOUND_FLOAT
475 jmp 4f
494 je 3f // goto SKIP_FLOAT
496 je 4f // goto SKIP_DOUBLE
497 jmp 5f // goto end
862 jz 1f
878 jz 1f // if eax == 0 goto 1
886 jnz 1f // if eax != 0 goto 1
[all …]
/art/runtime/arch/x86_64/
Dquick_entrypoints_x86_64.S322 jz 1f
355 je 2f
357 je 3f
367 jmp 4f
386 je 2f
388 je 3f
390 je 4f
393 jmp 5f
397 jmp 5f
735 jz 1f
[all …]
/art/test/dexdump/
Dinvoke-custom.txt131 00258a: 6e20 c500 3100 |000f: invoke-virtual {v1, v3}, Ljava/lang/StringBui…
165 0025de: 6e20 c200 3100 |000f: invoke-virtual {v1, v3}, Ljava/lang/StringBui…
201 00263c: 1a02 0f00 |0014: const-string v2, ", d2: " // string@000f
205 002652: 0c01 |001f: move-result-object v1
240 0026aa: 0c01 |001f: move-result-object v1
269 0026e2: 6e20 c500 3100 |000f: invoke-virtual {v1, v3}, Ljava/lang/StringBui…
309 0027b2: 0c01 |001f: move-result-object v1
374 0027ea: 6e20 c500 3100 |000f: invoke-virtual {v1, v3}, Ljava/lang/StringBui…
463 0028ba: 6e20 c900 3100 |000f: invoke-virtual {v1, v3}, Ljava/lang/StringBui…
780 00193a: 280f |0009: goto 0018 // +000f
[all …]
Dconst-method-handle.txt86 0003f6: 0c03 |000f: move-result-object v3
174 … |0027: invoke-virtual {v1}, Ljava/lang/StringBuilder;.toString:()Ljava/lang/String; // method@000f
200 0004b2: 1a02 1f00 |0007: const-string v2, "MethodType " // string@001f
205 … |0011: invoke-virtual {v1}, Ljava/lang/StringBuilder;.toString:()Ljava/lang/String; // method@000f
/art/tools/
Ddex2oat_wrapper29 # On Mac OS, readlink -f doesn't work.
112 if [[ ! -f $ANDROID_ROOT/bin/dex2oat${DEX2OAT_SUFFIX} ]]; then
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DValue.java369 FloatValue(float f) { in FloatValue() argument
370 mFloat = f; in FloatValue()
/art/test/594-checker-irreducible-linorder/smali/
DIrreducibleLoop.smali94 sget-boolean v2, LIrreducibleLoop;->f:Z
123 .field public static f:Z
/art/test/623-checker-loop-regressions/src/
DMain.java1005 int[] f = new int[100]; in main() local
1006 f[0] = 11; in main()
1007 expectEquals(1000, feedsIntoDeopt(f)); in main()
1009 expectEquals(11, f[i]); in main()
1038 largeBody(f); in main()
1040 expectEquals(2805, f[i]); in main()
/art/test/1946-list-descriptors/src-art/art/
DTest1946.java60 List<T> f = Arrays.asList(full); in checkEq() local
/art/runtime/interpreter/mterp/x86_64ng/
Dother.S33 FETCH_FROM_THREAD_CACHE %rax, 2f
35 jne 3f
/art/test/961-default-iface-resolution-gen/util-src/
Dgenerate_java.py374 for f in all_files:
375 f.dump(java_dir)
/art/runtime/interpreter/mterp/arm64ng/
Dother.S45 FETCH_FROM_THREAD_CACHE x0, 2f
46 cbnz wMR, 3f
/art/test/968-default-partial-compile-gen/util-src/
Dgenerate_smali.py603 for f in all_files:
604 f.dump(smali_dir)
/art/runtime/
Dart_field.h145 void SetFloat(ObjPtr<mirror::Object> object, float f) REQUIRES_SHARED(Locks::mutator_lock_);
231 static std::string PrettyField(ArtField* f, bool with_type = true)
/art/test/964-default-iface-init-gen/util-src/
Dgenerate_java.py415 for f in all_files:
416 f.dump(java_dir)

12345678910>>...12