Home | History | Annotate | Download | only in interp

Lines Matching refs:s8

1324 s8 dvmJitd2l(double d)
1326 static const double kMaxLong = (double)(s8)0x7fffffffffffffffULL;
1327 static const double kMinLong = (double)(s8)0x8000000000000000ULL;
1329 return (s8)0x7fffffffffffffffULL;
1331 return (s8)0x8000000000000000ULL;
1335 return (s8)d;
1338 s8 dvmJitf2l(float f)
1340 static const float kMaxLong = (float)(s8)0x7fffffffffffffffULL;
1341 static const float kMinLong = (float)(s8)0x8000000000000000ULL;
1343 return (s8)0x7fffffffffffffffULL;
1345 return (s8)0x8000000000000000ULL;
1349 return (s8)f;