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

123456

/macosx-10.10.1/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...]
/macosx-10.10.1/CPANInternal-159.1/JSON-PP-2.27203/t/
H A D116_incr_parse_fixed.t10 my @vs = $json->incr_parse('"a\"bc');
12 ok( not scalar(@vs) );
14 @vs = $json->incr_parse('"');
16 is( $vs[0], "a\"bc" );
21 @vs = $json->incr_parse('"a\"bc');
22 ok( not scalar(@vs) );
23 @vs = eval { $json->incr_parse('"') };
/macosx-10.10.1/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...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Dvmstate.c59 Vmstat_t vs; member in struct:State_s
76 *pn = state->vs.extent;
80 *pn = state->vs.n_seg;
82 *pn = state->vs.s_busy;
84 *pn = state->vs.n_busy;
86 *pn = state->vs.m_busy;
91 if (state->vs.mode & VM_TRUST)
94 if (state->vs.mode & VM_TRACE)
96 if (state->vs.mode & VM_DBCHECK)
98 if (state->vs
[all...]
/macosx-10.10.1/ruby-106/ruby/bootstraptest/
H A Dtest_load.rb8 vs = (1..2).map {|i|
14 vs[0] == M && vs[1] == M ? :ok : :ng
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/sets/
H A Dm.c37 SPtr vs, s; local
54 vs = s_dup (NULL);
55 val = s_new (vs);
58 } else if (s_get (interp, val, &vs) != TCL_OK) {
72 if (Tcl_FindHashEntry (&vs->el, key) != NULL) continue;
73 /* Key not known to vs, to be added */
80 s_get (interp, val, &vs);
83 (void*) Tcl_CreateHashEntry(&vs->el, key, &new);
300 SPtr vs;
313 if (s_get (interp, val, &vs) !
295 SPtr vs; local
350 SPtr vs; local
608 SPtr vs, s; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/cf/
H A Dw32-check-exported-symbols.pl46 "vs=s" => \$vs_name,
53 open (my $vs, '<', $vs_name) or die $!;
59 while(<$vs>)
101 close($vs);
120 --vs Name of version-script file
/macosx-10.10.1/llvmCore-3425.0.34/autoconf/m4/
H A Dheader_mmap_anonymous.m46 [AC_CACHE_CHECK(for MAP_ANONYMOUS vs. MAP_ANON,
/macosx-10.10.1/llvmCore-3425.0.34/projects/sample/autoconf/m4/
H A Dheader_mmap_anonymous.m46 [AC_CACHE_CHECK(for MAP_ANONYMOUS vs. MAP_ANON,
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_flip.rb16 vs = (1..9).to_a
17 vs.select {|n| if n==2..n==16 then 1 end}
18 v = eval("vs.select {|n| if n==3..n==6 then 1 end}")
H A Dallpairs.rb66 def each_index(*vs)
67 n = vs.length
68 max_v = vs.max
72 row = vs.zip(row).map {|v, i| i % v }
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dpause.c31 #error cancellable call vs. __DARWIN_NON_CANCELABLE mismatch
H A Dusleep.c31 #error cancellable call vs. __DARWIN_NON_CANCELABLE mismatch
H A Dsleep.c31 #error cancellable call vs. __DARWIN_NON_CANCELABLE mismatch
/macosx-10.10.1/Libinfo-459/rpc.subproj/
H A Dxdr_float.c128 struct vax_single vs, *vsp; local
138 vs = *((struct vax_single *)fp);
142 if ((vs.mantissa2 == lim->s.mantissa2) &&
143 (vs.exp == lim->s.exp) &&
144 (vs.mantissa1 == lim->s.mantissa1)) {
149 is.exp = vs.exp - VAX_SNG_BIAS + IEEE_SNG_BIAS;
150 is.mantissa = (vs.mantissa1 << 16) | vs.mantissa2;
152 is.sign = vs.sign;
/macosx-10.10.1/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...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_smime/
H A Dcmssiginfo.c580 SecCmsVerificationStatus vs = SecCmsVSUnverified; local
591 vs = SecCmsVSSigningCertNotFound;
600 vs = SecCmsVSProcessingError;
631 vs = SecCmsVSMalformedSignature;
636 vs = SecCmsVSMalformedSignature;
646 vs = SecCmsVSMalformedSignature;
650 vs = SecCmsVSDigestMismatch;
655 vs = SecCmsVSProcessingError;
672 vs = SecCmsVSProcessingError;
676 vs
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_smime/lib/
H A Dcmssiginfo.c580 SecCmsVerificationStatus vs = SecCmsVSUnverified; local
591 vs = SecCmsVSSigningCertNotFound;
600 vs = SecCmsVSProcessingError;
631 vs = SecCmsVSMalformedSignature;
636 vs = SecCmsVSMalformedSignature;
646 vs = SecCmsVSMalformedSignature;
650 vs = SecCmsVSDigestMismatch;
655 vs = SecCmsVSProcessingError;
672 vs = SecCmsVSProcessingError;
676 vs
[all...]
/macosx-10.10.1/groff-38/groff/src/roff/troff/
H A Ddiv.h52 virtual void output(node *nd, int retain_size, vunits vs, vunits post_vs,
81 void output(node *nd, int retain_size, vunits vs, vunits post_vs,
120 void output(node *nd, int retain_size, vunits vs, vunits post_vs,
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dsafe-ctype.c137 #define vs _sch_isvsp macro
152 #define V (const unsigned short) (vs|sp |cn) /* vertical space: \r \n */
/macosx-10.10.1/tcl-105/tcl/tcl/win/
H A Dnmakehlp.c671 char *ks, *ke, *vs, *ve;
676 vs = ke;
677 while (vs && *vs && isspace(*vs)) ++vs;
678 ve = vs;
681 list_insert(&substPtr, ks, vs);
662 char *ks, *ke, *vs, *ve; local
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/win/
H A Dnmakehlp.c663 char *ks, *ke, *vs, *ve;
668 vs = ke;
669 while (vs && *vs && isspace(*vs)) ++vs;
670 ve = vs;
673 list_insert(&substPtr, ks, vs);
654 char *ks, *ke, *vs, *ve; local
/macosx-10.10.1/tcl-105/tk/tk/win/
H A Dnmakehlp.c671 char *ks, *ke, *vs, *ve;
676 vs = ke;
677 while (vs && *vs && isspace(*vs)) ++vs;
678 ve = vs;
681 list_insert(&substPtr, ks, vs);
662 char *ks, *ke, *vs, *ve; local

Completed in 188 milliseconds

123456