Home
last modified time | relevance | path

Searched defs:Max (Results 1 – 25 of 296) sorted by relevance

12345678910>>...12

/external/llvm-project/llvm/unittests/Support/
DCheckedArithmeticTest.cpp9 const int64_t Max = std::numeric_limits<int64_t>::max(); in TEST() local
18 const int16_t Max = std::numeric_limits<int16_t>::max(); in TEST() local
27 const int64_t Max = std::numeric_limits<int64_t>::max(); in TEST() local
36 const int64_t Max = std::numeric_limits<int64_t>::max(); in TEST() local
45 const int16_t Max = std::numeric_limits<int16_t>::max(); in TEST() local
54 const int16_t Max = std::numeric_limits<int16_t>::max(); in TEST() local
63 const uint64_t Max = std::numeric_limits<uint64_t>::max(); in TEST() local
70 const uint64_t Max = std::numeric_limits<uint64_t>::max(); in TEST() local
77 const uint64_t Max = std::numeric_limits<uint64_t>::max(); in TEST() local
DKnownBitsTest.h23 unsigned Max = 1 << Bits; in ForeachKnownBits() local
40 unsigned Max = 1 << Bits; in ForeachNumInKnownBits() local
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
DMax.java40 public class Max extends AbstractStorelessUnivariateStatistic implements Serializable { class
54 public Max() { in Max() method in Max
65 public Max(Max original) { in Max() method in Max
/external/skia/src/core/
DSkMiniRecorder.h49 struct Max { static const size_t val = A > B ? A : B; }; struct
/external/skqp/src/core/
DSkMiniRecorder.h48 struct Max { static const size_t val = A > B ? A : B; }; struct
/external/webrtc/rtc_base/numerics/
Dsample_stats.cc14 double SampleStats<double>::Max() { in Max() function in webrtc::SampleStats
72 TimeDelta SampleStats<TimeDelta>::Max() { in Max() function in webrtc::SampleStats
120 DataRate SampleStats<DataRate>::Max() { in Max() function in webrtc::SampleStats
Dmoving_max_counter.h86 absl::optional<T> MovingMaxCounter<T>::Max(int64_t current_time_ms) { in Max() function
Dsample_counter.cc57 absl::optional<int> SampleCounter::Max() const { in Max() function in rtc::SampleCounter
/external/llvm-project/clang-tools-extra/clangd/benchmarks/CompletionModel/
DDecisionForestBenchmark.cpp27 auto RandInt = [&](int Max) { return rand() % Max; }; in generateRandomDataset()
28 auto RandFloat = [&](float Max = 1.0) { in generateRandomDataset()
/external/angle/third_party/vulkan_memory_allocator/tools/VmaDumpVis/
DSample.json8 "AllocationSize": {"Min": 60, "Avg": 2015531, "Max": 7995760}, number
9 "UnusedRangeSize": {"Min": 64708, "Avg": 19682247, "Max": 33554432} number
20 "AllocationSize": {"Min": 60, "Avg": 2015531, "Max": 7995760}, number
21 "UnusedRangeSize": {"Min": 64708, "Avg": 12746154, "Max": 25427600} number
31 "AllocationSize": {"Min": 60, "Avg": 2015531, "Max": 7995760}, number
32 "UnusedRangeSize": {"Min": 64708, "Avg": 12746154, "Max": 25427600} number
/external/libavc/encoder/
Dirc_cbr_buffer_control.h44 #define CLIP(Number,Max,Min) if((Number) > (Max)) (Number) = (Max); \ argument
/external/libhevc/encoder/
Dcbr_buffer_control.h43 #define CLIP(Number, Max, Min) \ argument
/external/oboe/samples/RhythmGame/third_party/glm/gtx/
Dcomponent_wise.inl19 floatType const Max = static_cast<floatType>(std::numeric_limits<T>::max()); local
51 …floatType const Max = static_cast<floatType>(std::numeric_limits<T>::max()) + static_cast<floatTyp… local
/external/tensorflow/tensorflow/core/grappler/costs/
Dutils.h92 uint64 Max() const { return max_; } in Max() function
/external/pdfium/xfa/fwl/
Dcfwl_eventscroll.h17 Max, enumerator
/external/webrtc/tools_webrtc/cpu/
Dcpu_mon.py36 def Max(self): member in CpuSnapshot
/external/clang/include/clang/Frontend/
DVerifyDiagnosticConsumer.h161 unsigned Min, Max; variable
175 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max) in Directive()
/external/llvm-project/llvm/tools/llvm-pdbutil/
DBytesOutputStyle.cpp92 uint32_t Max = R.Max.getValueOr(R.Min); in dump() local
109 uint32_t Max = R.Max.getValueOr(File.getFileSize()); in dump() local
207 void BytesOutputStyle::dumpBlockRanges(uint32_t Min, uint32_t Max) { in dumpBlockRanges()
430 void BytesOutputStyle::dumpByteRanges(uint32_t Min, uint32_t Max) { in dumpByteRanges()
/external/llvm-project/clang/include/clang/Frontend/
DVerifyDiagnosticConsumer.h205 unsigned Min, Max; variable
223 unsigned Min, unsigned Max) in Directive()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantRange.cpp649 APInt Max = APInt::getMaxValue(BW).zextOrSelf(ResultBitWidth); in castOp() local
1384 APInt Min = getSignedMin(), Max = getSignedMax(); in sshl_sat() local
1435 APInt Min = getUnsignedMin(), Max = getUnsignedMax(); in unsignedAddMayOverflow() local
1451 APInt Min = getSignedMin(), Max = getSignedMax(); in signedAddMayOverflow() local
1481 APInt Min = getUnsignedMin(), Max = getUnsignedMax(); in unsignedSubMayOverflow() local
1497 APInt Min = getSignedMin(), Max = getSignedMax(); in signedSubMayOverflow() local
1527 APInt Min = getUnsignedMin(), Max = getUnsignedMax(); in unsignedMulMayOverflow() local
/external/llvm-project/compiler-rt/lib/fuzzer/
DFuzzerDefs.h27 template <class T> T Max(T a, T b) { return a > b ? a : b; } in Max() function
/external/llvm-project/llvm/unittests/ADT/
DPointerEmbeddedIntTest.cpp73 Max = std::numeric_limits<uintptr_t>::max() >> 1; in TEST() local
/external/llvm/unittests/ADT/
DPointerEmbeddedIntTest.cpp74 Max = std::numeric_limits<uintptr_t>::max() >> 1; in TEST() local
/external/rust/crates/libfuzzer-sys/libfuzzer/
DFuzzerDefs.h27 template <class T> T Max(T a, T b) { return a > b ? a : b; } in Max() function
/external/llvm/unittests/Support/
DMathExtrasTest.cpp225 const T Max = std::numeric_limits<T>::max(); in SaturatingAddTestHelper() local
259 const T Max = std::numeric_limits<T>::max(); in SaturatingMultiplyTestHelper() local
339 const T Max = std::numeric_limits<T>::max(); in SaturatingMultiplyAddTestHelper() local

12345678910>>...12