Lines Matching defs:isolation_threshold
55 // The |isolation_threshold| must be less than or equal to
58 BlockAllocator(size_t block_size, size_t isolation_threshold)
62 isolation_threshold(std::min(block_size, isolation_threshold)) {
63 assert(isolation_threshold <= block_size);
72 isolation_threshold(other.isolation_threshold) {}
80 isolation_threshold = other.isolation_threshold;
111 if (size + sizeof(size_t) >= isolation_threshold) {
175 // if allocation greater or equal to isolation_threshold bytes is
177 size_t isolation_threshold;