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

/macosx-10.10.1/libauto-186/
H A DSubzone.h130 refcount_bit = 0x1 << refcount_log2, // if global_bit == 1 else garbage_bit == 1. holds inline refcount enumerator in enum:Auto::Subzone::__anon9167
518 data &= ~(refcount_bit | age_mask);
551 inline bool has_refcount(usword_t q) const { return !is_live_thread_local(q) && (_side_data[q] & refcount_bit) != 0; }
552 inline void set_has_refcount(usword_t q) { ASSERTION(!is_live_thread_local(q)); _side_data[q] |= refcount_bit; }
553 inline void clear_has_refcount(usword_t q) { ASSERTION(!is_live_thread_local(q)); _side_data[q] &= ~refcount_bit; }
701 | (refcount_is_one ? refcount_bit : 0);

Completed in 60 milliseconds