Home
last modified time | relevance | path

Searched defs:QuarantineBatch (Results 1 – 2 of 2) sorted by relevance

/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dquarantine.h18 struct QuarantineBatch { struct
22 QuarantineBatch *Next; argument
30 this->Size = Size + sizeof(QuarantineBatch); // Account for the Batch Size. in init() argument
34 uptr getQuarantinedSize() const { return Size - sizeof(QuarantineBatch); } in getQuarantinedSize() argument
42 bool canMerge(const QuarantineBatch *const From) const { in canMerge() argument
46 void merge(QuarantineBatch *const From) { in merge() argument
62 static_assert(sizeof(QuarantineBatch) <= (1U << 13), ""); // 8Kb. argument
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h27 struct QuarantineBatch { struct
29 QuarantineBatch *next; argument
37 this->size = size + sizeof(QuarantineBatch); // Account for the batch size. in init() argument
42 return size - sizeof(QuarantineBatch); in quarantined_size() argument
51 bool can_merge(const QuarantineBatch* const from) const { in can_merge() argument
55 void merge(QuarantineBatch* const from) { in merge() argument