Searched refs:global_mode (Results 1 - 1 of 1) sorted by relevance

/macosx-10.9.5/libauto-185.5/
H A Dauto_zone.cpp209 static inline bool _increment_pending_count(Zone *azone, auto_zone_options_t global_mode, bool coalesce_requested) { argument
212 if (global_mode < AUTO_ZONE_COLLECT_GLOBAL_MODE_COUNT) {
213 if (!coalesce_requested || azone->_pending_collections[global_mode] == 0) {
215 if (azone->_pending_collections[global_mode] == UINT8_MAX) {
219 azone->_pending_collections[global_mode]++;
227 static inline void _decrement_pending_count(Zone *azone, auto_zone_options_t global_mode) { argument
229 assert(global_mode < AUTO_ZONE_COLLECT_GLOBAL_MODE_COUNT);
230 assert(azone->_pending_collections[global_mode] > 0);
231 azone->_pending_collections[global_mode]--;
301 auto_zone_options_t global_mode local
[all...]

Completed in 171 milliseconds