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

/xnu-2782.1.97/osfmk/vm/
H A Dvm_page.h840 struct vpl *lq; \
847 lq = &vm_page_local_q[mem->local_id].vpl_un.vpl; \
848 VPL_LOCK(&lq->vpl_lock); \
849 queue_remove(&lq->vpl_queue, \
853 lq->vpl_count--; \
855 lq->vpl_internal_count--; \
857 lq->vpl_external_count--; \
859 VPL_UNLOCK(&lq->vpl_lock); \
H A Dvm_resident.c484 struct vpl *lq; local
486 lq = &t_local_q[i].vpl_un.vpl;
487 VPL_LOCK_INIT(lq, &vm_page_lck_grp_local, &vm_page_lck_attr);
488 queue_init(&lq->vpl_queue);
489 lq->vpl_count = 0;
490 lq->vpl_internal_count = 0;
491 lq->vpl_external_count = 0;
3503 struct vpl *lq; local
3512 lq = &vm_page_local_q[lid].vpl_un.vpl;
3515 if (lq
5661 struct vpl *lq; local
5674 struct vpl *lq; local
5735 struct vpl *lq; local
6031 struct vpl *lq; local
6067 struct vpl *lq; local
6154 struct vpl *lq; local
[all...]
H A Dvm_fault.c2896 struct vpl *lq; local
2918 lq = &vm_page_local_q[lid].vpl_un.vpl;
2920 VPL_LOCK(&lq->vpl_lock);
2922 queue_enter(&lq->vpl_queue, m,
2926 lq->vpl_count++;
2929 lq->vpl_internal_count++;
2931 lq->vpl_external_count++;
2933 VPL_UNLOCK(&lq->vpl_lock);
2935 if (lq->vpl_count > vm_page_local_q_soft_limit)
/xnu-2782.1.97/osfmk/kern/
H A Dhost.c353 struct vpl *lq; local
355 lq = &vm_page_local_q[i].vpl_un.vpl;
357 stat32->active_count += VM_STATISTICS_TRUNCATE_TO_32_BIT(lq->vpl_count);
555 struct vpl *lq; local
557 lq = &vm_page_local_q[i].vpl_un.vpl;
559 stat->active_count += lq->vpl_count;
561 lq->vpl_internal_count;
563 lq->vpl_external_count;

Completed in 46 milliseconds