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

/xnu-2782.1.97/bsd/net/
H A Dether_if_module.c240 u_int32_t new_count = ETHER_DESC_BLK_SIZE; local
247 new_count += desc_blk->n_count;
253 new_size = new_count * sizeof (struct en_desc) +
271 desc_blk->n_count = new_count;
/xnu-2782.1.97/bsd/miscfs/devfs/
H A Ddevfs_tree.c826 uint32_t new_count; local
835 new_count = remove_notify_count(dnp);
836 if (need_free && (new_count > log_count)) {
/xnu-2782.1.97/osfmk/kern/
H A Dzalloc.c204 uint32_t old_count, new_count; local
208 new_count = old_count = *count_p;
210 if (++new_count >= factor) {
212 new_count = 0;
217 } while (!OSCompareAndSwap(old_count, new_count, count_p));

Completed in 39 milliseconds