Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DAllocator.h134 size_t SizeThreshold = SlabSize>
137 BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold>> {
139 static_assert(SizeThreshold <= SlabSize,
233 if (PaddedSize > SizeThreshold) { in Allocate()
415 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold>
418 SizeThreshold> &Allocator) { in new()
432 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold>
434 void *, llvm::BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold> &) { in delete() argument
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DAllocator.h137 size_t SizeThreshold = SlabSize>
140 BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold>> {
142 static_assert(SizeThreshold <= SlabSize,
236 if (PaddedSize > SizeThreshold) { in Allocate()
418 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold>
421 SizeThreshold> &Allocator) { in new()
435 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold>
437 void *, llvm::BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold> &) { in delete() argument
/external/llvm-project/llvm/include/llvm/Support/
DAllocator.h66 size_t SizeThreshold = SlabSize, size_t GrowthDelay = 128>
69 SizeThreshold, GrowthDelay>> {
71 static_assert(SizeThreshold <= SlabSize,
172 if (PaddedSize > SizeThreshold) { in Allocate()
432 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold,
436 llvm::BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold, in new() argument
442 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold,
446 SizeThreshold, GrowthDelay> &) { in delete() argument
/external/llvm-project/clang/test/Modules/Inputs/PR28794/Subdir/
DLibBHeader.h6 template <typename T, size_t SlabSize, size_t SizeThreshold>
7 void *operator new(size_t, BumpPtrAllocatorImpl<T, SlabSize, SizeThreshold> &) { in new() argument
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DAllocator.h140 size_t SizeThreshold = SlabSize>
143 BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold>> {
145 static_assert(SizeThreshold <= SlabSize,
243 if (PaddedSize > SizeThreshold) { in Allocate()
501 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold>
504 SizeThreshold> &Allocator) { in new()
518 template <typename AllocatorT, size_t SlabSize, size_t SizeThreshold>
520 void *, llvm::BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold> &) { in delete() argument
/external/llvm-project/clang/test/Modules/Inputs/PR28794/
DLibAHeader.h9 template <typename T, size_t SlabSize, size_t SizeThreshold>
10 void * operator new(size_t, BumpPtrAllocatorImpl<T, SlabSize, SizeThreshold> &);
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DSuspiciousMissingCommaCheck.cpp75 SizeThreshold(Options.get("SizeThreshold", 5U)), in SuspiciousMissingCommaCheck()
81 Options.store(Opts, "SizeThreshold", SizeThreshold); in storeOptions()
106 if (Size < SizeThreshold) in check()
DSuspiciousMissingCommaCheck.h32 const unsigned SizeThreshold;
/external/llvm-project/openmp/libomptarget/src/
DMemoryManager.cpp42 size_t SizeThreshold = 1U << 13; variable
91 SizeThreshold = Threshold; in MemoryManagerTy()
170 if (Size > SizeThreshold) { in allocate()
173 Size, SizeThreshold); in allocate()
/external/llvm-project/lldb/source/Utility/
DConstString.cpp34 static const size_t SizeThreshold = AllocatorSlabSize; member in Pool
59 SizeThreshold, AllocatorGrowthDelay>
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dbugprone-suspicious-missing-comma.rst46 .. option:: SizeThreshold
/external/llvm-project/llvm/tools/llvm-pdbutil/
Dllvm-pdbutil.h101 extern llvm::cl::opt<uint32_t> SizeThreshold;
DLinePrinter.cpp273 if (Size < opts::pretty::SizeThreshold) in IsTypeExcluded()
Dllvm-pdbutil.cpp335 cl::opt<uint32_t> SizeThreshold( variable