Home
last modified time | relevance | path

Searched refs:num_to_reclaim (Results 1 – 1 of 1) sorted by relevance

/xnu-11417.140.69/osfmk/vm/
H A Dvm_reclaim.c903 uint64_t head = 0, tail = 0, busy = 0, num_to_reclaim = 0, new_tail = 0; local
973 num_to_reclaim = tail - head;
975 num_to_reclaim = MIN(num_to_reclaim, chunk_size);
976 if (num_to_reclaim == 0) {
979 busy = head + num_to_reclaim;
1012 num_to_reclaim = tail - head;
1013 if (num_to_reclaim == 0) {
1027 "busy=%llu tail=%llu len=%u", metadata->vdrm_pid, num_to_reclaim,
1031 while (num_copied < num_to_reclaim) {
1032 uint64_t memcpy_end_idx = memcpy_start_idx + num_to_reclaim - num_copied;
[all …]