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

/darwin-on-arm/xnu/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
467 vstruct_t vs; local
516 vstruct_t vs; local
532 vstruct_t vs; local
625 vstruct_t vs; local
712 vstruct_t vs; local
761 vstruct_t vs; local
870 vstruct_t vs; local
912 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
2012 ps_map_extend( vstruct_t vs, unsigned int new_size) argument
2122 ps_clmap( vstruct_t vs, dp_offset_t offset, struct clmap *clmap, int flag, dp_size_t size, int error) argument
2333 ps_clunmap( vstruct_t vs, dp_offset_t offset, dp_size_t length) argument
2415 ps_vs_write_complete( vstruct_t vs, dp_offset_t offset, dp_size_t size, int error) argument
2439 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
2852 pvs_object_data_provided( __unused vstruct_t vs, __unused upl_t upl, __unused upl_offset_t offset, upl_size_t size) argument
2892 pvs_cluster_read( vstruct_t vs, dp_offset_t vs_offset, dp_size_t cnt, void *fault_info) argument
3328 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
3685 ps_vstruct_allocated_size( vstruct_t vs) argument
3732 ps_vstruct_allocated_pages( vstruct_t vs, default_pager_page_t *pages, unsigned int pages_size) argument
3800 ps_vstruct_transfer_from_segment( vstruct_t vs, paging_segment_t segment, upl_t upl) argument
3938 vs_get_map_entry( vstruct_t vs, dp_offset_t offset) argument
3960 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...]
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_attrlist.c642 struct vfs_attr vs; local
656 VFSATTR_INIT(&vs);
657 vs.f_vol_name = NULL;
670 bzero(&vs, sizeof (vs));
689 if ((error = getvolattrlist_setupvfsattr(alp, &vs, &fixedsize, is_64bit)) != 0) {
693 if (vs.f_active != 0) {
695 if (VFSATTR_IS_ACTIVE(&vs, f_vol_name)) {
696 vs.f_vol_name = (char *) kalloc(MAXPATHLEN);
697 if (vs
2390 struct vfs_attr vs; local
[all...]
/darwin-on-arm/xnu/pexpert/arm/
H A Dpe_omap3430.c444 uint32_t vs = FLD_VAL(current_mode->yres - 1, 26, 16) | FLD_VAL(current_mode->xres - 1, 10, 0);
446 OmapDispc->size_lcd = vs;
467 uint32_t vs = OmapDispc->size_lcd; local
470 lcd_height = (vs >> 16) + 1;
471 lcd_width = (vs & 0xffff) + 1;
493 OmapDispc->gfx_size = vs;
H A Dpe_omap3530.c471 uint32_t vs; local
495 vs = OmapDispc->size_lcd;
498 lcd_height = (vs >> 16) + 1;
499 lcd_width = (vs & 0xffff) + 1;
519 OmapDispc->gfx_size = vs;

Completed in 37 milliseconds