Home | History | Annotate | Download | only in entrypoints

Lines Matching refs:static_cast

22   return static_cast<double>(l);
26 return static_cast<float>(l);
34 static const double kMaxLong = static_cast<double>(static_cast<int64_t>(0x7fffffffffffffffULL));
35 static const double kMinLong = static_cast<double>(static_cast<int64_t>(0x8000000000000000ULL));
37 return static_cast<int64_t>(0x7fffffffffffffffULL);
39 return static_cast<int64_t>(0x8000000000000000ULL);
43 return static_cast<int64_t>(d);
48 static const float kMaxLong = static_cast<float>(static_cast<int64_t>(0x7fffffffffffffffULL));
49 static const float kMinLong = static_cast<float>(static_cast<int64_t>(0x8000000000000000ULL));
51 return static_cast<int64_t>(0x7fffffffffffffffULL);
53 return static_cast<int64_t>(0x8000000000000000ULL);
57 return static_cast<int64_t>(f);
62 static const double kMaxInt = static_cast<double>(static_cast<int32_t>(0x7fffffffUL));
63 static const double kMinInt = static_cast<double>(static_cast<int32_t>(0x80000000UL));
65 return static_cast<int32_t>(0x7fffffffUL);
67 return static_cast<int32_t>(0x80000000UL);
71 return static_cast<int32_t>(d);
76 static const float kMaxInt = static_cast<float>(static_cast<int32_t>(0x7fffffffUL));
77 static const float kMinInt = static_cast<float>(static_cast<int32_t>(0x80000000UL));
79 return static_cast<int32_t>(0x7fffffffUL);
81 return static_cast<int32_t>(0x80000000UL);
85 return static_cast<int32_t>(f);