Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/fuzzer/
H A DFuzzerDefs.h170 class fuzzer_allocator: public std::allocator<T> {
172 fuzzer_allocator() = default;
175 fuzzer_allocator(const fuzzer_allocator<U>&) {} in fuzzer_allocator() function
178 struct rebind { typedef fuzzer_allocator<Other> other; };
182 using Vector = std::vector<T, fuzzer_allocator<T>>;
185 using Set = std::set<T, std::less<T>, fuzzer_allocator<T>>;