OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxInt64
(Results
1 - 13
of
13
) sorted by null
/prebuilts/go/darwin-x86/src/net/http/
http.go
17
//
maxInt64
is the effective "infinite" value for the Server and
19
const
maxInt64
= 1<<63 - 1
transport.go
[
all
...]
server.go
692
func (cr *connReader) setInfiniteReadLimit() { cr.remain =
maxInt64
}
[
all
...]
/prebuilts/go/linux-x86/src/net/http/
http.go
17
//
maxInt64
is the effective "infinite" value for the Server and
19
const
maxInt64
= 1<<63 - 1
transport.go
[
all
...]
server.go
692
func (cr *connReader) setInfiniteReadLimit() { cr.remain =
maxInt64
}
[
all
...]
/external/jsoncpp/src/lib_json/
json_value.cpp
45
const Int64 Value::
maxInt64
= Int64(UInt64(-1) / 2);
607
JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt64,
maxInt64
),
1132
return value_.uint_ <= UInt64(
maxInt64
);
1134
// Note that
maxInt64
(= 2^63 - 1) is not exactly representable as a
1135
// double, so double(
maxInt64
) will be rounded up to 2^63. Therefore we
1138
value_.real_ < double(
maxInt64
) && IsIntegral(value_.real_);
[
all
...]
/external/jsoncpp/include/json/
value.h
155
static const Int64
maxInt64
;
/external/protobuf/conformance/third_party/jsoncpp/
json.h
583
static const Int64
maxInt64
;
[
all
...]
jsoncpp.cpp
[
all
...]
/prebuilts/go/darwin-x86/src/go/constant/
value.go
210
maxInt64
= big.NewInt(1<<63 - 1)
214
if minInt64.Cmp(x) <= 0 && x.Cmp(
maxInt64
) <= 0 {
/prebuilts/go/linux-x86/src/go/constant/
value.go
210
maxInt64
= big.NewInt(1<<63 - 1)
214
if minInt64.Cmp(x) <= 0 && x.Cmp(
maxInt64
) <= 0 {
/external/jsoncpp/src/test_lib_json/
main.cpp
16
#define kint64max Json::Value::
maxInt64
[
all
...]
Completed in 2478 milliseconds