Lines Matching full:qpoints
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;
64 qpoints->pUshrLong = art_quick_ushr_long;
66 qpoints->pFmod = fmod;
67 qpoints->pFmodf = fmodf;
68 qpoints->pD2l = art_d2l;
69 qpoints->pF2l = art_f2l;
70 qpoints->pL2f = art_l2f;
72 qpoints->pFmod = art_quick_fmod;
73 qpoints->pFmodf = art_quick_fmodf;
74 qpoints->pD2l = art_quick_d2l;
75 qpoints->pF2l = art_quick_f2l;
76 qpoints->pL2f = art_quick_l2f;
80 qpoints->pCos = cos;
81 qpoints->pSin = sin;
82 qpoints->pAcos = acos;
83 qpoints->pAsin = asin;
84 qpoints->pAtan = atan;
85 qpoints->pAtan2 = atan2;
86 qpoints->pCbrt = cbrt;
87 qpoints->pCosh = cosh;
88 qpoints->pExp = exp;
89 qpoints->pExpm1 = expm1;
90 qpoints->pHypot = hypot;
91 qpoints->pLog = log;
92 qpoints->pLog10 = log10;
93 qpoints->pNextAfter = nextafter;
94 qpoints->pSinh = sinh;
95 qpoints->pTan = tan;
96 qpoints->pTanh = tanh;
99 qpoints->pIndexOf = art_quick_indexof;
100 qpoints->pStringCompareTo = art_quick_string_compareto;
101 qpoints->pMemcpy = memcpy;
104 qpoints->pReadBarrierJni = ReadBarrierJni;
105 qpoints->pReadBarrierMark = artReadBarrierMark;
106 qpoints->pReadBarrierSlow = artReadBarrierSlow;
107 qpoints->pReadBarrierForRootSlow = artReadBarrierForRootSlow;