OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:QuarantineBatch
(Results
1 - 2
of
2
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_quarantine.h
28
struct
QuarantineBatch
{
30
QuarantineBatch
*next;
38
this->size = size + sizeof(
QuarantineBatch
); // Account for the batch size.
43
return size - sizeof(
QuarantineBatch
);
52
bool can_merge(const
QuarantineBatch
* const from) const {
56
void merge(
QuarantineBatch
* const from) {
58
CHECK_GE(size, sizeof(
QuarantineBatch
));
66
from->size = sizeof(
QuarantineBatch
);
70
COMPILER_CHECK(sizeof(
QuarantineBatch
) <= (1 << 13)); // 8Kb.
185
while (
QuarantineBatch
*b = c->DequeueBatch())
[
all
...]
sanitizer_quarantine.h
28
struct
QuarantineBatch
{
30
QuarantineBatch
*next;
38
this->size = size + sizeof(
QuarantineBatch
); // Account for the batch size.
43
return size - sizeof(
QuarantineBatch
);
52
bool can_merge(const
QuarantineBatch
* const from) const {
56
void merge(
QuarantineBatch
* const from) {
58
CHECK_GE(size, sizeof(
QuarantineBatch
));
66
from->size = sizeof(
QuarantineBatch
);
70
COMPILER_CHECK(sizeof(
QuarantineBatch
) <= (1 << 13)); // 8Kb.
185
while (
QuarantineBatch
*b = c->DequeueBatch())
[
all
...]
Completed in 138 milliseconds
Indexes created Tue Sep 30 17:09:57 GMT 2025