HomeSort by relevance Sort by last modified time
    Searched defs:kMaxInt (Results 1 - 4 of 4) sorted by null

  /art/runtime/entrypoints/
math_entrypoints.cc 62 static const double kMaxInt = static_cast<double>(static_cast<int32_t>(0x7fffffffUL));
64 if (d >= kMaxInt) {
76 static const float kMaxInt = static_cast<float>(static_cast<int32_t>(0x7fffffffUL));
78 if (f >= kMaxInt) {
  /external/v8/src/
globals.h 224 const int kMaxInt = 0x7FFFFFFF;
225 const int kMinInt = -kMaxInt - 1;
  /external/chromium_org/v8/src/
globals.h 237 const int kMaxInt = 0x7FFFFFFF;
238 const int kMinInt = -kMaxInt - 1;
  /art/runtime/interpreter/
interpreter.cc 64 static const int32_t kMaxInt = std::numeric_limits<int32_t>::max();
    [all...]

Completed in 171 milliseconds