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

/xnu-2782.1.97/osfmk/default_pager/
H A Ddp_memory_object.c91 vstruct_t vs)
94 queue_enter(&vstruct_list.vsl_queue, vs, vstruct_t, vs_links);
102 vstruct_t vs)
104 queue_remove(&vstruct_list.vsl_queue, vs, vstruct_t, vs_links);
125 vstruct_t vs)
128 ASSERT(vs->vs_async_pending >= 0);
129 while (vs->vs_async_pending > 0) {
130 vs->vs_waiting_async = TRUE;
131 assert_wait(&vs->vs_async_pending, THREAD_UNINT);
132 VS_UNLOCK(vs);
90 vstruct_list_insert( vstruct_t vs) argument
101 vstruct_list_delete( vstruct_t vs) argument
124 vs_async_wait( vstruct_t vs) argument
155 vs_lock( vstruct_t vs) argument
179 vs_unlock(vstruct_t vs) argument
195 vs_start_read( vstruct_t vs) argument
205 vs_wait_for_readers( vstruct_t vs) argument
222 vs_finish_read( vstruct_t vs) argument
239 vs_start_write( vstruct_t vs) argument
249 vs_wait_for_writers( vstruct_t vs) argument
270 vs_wait_for_sync_writers( vstruct_t vs) argument
288 vs_finish_write( vstruct_t vs) argument
306 vstruct_t vs; local
382 vstruct_t vs; local
407 vstruct_t vs; local
440 vstruct_t vs; local
468 vstruct_t vs; local
517 vstruct_t vs; local
533 vstruct_t vs; local
626 vstruct_t vs; local
713 vstruct_t vs; local
762 vstruct_t vs; local
875 vstruct_t vs; local
917 vstruct_t vs; local
[all...]
H A Ddp_backing_store.c226 vstruct_t vs,
232 vstruct_t vs,
237 vstruct_t vs,
454 port is currently backed with a vs structure in the alias field
601 alias_struct->vs = (struct vstruct *)bs;
701 vstruct_t vs; local
705 VSL_LOCK(); /* get the lock on the list of vs's */
717 /* lock and the vs locks are not being held by bumping the */
727 vs = (vstruct_t) queue_first((queue_entry_t)&(vstruct_list.vsl_queue));
728 if(vs
1333 vstruct_t vs; local
1587 ps_allocate_cluster( vstruct_t vs, int *psindex, paging_segment_t use_ps) argument
1851 ps_vstruct_dealloc( vstruct_t vs) argument
1893 ps_vstruct_reclaim( vstruct_t vs, boolean_t return_to_vm, boolean_t reclaim_backing_store) argument
2023 ps_map_extend( vstruct_t vs, unsigned int new_size) argument
2133 ps_clmap( vstruct_t vs, dp_offset_t offset, struct clmap *clmap, int flag, dp_size_t size, int error) argument
2344 ps_clunmap( vstruct_t vs, dp_offset_t offset, dp_size_t length) argument
2426 ps_vs_write_complete( vstruct_t vs, dp_offset_t offset, dp_size_t size, int error) argument
2450 vs_cl_write_complete( vstruct_t vs, __unused paging_segment_t ps, dp_offset_t offset, __unused vm_offset_t addr, dp_size_t size, boolean_t async, int error) argument
2863 pvs_object_data_provided( __unused vstruct_t vs, __unused upl_t upl, __unused upl_offset_t offset, upl_size_t size) argument
2910 pvs_cluster_read( vstruct_t vs, dp_offset_t vs_offset, dp_size_t cnt, void *fault_info) argument
3352 vs_cluster_write( vstruct_t vs, upl_t internal_upl, upl_offset_t offset, upl_size_t cnt, boolean_t dp_internal, int flags) argument
3709 ps_vstruct_allocated_size( vstruct_t vs) argument
3756 ps_vstruct_allocated_pages( vstruct_t vs, default_pager_page_t *pages, unsigned int pages_size) argument
3824 ps_vstruct_transfer_from_segment( vstruct_t vs, paging_segment_t segment, upl_t upl) argument
3962 vs_get_map_entry( vstruct_t vs, dp_offset_t offset) argument
3984 vs_cluster_transfer( vstruct_t vs, dp_offset_t offset, dp_size_t cnt, upl_t upl) argument
[all...]
H A Ddefault_pager_internal.h446 #define VSCLSIZE(vs) (1U << (vs)->vs_clshift)
519 #define CLMAP_SHIFT(clm,vs) \
520 (clm)->cl_bmap.clb_map >>= (VSCLSIZE(vs) - (clm)->cl_numpages)
521 #define CLMAP_SHIFTALLOC(clm,vs) \
522 (clm)->cl_alloc.clb_map >>= (VSCLSIZE(vs) - (clm)->cl_numpages)
526 struct vstruct *vs;
535 #define VS_LOCK_INIT(vs) hw_lock_init(&(vs)->vs_lock)
536 #define VS_TRY_LOCK(vs) (VS_LOC
[all...]
/xnu-2782.1.97/osfmk/console/art/
H A Dscalegear.c12 vImage_Buffer vs; local
18 vs.width = kGearWidth * 2;
19 vs.height = kGearHeight * 2 * kGearFrames;
20 vs.rowBytes = vs.width * sizeof(uint32_t);
21 vs.data = malloc(vs.height * vs.rowBytes);
23 vd.width = 1.5 * vs.width;
24 vd.height = 1.5 * vs
[all...]
/xnu-2782.1.97/bsd/vfs/
H A Dvfs_attrlist.c91 * based on how much we've used for fixed width fields vs. the
848 struct vfs_attr vs; local
862 VFSATTR_INIT(&vs);
863 vs.f_vol_name = NULL;
877 bzero(&vs, sizeof (vs));
896 if ((error = getvolattrlist_setupvfsattr(alp, &vs, &fixedsize, is_64bit)) != 0) {
900 if (vs.f_active != 0) {
902 if (VFSATTR_IS_ACTIVE(&vs, f_vol_name)) {
903 vs
3926 struct vfs_attr vs; local
[all...]

Completed in 83 milliseconds