Home
last modified time | relevance | path

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

123456

/llvm-project/llvm/unittests/Support/
H A 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
H A DKnownBitsTest.h23 unsigned Max = 1 << Bits; in ForeachKnownBits() local
38 unsigned Max = 1u << Bits; in ForeachNumInKnownBits() local
H A DInstructionCostTest.cpp80 auto Max = InstructionCost::getMax(); in TEST_F() local
H A DMathExtrasTest.cpp233 const T Max = std::numeric_limits<T>::max(); SaturatingAddTestHelper() local
303 const T Max = std::numeric_limits<T>::max(); SaturatingMultiplyTestHelper() local
383 const T Max = std::numeric_limits<T>::max(); SaturatingMultiplyAddTestHelper() local
[all...]
/llvm-project/clang-tools-extra/clangd/benchmarks/CompletionModel/
H A DDecisionForestBenchmark.cpp27 auto RandInt = [&](int Max) { return rand() % Max; }; in generateRandomDataset()
28 auto RandFloat = [&](float Max = 1.0) { in generateRandomDataset()
/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDefs.h27 template <class T> T Max(T a, T b) { return a > b ? a : b; } in Max() function
/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp87 APInt Max = getUnsignedMax(); toKnownBits() local
800 APInt Max = APInt::getMaxValue(BW); castOp() local
1253 APInt Max = getSignedMax(); smul_fast() local
1572 APInt Max = getUnsignedMax(); shl() local
1724 APInt Max = getSignedMax(); smul_sat() local
1747 APInt Min = getSignedMin(), Max = getSignedMax(); sshl_sat() local
1919 APInt Max = Upper - 1; getUnsignedPopCountRange() local
1961 APInt Min = getUnsignedMin(), Max = getUnsignedMax(); unsignedAddMayOverflow() local
1977 APInt Min = getSignedMin(), Max = getSignedMax(); signedAddMayOverflow() local
2007 APInt Min = getUnsignedMin(), Max = getUnsignedMax(); unsignedSubMayOverflow() local
2023 APInt Min = getSignedMin(), Max = getSignedMax(); signedSubMayOverflow() local
2053 APInt Min = getUnsignedMin(), Max = getUnsignedMax(); unsignedMulMayOverflow() local
[all...]
/llvm-project/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h57 unsigned Min, Max; variable
75 unsigned Min, unsigned Max) in Directive()
/llvm-project/llvm/unittests/ADT/
H A DPointerEmbeddedIntTest.cpp73 Max = std::numeric_limits<uintptr_t>::max() >> 1; in TEST() local
H A DDynamicAPIntTest.cpp153 TypeParam Max(std::numeric_limits<int64_t>::max()); in TYPED_TEST() local
/llvm-project/llvm/tools/llvm-pdbutil/
H A DBytesOutputStyle.cpp92 uint32_t Max = R.Max.value_or(R.Min); in dump() local
109 uint32_t Max = R.Max.value_or(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()
H A DMinimalTypeDumper.cpp311 auto Max = llvm::max_element(Indices); in visitKnownRecord() local
326 auto Max = llvm::max_element(Indices); in visitKnownRecord() local
496 auto Max = llvm::max_element(Indices); in visitKnownRecord() local
/llvm-project/bolt/lib/Passes/
H A DPettisAndHansen.cpp80 const double Max = std::max(std::max(C1headC2head, C1headC2tail), in orderFuncs() local
152 ClusterArc Max = *Maxpos; in pettisAndHansen() local
/llvm-project/libc/AOR_v20.02/math/
H A Dv_logf.c28 #define Max v_u32 (0x7f800000) macro
/llvm-project/llvm/include/llvm/FuzzMutate/
H A DRandom.h21 template <typename T, typename GenT> T uniform(GenT &Gen, T Min, T Max) { in uniform()
/llvm-project/llvm/lib/MCA/
H A DSupport.cpp89 double Max = static_cast<double>(NumMicroOps) / DispatchWidth; in computeBlockRThroughput() local
/llvm-project/llvm/unittests/IR/
H A DDemandedBitsTest.cpp21 unsigned Max = 1 << Bits; in TestBinOpExhaustive() local
/llvm-project/clang/lib/Sema/
H A DSemaHexagon.cpp271 int32_t Max = (1 << (A.IsSigned ? A.BitWidth - 1 : A.BitWidth)) - 1; in CheckHexagonBuiltinArgument() local
H A DSemaAMDGPU.cpp123 uint32_t Max = 0; checkAMDGPUFlatWorkGroupSizeArguments() local
184 uint32_t Max = 0; checkAMDGPUWavesPerEUArguments() local
/llvm-project/clang-tools-extra/clang-tidy/performance/
H A DEnumSizeCheck.cpp39 getNewType(std::size_t Size, std::uint64_t Min, std::uint64_t Max) noexcept { in getNewType()
/llvm-project/llvm/lib/Support/
H A DAPFixedPoint.cpp273 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue() mul() local
334 APSInt Max = APFixedPoint::getMax(CommonFXSema).getValue() div() local
371 APSInt Max = APFixedPoint::getMax(Sema).getValue().extOrTrunc(Wide); shl() local
[all...]
/llvm-project/clang-tools-extra/clang-tidy/bugprone/
H A DMacroRepeatedSideEffectsCheck.cpp81 unsigned Max = 0; in countArgumentExpansions() local
/llvm-project/clang/lib/Basic/
H A DDarwinSDKInfo.cpp41 VersionTuple Max = VersionTuple(0); in parseJSON() local
/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUAsmUtils.h36 unsigned Max; member
/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DLowerTypeTests.h64 uint64_t Max = 0; member

123456