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

/macosx-10.5.8/xnu-1228.15.4/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
381 vstruct_t vs; local
406 vstruct_t vs; local
439 vstruct_t vs; local
488 vstruct_t vs; local
504 vstruct_t vs; local
597 vstruct_t vs; local
671 vstruct_t vs; local
719 vstruct_t vs; local
827 vstruct_t vs; local
864 vstruct_t vs; local
[all...]
H A Ddp_backing_store.c203 vstruct_t vs,
209 vstruct_t vs,
214 vstruct_t vs,
425 port is currently backed with a vs structure in the alias field
572 alias_struct->vs = (struct vstruct *)bs;
668 vstruct_t vs; local
672 VSL_LOCK(); /* get the lock on the list of vs's */
684 /* lock and the vs locks are not being held by bumping the */
694 vs = (vstruct_t) queue_first((queue_entry_t)&(vstruct_list.vsl_queue));
695 if(vs
1226 vstruct_t vs; local
1451 ps_allocate_cluster( vstruct_t vs, int *psindex, paging_segment_t use_ps) argument
1626 ps_vstruct_dealloc( vstruct_t vs) argument
1667 ps_map_extend( vstruct_t vs, unsigned int new_size) argument
1777 ps_clmap( vstruct_t vs, vm_offset_t offset, struct clmap *clmap, int flag, vm_size_t size, int error) argument
1988 ps_clunmap( vstruct_t vs, vm_offset_t offset, vm_size_t length) argument
2058 ps_vs_write_complete( vstruct_t vs, vm_offset_t offset, vm_size_t size, int error) argument
2082 vs_cl_write_complete( vstruct_t vs, __unused paging_segment_t ps, vm_offset_t offset, __unused vm_offset_t addr, vm_size_t size, boolean_t async, int error) argument
2498 pvs_object_data_provided( __unused vstruct_t vs, __unused upl_t upl, __unused upl_offset_t offset, upl_size_t size) argument
2523 pvs_cluster_read( vstruct_t vs, vm_offset_t vs_offset, vm_size_t cnt, void *fault_info) argument
2892 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
3196 ps_vstruct_allocated_size( vstruct_t vs) argument
3243 ps_vstruct_allocated_pages( vstruct_t vs, default_pager_page_t *pages, size_t pages_size) argument
3311 ps_vstruct_transfer_from_segment( vstruct_t vs, paging_segment_t segment, upl_t upl) argument
3441 vs_get_map_entry( vstruct_t vs, vm_offset_t offset) argument
3463 vs_cluster_transfer( vstruct_t vs, vm_offset_t offset, vm_size_t cnt, upl_t upl) argument
[all...]
H A Ddefault_pager_internal.h465 #define VSCLSIZE(vs) (1UL << (vs)->vs_clshift)
538 #define CLMAP_SHIFT(clm,vs) \
539 (clm)->cl_bmap.clb_map >>= (VSCLSIZE(vs) - (clm)->cl_numpages)
540 #define CLMAP_SHIFTALLOC(clm,vs) \
541 (clm)->cl_alloc.clb_map >>= (VSCLSIZE(vs) - (clm)->cl_numpages)
545 struct vstruct *vs;
554 #define VS_LOCK_INIT(vs) hw_lock_init(&(vs)->vs_lock)
555 #define VS_TRY_LOCK(vs) (VS_LOC
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/ppc/
H A Ducontext.h40 struct ppc_vector_state vs; member in struct:mcontext
48 struct __darwin_ppc_vector_state vs; member in struct:__darwin_mcontext
62 struct ppc_vector_state vs; member in struct:mcontext64
H A D_structs.h66 _STRUCT_PPC_VECTOR_STATE vs; variable
91 _STRUCT_PPC_VECTOR_STATE vs; variable
/macosx-10.5.8/xnu-1228.15.4/bsd/vfs/
H A Dvfs_attrlist.c517 struct vfs_attr vs; local
528 VFSATTR_INIT(&vs);
529 vs.f_vol_name = NULL;
547 if ((error = getvolattrlist_setupvfsattr(alp, &vs, &fixedsize, is_64bit)) != 0) {
551 if (vs.f_active != 0) {
553 if (VFSATTR_IS_ACTIVE(&vs, f_vol_name)) {
554 vs.f_vol_name = (char *) kalloc(MAXPATHLEN);
555 if (vs.f_vol_name == NULL) {
563 error = mac_mount_check_getattr(ctx, mnt, &vs);
567 VFS_DEBUG(ctx, vp, "ATTRLIST - calling to get %016llx with supported %016llx", vs
1853 struct vfs_attr vs; local
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dstatus.c121 register struct ppc_vector_state *vs; local
370 vs = (struct ppc_vector_state *) tstate; /* Point to destination */
377 vs->save_vrvalid = vsv->save_vrvalid; /* Set the valid flags */
378 if(genuser) for(j=0; j < 4; j++) vs->save_vscr[j] = genuser->save_vscr[j]; /* Set value for vscr */
380 vs->save_vscr[0] = 0; /* Set an initial value if no general user yet */
381 vs->save_vscr[1] = 0;
382 vs->save_vscr[2] = 0;
383 vs->save_vscr[3] = 0x00010000; /* Always start with Java mode off */
387 if(vrvalidwrk & 0x80000000) (vs->save_vr)[i][j] =
389 else vs
679 register struct ppc_vector_state *vs; local
[all...]
H A Dbat_init.c71 bat.upper.bits.vs = 1;
133 bat.upper.bits.vs = 1;
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/ppc/
H A Dunix_signal.c340 tstate = (void *)&mctx.vs;
349 tstate = (void *)&mctx64.vs;
803 vptr = (void *)&p_64mctx->vs;
817 vptr = (void *)&p_mctx->vs;

Completed in 70 milliseconds