Searched defs:QuarantineBatch (Results 1 – 2 of 2) sorted by relevance
18 struct QuarantineBatch { struct22 QuarantineBatch *Next; argument30 this->Size = Size + sizeof(QuarantineBatch); // Account for the Batch Size. in init() argument34 uptr getQuarantinedSize() const { return Size - sizeof(QuarantineBatch); } in getQuarantinedSize() argument42 bool canMerge(const QuarantineBatch *const From) const { in canMerge() argument46 void merge(QuarantineBatch *const From) { in merge() argument62 static_assert(sizeof(QuarantineBatch) <= (1U << 13), ""); // 8Kb. argument
27 struct QuarantineBatch { struct29 QuarantineBatch *next; argument37 this->size = size + sizeof(QuarantineBatch); // Account for the batch size. in init() argument42 return size - sizeof(QuarantineBatch); in quarantined_size() argument51 bool can_merge(const QuarantineBatch* const from) const { in can_merge() argument55 void merge(QuarantineBatch* const from) { in merge() argument