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

/xnu-2422.115.4/bsd/kern/
H A Dkern_memorystatus.c554 proc_t next_p; local
561 next_p = TAILQ_FIRST(&current_bucket->list);
562 if (!next_p && search) {
563 while (!next_p && (++(*bucket_index) < MEMSTAT_BUCKET_COUNT)) {
565 next_p = TAILQ_FIRST(&current_bucket->list);
569 return next_p;
574 proc_t next_p; local
580 next_p = TAILQ_NEXT(p, p_memstat_list);
581 while (!next_p && search && (++(*bucket_index) < MEMSTAT_BUCKET_COUNT)) {
583 next_p
1689 proc_t p, next_p; local
1807 proc_t p = PROC_NULL, next_p = PROC_NULL; local
1957 proc_t p = PROC_NULL, next_p = PROC_NULL; local
2170 proc_t p = PROC_NULL, next_p = PROC_NULL; local
[all...]
/xnu-2422.115.4/osfmk/vm/
H A Dvm_object.c1110 vm_page_t p, next_p; local
1116 next_p = (vm_page_t)queue_first(&object->memq);
1119 while (!queue_end(&object->memq, (queue_entry_t)next_p) && --p_limit > 0) {
1121 p = next_p;
1122 next_p = (vm_page_t)queue_next(&next_p->listq);
1254 vm_page_t next_p; local
1347 next_p = (vm_page_t)queue_first(&object->memq);
1361 while (!queue_end(&object->memq, (queue_entry_t)next_p) && object->vo_cache_pages_to_scan && ep_count < ep_limit) {
1363 p = next_p;
[all...]

Completed in 31 milliseconds