Home
last modified time | relevance | path

Searched refs:SizeThreshold (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DAllocator.h62 size_t SizeThreshold = SlabSize, size_t GrowthDelay = 128>
65 SizeThreshold, GrowthDelay>>,
70 static_assert(SizeThreshold <= SlabSize,
178 if (PaddedSize > SizeThreshold) { in Allocate()
437 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold,
441 llvm::BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold, in new() argument
447 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold,
451 SizeThreshold, GrowthDelay> &) { in delete() argument
/llvm-project-15.0.7/clang/test/Modules/Inputs/PR28794/Subdir/
H A DLibBHeader.h6 template <typename T, size_t SlabSize, size_t SizeThreshold>
7 void *operator new(size_t, BumpPtrAllocatorImpl<T, SlabSize, SizeThreshold> &) { in new() argument
/llvm-project-15.0.7/clang/test/Modules/Inputs/PR28794/
H A DLibAHeader.h9 template <typename T, size_t SlabSize, size_t SizeThreshold>
10 void * operator new(size_t, BumpPtrAllocatorImpl<T, SlabSize, SizeThreshold> &);
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DSuspiciousMissingCommaCheck.cpp75 SizeThreshold(Options.get("SizeThreshold", 5U)), in SuspiciousMissingCommaCheck()
81 Options.store(Opts, "SizeThreshold", SizeThreshold); in storeOptions()
106 if (Size < SizeThreshold) in check()
H A DSuspiciousMissingCommaCheck.h32 const unsigned SizeThreshold;
/llvm-project-15.0.7/openmp/libomptarget/plugins/common/MemoryManager/
H A DMemoryManager.h132 size_t SizeThreshold = 1U << 13; variable
200 SizeThreshold = Threshold; in FreeLists()
225 if (Size > SizeThreshold) { in allocate()
228 Size, SizeThreshold); in allocate()
/llvm-project-15.0.7/lldb/source/Utility/
H A DConstString.cpp34 static const size_t SizeThreshold = AllocatorSlabSize; member in Pool
59 SizeThreshold, AllocatorGrowthDelay>
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dsuspicious-missing-comma.rst46 .. option:: SizeThreshold
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/
H A DLinePrinter.h32 uint32_t SizeThreshold; member
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.h104 extern llvm::cl::opt<uint32_t> SizeThreshold;
H A Dllvm-pdbutil.cpp342 cl::opt<uint32_t> SizeThreshold( variable
1549 opts::Filters.SizeThreshold = opts::pretty::SizeThreshold; in main()
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DLinePrinter.cpp280 if (Size < Filters.SizeThreshold) in IsTypeExcluded()