Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDefs.h44 class fuzzer_allocator: public std::allocator<T> {
46 fuzzer_allocator() = default;
49 fuzzer_allocator(const fuzzer_allocator<U>&) {} in fuzzer_allocator() function
52 struct rebind { typedef fuzzer_allocator<Other> other; };
56 using Vector = std::vector<T, fuzzer_allocator<T>>;
59 using Set = std::set<T, std::less<T>, fuzzer_allocator<T>>;