Home
last modified time | relevance | path

Searched refs:MinInt64 (Results 1 – 8 of 8) sorted by relevance

/external/golang-protobuf/ptypes/
Dduration_test.go44 minGoSeconds = math.MinInt64 / int64(1e9)
64 …ration{Seconds: minGoSeconds, Nanos: int32(math.MinInt64 - 1e9*minGoSeconds)}, true, true, math.Mi…
68 {&durpb.Duration{Seconds: math.MinInt64, Nanos: 0}, false, false, 0},
81 …{&durpb.Duration{Seconds: minGoSeconds, Nanos: int32(math.MinInt64-1e9*minGoSeconds) - 1}, true, f…
85 …{&durpb.Duration{Seconds: minGoSeconds - 1, Nanos: int32(math.MinInt64 - 1e9*minGoSeconds)}, true,…
Dtimestamp_test.go51 {&tspb.Timestamp{Seconds: math.MinInt64, Nanos: math.MinInt32}, false,
52 time.Unix(math.MinInt64, math.MinInt32).UTC()},
54 {&tspb.Timestamp{Seconds: math.MinInt64, Nanos: 0}, false, time.Unix(math.MinInt64, 0).UTC()},
/external/llvm-project/llvm/unittests/FileCheck/
DFileCheckTest.cpp83 constexpr int64_t MinInt64 = std::numeric_limits<int64_t>::min(); variable
85 static_cast<uint64_t>(-(MinInt64 + 1)) + 1;
121 MinInt64Str = std::to_string(MinInt64); in SetUp()
265 checkMatchingString(MinInt64, padWithLeadingZeros(MinInt64Str)); in TEST_P()
270 checkMatchingStringFailure(MinInt64); in TEST_P()
420 ExpressionValue(MinInt64).getUnsignedValue().takeError()); in TEST_F()
456 SignedValue = ExpressionValue(MinInt64).getSignedValue(); in TEST_F()
458 EXPECT_EQ(*SignedValue, MinInt64); in TEST_F()
475 expectValueEqual(ExpressionValue(MinInt64).getAbsolute(), in TEST_F()
476 static_cast<uint64_t>(-(MinInt64 + 10)) + 10); in TEST_F()
[all …]
/external/llvm-project/llvm/unittests/ADT/
DStringExtrasTest.cpp192 constexpr int64_t MinInt64 = std::numeric_limits<int64_t>::min(); variable
205 constexpr uint64_t MinusMinInt64 = -static_cast<uint64_t>(MinInt64); in TEST()
215 EXPECT_EQ(std::to_string(MinInt64), itostr(MinInt64)); in TEST()
/external/starlark-go/starlark/
Dint.go136 return math.MinInt64, big.Above
156 minint64 = new(big.Int).SetInt64(math.MinInt64)
427 if math.MinInt64 <= f && f <= math.MaxInt64 {
Deval_test.go467 {starlark.MakeInt64(math.MinInt64).Sub(one), "error", "error"},
468 {starlark.MakeInt64(math.MinInt64), "-9223372036854775808", "error"},
/external/llvm-project/llvm/unittests/Analysis/
DScalarEvolutionTest.cpp882 auto *MinInt64 = in TEST_F() local
890 auto *Add = BinaryOperator::CreateAdd(AShr, MinInt64, "", Br); in TEST_F()
891 Phi->addIncoming(MinInt64, EntryBB); in TEST_F()
/external/llvm-project/llvm/lib/FileCheck/
DFileCheck.cpp254 int64_t MinInt64 = std::numeric_limits<int64_t>::min(); in operator -() local
257 if (AbsoluteDifference > static_cast<uint64_t>(-(MinInt64 - Result))) in operator -()