Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDictionary.h24 static const size_t kMaxSize = kMaxSizeT;
31 assert(S <= kMaxSize); in Set()
36 bool operator==(const FixedWord<kMaxSize> &w) const {
40 static size_t GetMaxSize() { return kMaxSize; } in GetMaxSize()
46 uint8_t Data[kMaxSize];
H A DFuzzerTracePC.cpp354 uint8_t B1[Word::kMaxSize]; in AddValueForMemcmp()
355 uint8_t B2[Word::kMaxSize]; in AddValueForMemcmp()
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_ignoreset.cpp16 const uptr IgnoreSet::kMaxSize; member in __tsan::IgnoreSet
23 if (size_ == kMaxSize) in Add()
34 CHECK_LE(size_, kMaxSize); in At()
H A Dtsan_ignoreset.h29 static constexpr uptr kMaxSize = 16;
31 StackID stacks_[kMaxSize];
H A Dtsan_mutexset.cpp34 if (size_ == kMaxSize) { in AddAddr()
41 CHECK_EQ(size_, kMaxSize - 1); in AddAddr()
H A Dtsan_mutexset.h24 static constexpr uptr kMaxSize = 16;
51 Desc descs_[kMaxSize];
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_size_class_map.h134 static const uptr kMaxSize = 1UL << kMaxSizeLog; variable
159 if (UNLIKELY(size > kMaxSize)) in ClassID()
171 DCHECK_LE(size, kMaxSize); in MaxCachedHint()
218 CHECK_EQ(ClassID(kMaxSize + 1), 0); in Validate()
220 for (uptr s = 1; s <= kMaxSize; s++) { in Validate()
H A Dsanitizer_allocator_primary64.h130 CHECK(IsAligned(kSpaceBeg, SizeClassMap::kMaxSize));
140 TotalSpaceSize, SizeClassMap::kMaxSize, PrimaryAllocatorName);
170 return size <= SizeClassMap::kMaxSize && in CanAllocate()
171 alignment <= SizeClassMap::kMaxSize; in CanAllocate()
639 static_assert(kRegionSize >= SizeClassMap::kMaxSize,
H A Dsanitizer_allocator_primary32.h152 return size <= SizeClassMap::kMaxSize && in CanAllocate()
153 alignment <= SizeClassMap::kMaxSize; in CanAllocate()
H A Dsanitizer_symbolizer_posix_libcdep.cpp
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp490 if (needed_size > SizeClassMap::kMaxSize) in Allocate()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp638 if (needed_size > SizeClassMap::kMaxSize) in Allocate()