Home | History | Annotate | Download | only in jsoncpp

Lines Matching refs:maxInt64

2458 const Int64 Value::maxInt64 = Int64(UInt64(-1) / 2);
3117 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt64, maxInt64),
3669 return value_.uint_ <= UInt64(maxInt64);
3671 // Note that maxInt64 (= 2^63 - 1) is not exactly representable as a
3672 // double, so double(maxInt64) will be rounded up to 2^63. Therefore we
3675 value_.real_ < double(maxInt64) && IsIntegral(value_.real_);