Home
last modified time | relevance | path

Searched refs:MaxValue (Results 1 – 25 of 53) sorted by relevance

123

/third_party/boost/boost/
Dinteger.hpp171 template< boost::long_long_type MaxValue > // maximum value to require support
173 template< long MaxValue > // maximum value to require support
180 (MaxValue <= ::boost::integer_traits<boost::long_long_type>::const_max) +
184 (MaxValue <= ::boost::integer_traits<long>::const_max) +
185 (MaxValue <= ::boost::integer_traits<int>::const_max) +
186 (MaxValue <= ::boost::integer_traits<short>::const_max) +
187 (MaxValue <= ::boost::integer_traits<signed char>::const_max)
216 template< boost::ulong_long_type MaxValue > // minimum value to require support
218 template< unsigned long MaxValue > // minimum value to require support
227 (MaxValue <= ::boost::integer_traits<unsigned long>::const_max) +
[all …]
Dinteger_fwd.hpp107 template< boost::long_long_type MaxValue > // maximum value to require support
109 template< long MaxValue > // maximum value to require support
121 template< boost::ulong_long_type MaxValue > // maximum value to require support
123 template< unsigned long MaxValue > // maximum value to require support
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DSampleMessages.cs74 SingleUint32 = UInt32.MaxValue, in CreateFullTestAllTypes()
75 SingleUint64 = UInt64.MaxValue, in CreateFullTestAllTypes()
79 RepeatedFixed32 = { UInt32.MaxValue, 23 }, in CreateFullTestAllTypes()
80 RepeatedFixed64 = { UInt64.MaxValue, 1234567890123 }, in CreateFullTestAllTypes()
87 RepeatedInt64 = { 3210987654321, Int64.MaxValue }, in CreateFullTestAllTypes()
96 RepeatedUint32 = { UInt32.MaxValue, UInt32.MinValue }, in CreateFullTestAllTypes()
97 RepeatedUint64 = { UInt64.MaxValue, UInt32.MinValue }, in CreateFullTestAllTypes()
126 OptionalUint32 = UInt32.MaxValue, in CreateFullTestAllTypesProto2()
127 OptionalUint64 = UInt64.MaxValue, in CreateFullTestAllTypesProto2()
132 RepeatedFixed32 = { UInt32.MaxValue, 23 }, in CreateFullTestAllTypesProto2()
[all …]
DGeneratedMessageTest.cs165 SingleUint32 = uint.MaxValue, in RoundTrip_SingleValues()
166 SingleUint64 = ulong.MaxValue in RoundTrip_SingleValues()
182 RepeatedFixed32 = { uint.MaxValue, 23 }, in RoundTrip_RepeatedValues()
183 RepeatedFixed64 = { ulong.MaxValue, 1234567890123 }, in RoundTrip_RepeatedValues()
190 RepeatedInt64 = { 3210987654321, long.MaxValue }, in RoundTrip_RepeatedValues()
199 RepeatedUint32 = { uint.MaxValue, uint.MinValue }, in RoundTrip_RepeatedValues()
200 RepeatedUint64 = { ulong.MaxValue, uint.MinValue } in RoundTrip_RepeatedValues()
504 SingleUint32 = uint.MaxValue, in CloneSingleNonMessageValues()
505 SingleUint64 = ulong.MaxValue in CloneSingleNonMessageValues()
523 RepeatedFixed32 = { uint.MaxValue, 23 }, in CloneRepeatedNonMessageValues()
[all …]
DJsonParserTest.cs187 Int32Field = { int.MaxValue, int.MinValue, 0 }, in RepeatedWrappers()
188 Int64Field = { long.MaxValue, long.MinValue, 0L }, in RepeatedWrappers()
190 Uint32Field = { uint.MaxValue, uint.MinValue, 0U }, in RepeatedWrappers()
191 Uint64Field = { ulong.MaxValue, ulong.MinValue, 0UL }, in RepeatedWrappers()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DSampleMessages.cs71 SingleUint32 = UInt32.MaxValue, in CreateFullTestAllTypes()
72 SingleUint64 = UInt64.MaxValue, in CreateFullTestAllTypes()
76 RepeatedFixed32 = { UInt32.MaxValue, 23 }, in CreateFullTestAllTypes()
77 RepeatedFixed64 = { UInt64.MaxValue, 1234567890123 }, in CreateFullTestAllTypes()
84 RepeatedInt64 = { 3210987654321, Int64.MaxValue }, in CreateFullTestAllTypes()
93 RepeatedUint32 = { UInt32.MaxValue, UInt32.MinValue }, in CreateFullTestAllTypes()
94 RepeatedUint64 = { UInt64.MaxValue, UInt32.MinValue }, in CreateFullTestAllTypes()
DGeneratedMessageTest.cs162 SingleUint32 = uint.MaxValue, in RoundTrip_SingleValues()
163 SingleUint64 = ulong.MaxValue in RoundTrip_SingleValues()
179 RepeatedFixed32 = { uint.MaxValue, 23 }, in RoundTrip_RepeatedValues()
180 RepeatedFixed64 = { ulong.MaxValue, 1234567890123 }, in RoundTrip_RepeatedValues()
187 RepeatedInt64 = { 3210987654321, long.MaxValue }, in RoundTrip_RepeatedValues()
196 RepeatedUint32 = { uint.MaxValue, uint.MinValue }, in RoundTrip_RepeatedValues()
197 RepeatedUint64 = { ulong.MaxValue, uint.MinValue } in RoundTrip_RepeatedValues()
458 SingleUint32 = uint.MaxValue, in CloneSingleNonMessageValues()
459 SingleUint64 = ulong.MaxValue in CloneSingleNonMessageValues()
477 RepeatedFixed32 = { uint.MaxValue, 23 }, in CloneRepeatedNonMessageValues()
[all …]
DJsonParserTest.cs185 Int32Field = { int.MaxValue, int.MinValue, 0 }, in RepeatedWrappers()
186 Int64Field = { long.MaxValue, long.MinValue, 0L }, in RepeatedWrappers()
188 Uint32Field = { uint.MaxValue, uint.MinValue, 0U }, in RepeatedWrappers()
189 Uint64Field = { ulong.MaxValue, ulong.MinValue, 0UL }, in RepeatedWrappers()
/third_party/grpc/src/csharp/Grpc.Core/Internal/
DTimespec.cs100 return new Timespec(long.MaxValue, 0, ClockType.Realtime);
176 return DateTime.MaxValue; in ToDateTime()
195 return tv_sec > 0 ? DateTime.MaxValue : DateTime.MinValue; in ToDateTime()
200 return tv_sec > 0 ? DateTime.MaxValue : DateTime.MinValue; in ToDateTime()
214 if (dateTime == DateTime.MaxValue) in FromDateTime()
DCallOptionsExtensions.cs53 newOptions = newOptions.WithDeadline(newOptions.Deadline ?? DateTime.MaxValue); in Normalize()
/third_party/grpc/src/csharp/Grpc.Core.Tests/Internal/
DTimespecTest.cs86 Assert.AreEqual(DateTime.MaxValue, Timespec.InfFuture.ToDateTime()); in ToDateTime()
112 var timespec = new Timespec(long.MaxValue - 100, 0); in ToDateTime_Overflow()
114 Assert.AreEqual(DateTime.MaxValue, timespec.ToDateTime()); in ToDateTime_Overflow()
128 Assert.AreEqual(DateTime.MaxValue, timespec.ToDateTime()); in ToDateTime_OutOfDateTimeRange()
150 Assert.AreEqual(Timespec.InfFuture, Timespec.FromDateTime(DateTime.MaxValue)); in FromDateTime()
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DCustomOptionsTest.cs181 …AssertOption(int.MaxValue, customOptions.TryGetInt32, Int32Opt, d.GetOption, d.GetOptions().GetExt… in MaxValues()
182 …AssertOption(long.MaxValue, customOptions.TryGetInt64, Int64Opt, d.GetOption, d.GetOptions().GetEx… in MaxValues()
183 …AssertOption(uint.MaxValue, customOptions.TryGetUInt32, Uint32Opt, d.GetOption, d.GetOptions().Get… in MaxValues()
184 …AssertOption(ulong.MaxValue, customOptions.TryGetUInt64, Uint64Opt, d.GetOption, d.GetOptions().Ge… in MaxValues()
185 …AssertOption(int.MaxValue, customOptions.TryGetSInt32, Sint32Opt, d.GetOption, d.GetOptions().GetE… in MaxValues()
186 …AssertOption(long.MaxValue, customOptions.TryGetSInt64, Sint64Opt, d.GetOption, d.GetOptions().Get… in MaxValues()
187 …AssertOption(uint.MaxValue, customOptions.TryGetFixed32, Fixed32Opt, d.GetOption, d.GetOptions().G… in MaxValues()
188 …AssertOption(ulong.MaxValue, customOptions.TryGetFixed64, Fixed64Opt, d.GetOption, d.GetOptions().… in MaxValues()
189 …AssertOption(int.MaxValue, customOptions.TryGetSFixed32, Sfixed32Opt, d.GetOption, d.GetOptions().… in MaxValues()
190 …AssertOption(long.MaxValue, customOptions.TryGetSFixed64, Sfixed64Opt, d.GetOption, d.GetOptions()… in MaxValues()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceSwitchLowering.cpp64 const uint64_t MaxValue = CaseClusters.back().High; in clusterizeSwitch() local
67 const uint64_t Range = MaxValue - MinValue; in clusterizeSwitch()
91 CaseClusters.emplace_back(MinValue, MaxValue, JumpTable); in clusterizeSwitch()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/WellKnownTypes/
DWrappersTest.cs137 Int32Field = { int.MaxValue, int.MinValue, 0 }, in RepeatedWrappersSerializeDeserialize()
138 Int64Field = { long.MaxValue, long.MinValue, 0L }, in RepeatedWrappersSerializeDeserialize()
140 Uint32Field = { uint.MaxValue, uint.MinValue, 0U }, in RepeatedWrappersSerializeDeserialize()
141 Uint64Field = { ulong.MaxValue, ulong.MinValue, 0UL }, in RepeatedWrappersSerializeDeserialize()
190 Int32Field = { { 5, int.MaxValue }, { 6, int.MinValue }, { 7, 0 } }, in MapWrappersSerializeDeserialize()
191 Int64Field = { { 8, long.MaxValue }, { 9, long.MinValue }, { 10, 0L } }, in MapWrappersSerializeDeserialize()
193 Uint32Field = { { 15, uint.MaxValue }, { 16, uint.MinValue }, { 17, 0U } }, in MapWrappersSerializeDeserialize()
194 Uint64Field = { { 18, ulong.MaxValue }, { 19, ulong.MinValue }, { 20, 0UL } }, in MapWrappersSerializeDeserialize()
DTimestampTest.cs44 DateTime utcMax = DateTime.SpecifyKind(DateTime.MaxValue, DateTimeKind.Utc); in FromAndToDateTime()
/third_party/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
DWrappersTest.cs141 Int32Field = { int.MaxValue, int.MinValue, 0 }, in RepeatedWrappersSerializeDeserialize()
142 Int64Field = { long.MaxValue, long.MinValue, 0L }, in RepeatedWrappersSerializeDeserialize()
144 Uint32Field = { uint.MaxValue, uint.MinValue, 0U }, in RepeatedWrappersSerializeDeserialize()
145 Uint64Field = { ulong.MaxValue, ulong.MinValue, 0UL }, in RepeatedWrappersSerializeDeserialize()
197 Int32Field = { { 5, int.MaxValue }, { 6, int.MinValue }, { 7, 0 } }, in MapWrappersSerializeDeserialize()
198 Int64Field = { { 8, long.MaxValue }, { 9, long.MinValue }, { 10, 0L } }, in MapWrappersSerializeDeserialize()
200 Uint32Field = { { 15, uint.MaxValue }, { 16, uint.MinValue }, { 17, 0U } }, in MapWrappersSerializeDeserialize()
201 Uint64Field = { { 18, ulong.MaxValue }, { 19, ulong.MinValue }, { 20, 0UL } }, in MapWrappersSerializeDeserialize()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DMemoryLocation.h68 MaxValue = (MapTombstone - 1) & ~ImpreciseBit, enumerator
88 : Value(Raw > MaxValue ? Unknown : Raw) {} in LocationSize()
96 if (LLVM_UNLIKELY(Value > MaxValue)) in upperBound()
/third_party/grpc/src/csharp/Grpc.Core.Tests/
DTimeoutsTest.cs62 Assert.AreEqual(DateTime.MaxValue, context.Deadline); in InfiniteDeadline()
70 …ls.BlockingUnaryCall(helper.CreateUnaryCall(new CallOptions(deadline: DateTime.MaxValue)), "abc")); in InfiniteDeadline()
DCallOptionsTest.cs72 Assert.AreEqual(DateTime.MaxValue, new CallOptions().Normalize().Deadline.Value); in Normalize()
/third_party/grpc/src/csharp/Grpc.Core/Logging/
DLogLevel.cs46 Off = int.MaxValue
/third_party/boost/libs/optional/doc/
D00_optional.qbk57MaxValue"`. It is possible that this parameter is not specified; such situation is no error. It is…
69 if (boost::optional<int> oi = getConfigParam("MaxValue")) // did I get a real int?
/third_party/protobuf/csharp/src/Google.Protobuf/
DParseContext.cs56 internal const int DefaultSizeLimit = Int32.MaxValue;
98 ctx.state.currentLimit = int.MaxValue; in Initialize()
DCodedInputStream.cs84 internal const int DefaultSizeLimit = Int32.MaxValue;
150 this.state.currentLimit = int.MaxValue; in CodedInputStream()
/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/
DParseRawPrimitivesBenchmark.cs446 … ulong bitmask = encodedSize < 10 ? ((1UL << (encodedSize * bitsPerByte)) - 1) : ulong.MaxValue; in RandomUnsignedVarint()
452 result &= uint.MaxValue; in RandomUnsignedVarint()
458 result |= ulong.MaxValue; in RandomUnsignedVarint()
/third_party/grpc/src/csharp/Grpc.Examples/
DMathServiceImpl.cs38 var limit = request.Limit > 0 ? request.Limit : long.MaxValue; in Fib()

123