HomeSort by relevance Sort by last modified time
    Searched full:qpoints (Results 1 - 10 of 10) sorted by null

  /art/runtime/arch/arm64/
entrypoints_init_arm64.cc 33 void InitEntryPoints(JniEntryPoints* jpoints, QuickEntryPoints* qpoints) {
34 DefaultInitEntryPoints(jpoints, qpoints);
37 qpoints->pInstanceofNonTrivial = artIsAssignableFromCode;
38 qpoints->pCheckCast = art_quick_check_cast;
42 qpoints->pCmpgDouble = nullptr;
43 qpoints->pCmpgFloat = nullptr;
44 qpoints->pCmplDouble = nullptr;
45 qpoints->pCmplFloat = nullptr;
46 qpoints->pFmod = fmod;
47 qpoints->pL2d = nullptr
    [all...]
  /art/runtime/entrypoints/quick/
quick_default_init_entrypoints.h 29 void DefaultInitEntryPoints(JniEntryPoints* jpoints, QuickEntryPoints* qpoints) {
34 ResetQuickAllocEntryPoints(qpoints);
37 qpoints->pInitializeStaticStorage = art_quick_initialize_static_storage;
38 qpoints->pInitializeTypeAndVerifyAccess = art_quick_initialize_type_and_verify_access;
39 qpoints->pInitializeType = art_quick_initialize_type;
40 qpoints->pResolveString = art_quick_resolve_string;
43 qpoints->pSet8Instance = art_quick_set8_instance;
44 qpoints->pSet8Static = art_quick_set8_static;
45 qpoints->pSet16Instance = art_quick_set16_instance;
46 qpoints->pSet16Static = art_quick_set16_static
    [all...]
quick_alloc_entrypoints.cc 218 void SetQuickAllocEntryPoints##suffix(QuickEntryPoints* qpoints, bool instrumented) { \
220 qpoints->pAllocArray = art_quick_alloc_array##suffix##_instrumented; \
221 qpoints->pAllocArrayResolved = art_quick_alloc_array_resolved##suffix##_instrumented; \
222 qpoints->pAllocArrayWithAccessCheck = art_quick_alloc_array_with_access_check##suffix##_instrumented; \
223 qpoints->pAllocObject = art_quick_alloc_object##suffix##_instrumented; \
224 qpoints->pAllocObjectResolved = art_quick_alloc_object_resolved##suffix##_instrumented; \
225 qpoints->pAllocObjectInitialized = art_quick_alloc_object_initialized##suffix##_instrumented; \
226 qpoints->pAllocObjectWithAccessCheck = art_quick_alloc_object_with_access_check##suffix##_instrumented; \
227 qpoints->pCheckAndAllocArray = art_quick_check_and_alloc_array##suffix##_instrumented; \
228 qpoints->pCheckAndAllocArrayWithAccessCheck = art_quick_check_and_alloc_array_with_access_check##suffix##_ (…)
    [all...]
quick_alloc_entrypoints.h 26 void ResetQuickAllocEntryPoints(QuickEntryPoints* qpoints);
  /art/runtime/arch/x86/
entrypoints_init_x86.cc 36 void InitEntryPoints(JniEntryPoints* jpoints, QuickEntryPoints* qpoints) {
37 DefaultInitEntryPoints(jpoints, qpoints);
40 qpoints->pInstanceofNonTrivial = art_quick_is_assignable;
41 qpoints->pCheckCast = art_quick_check_cast;
44 qpoints->pCos = cos;
45 qpoints->pSin = sin;
46 qpoints->pAcos = acos;
47 qpoints->pAsin = asin;
48 qpoints->pAtan = atan;
49 qpoints->pAtan2 = atan2
    [all...]
  /art/runtime/arch/x86_64/
entrypoints_init_x86_64.cc 39 void InitEntryPoints(JniEntryPoints* jpoints, QuickEntryPoints* qpoints) {
41 UNUSED(jpoints, qpoints);
44 DefaultInitEntryPoints(jpoints, qpoints);
47 qpoints->pInstanceofNonTrivial = art_quick_assignable_from_code;
48 qpoints->pCheckCast = art_quick_check_cast;
51 qpoints->pCos = cos;
52 qpoints->pSin = sin;
53 qpoints->pAcos = acos;
54 qpoints->pAsin = asin;
55 qpoints->pAtan = atan
    [all...]
  /art/runtime/arch/arm/
entrypoints_init_arm.cc 50 void InitEntryPoints(JniEntryPoints* jpoints, QuickEntryPoints* qpoints) {
51 DefaultInitEntryPoints(jpoints, qpoints);
54 qpoints->pInstanceofNonTrivial = artIsAssignableFromCode;
55 qpoints->pCheckCast = art_quick_check_cast;
58 qpoints->pIdivmod = __aeabi_idivmod;
59 qpoints->pLdiv = __aeabi_ldivmod;
60 qpoints->pLmod = __aeabi_ldivmod; // result returned in r2:r3
61 qpoints->pLmul = art_quick_mul_long;
62 qpoints->pShlLong = art_quick_shl_long;
63 qpoints->pShrLong = art_quick_shr_long
    [all...]
  /art/runtime/arch/mips/
entrypoints_init_mips.cc 61 void InitEntryPoints(JniEntryPoints* jpoints, QuickEntryPoints* qpoints) {
69 ResetQuickAllocEntryPoints(qpoints);
72 qpoints->pInstanceofNonTrivial = artIsAssignableFromCode;
74 qpoints->pCheckCast = art_quick_check_cast;
78 qpoints->pInitializeStaticStorage = art_quick_initialize_static_storage;
81 qpoints->pInitializeTypeAndVerifyAccess = art_quick_initialize_type_and_verify_access;
84 qpoints->pInitializeType = art_quick_initialize_type;
86 qpoints->pResolveString = art_quick_resolve_string;
90 qpoints->pSet8Instance = art_quick_set8_instance;
92 qpoints->pSet8Static = art_quick_set8_static
    [all...]
  /art/runtime/arch/mips64/
entrypoints_init_mips64.cc 60 void InitEntryPoints(JniEntryPoints* jpoints, QuickEntryPoints* qpoints) {
61 DefaultInitEntryPoints(jpoints, qpoints);
64 qpoints->pInstanceofNonTrivial = artIsAssignableFromCode;
65 qpoints->pCheckCast = art_quick_check_cast;
68 qpoints->pCmpgDouble = CmpgDouble;
69 qpoints->pCmpgFloat = CmpgFloat;
70 qpoints->pCmplDouble = CmplDouble;
71 qpoints->pCmplFloat = CmplFloat;
72 qpoints->pFmod = fmod;
73 qpoints->pL2d = art_l2d
    [all...]
  /art/runtime/
thread.cc 112 void InitEntryPoints(JniEntryPoints* jpoints, QuickEntryPoints* qpoints);
127 QuickEntryPoints* qpoints = &tlsPtr_.quick_entrypoints; local
128 qpoints->pNewEmptyString = reinterpret_cast<void(*)()>(
130 qpoints->pNewStringFromBytes_B = reinterpret_cast<void(*)()>(
132 qpoints->pNewStringFromBytes_BI = reinterpret_cast<void(*)()>(
134 qpoints->pNewStringFromBytes_BII = reinterpret_cast<void(*)()>(
136 qpoints->pNewStringFromBytes_BIII = reinterpret_cast<void(*)()>(
138 qpoints->pNewStringFromBytes_BIIString = reinterpret_cast<void(*)()>(
140 qpoints->pNewStringFromBytes_BString = reinterpret_cast<void(*)()>(
142 qpoints->pNewStringFromBytes_BIICharset = reinterpret_cast<void(*)()>
    [all...]

Completed in 64 milliseconds