Searched refs:psize (Results 1 - 25 of 85) sorted by relevance

1234

/macosx-10.10/swig-12/Lib/ruby/
H A Drubywstrings.swg20 SWIG_AsWCharPtrAndSize(VALUE obj, wchar_t **cptr, size_t *psize, int *alloc)
22 return SWIG_AsCharPtrAndSize( obj, (char**)cptr, psize, alloc);
39 // if (psize) *psize = (size_t) len + 1;
48 // if (psize) *psize = vptr ? (wcslen((wchar_t *)vptr) + 1) : 0;
H A Drubystrings.swg7 SWIG_AsCharPtrAndSize(VALUE obj, char** cptr, size_t* psize, int *alloc)
26 if (psize) *psize = size;
34 if (psize) *psize = vptr ? (strlen((char*)vptr) + 1) : 0;
/macosx-10.10/swig-12/Lib/tcl/
H A Dtclstrings.swg7 SWIG_AsCharPtrAndSize(Tcl_Obj *obj, char** cptr, size_t* psize, int *alloc)
13 if (psize) *psize = len + 1;
H A Dtclwstrings.swg16 SWIG_AsWCharPtrAndSize(Tcl_Obj *obj, wchar_t** cptr, size_t* psize, int *alloc)
37 if (psize) *psize = len + 1;
/macosx-10.10/swig-12/Lib/perl5/
H A Dperlstrings.swg7 SWIG_AsCharPtrAndSize(SV *obj, char** cptr, size_t* psize, int *alloc)
28 if (psize) *psize = size;
36 if (psize) *psize = vptr ? (strlen(vptr) + 1) : 0;
/macosx-10.10/swig-12/Lib/python/
H A Dpywstrings.swg7 SWIG_AsWCharPtrAndSize(PyObject *obj, wchar_t **cptr, size_t *psize, int *alloc)
26 if (psize) *psize = (size_t) len + 1;
36 if (psize) *psize = vptr ? (wcslen((wchar_t *)vptr) + 1) : 0;
H A Dpystrings.swg6 SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc)
60 if (psize) *psize = len + 1;
71 if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0;
/macosx-10.10/bash-94.1.2/bash-3.2/builtins/
H A Dpsize.sh3 # psize.sh -- determine this system's pipe size, and write a define to
23 echo " * This file is automatically generated by psize.sh"
30 # existance before we run psize.aux, because `test -e' is not portable,
37 ./psize.aux 2>"$TMPFILE" | sleep 3
/macosx-10.10/Libc-1044.1.2/db/btree/FreeBSD/
H A Dbt_open.c123 if (b.psize &&
124 (b.psize < MINPSIZE || b.psize > MAX_PAGE_OFFSET + 1 ||
125 b.psize & (sizeof(indx_t) - 1) ))
151 b.psize = 0;
235 M_32_SWAP(m.psize);
242 if (m.psize < MINPSIZE || m.psize > MAX_PAGE_OFFSET + 1 ||
243 m.psize & (sizeof(indx_t) - 1) )
247 b.psize
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dsdb020.tcl68 set psize [stat_field $db stat "Page size"]
69 if { $psize == 512 } {
87 -pagesize $psize {$omethod $testfile $name}]
92 set psize 8192
94 $args -env $env -pagesize $psize {$omethod $testfile $name}]
99 set psize2 [expr $psize / 2]
109 -pagesize $psize {$omethod $testfile $name}]
H A Dsdb007.tcl78 set psize 2048
80 set psize 512
85 $db2args $envargs {-pagesize $psize $testfile $sub2}]
96 $args $envargs {-pagesize $psize $omethod $testfile $sub1}]
101 set newpsize [expr $psize * 2]
106 error_check_good check_pagesize [expr $actual_psize == $psize] 1
H A Dmemp003.tcl32 set psize 1024
39 set c [list 0 [expr $psize * 20 * 3] 3]
46 -mode 0644 -pagesize $psize -btree $testfile]
105 set c [concat "{" [list 0 [expr $psize * 20 * 3] 3] "}" ]
H A Djoin.tcl20 proc jointest { {psize 8192} {with_dup_dups 0} {flags 0} } {
48 puts "Join test: ($m $dopt) psize $psize,\
52 build_all $m $psize $opt oa $with_dup_dups
200 proc build_all { method psize opt oaname with_dup_dups {nentries 100} } {
203 $psize $opt $oaname $with_dup_dups
205 $psize $opt $oaname $with_dup_dups
207 $psize $opt $oaname $with_dup_dups
209 $psize $opt $oaname $with_dup_dups
211 $psize
[all...]
H A Dsdb005.tcl54 set psize 8192
57 $testfile [list $method] $psize $duplist $nentries $args
/macosx-10.10/xnu-2782.1.97/tools/tests/libMicro/apple/
H A Dlmbench_bw_unix.c344 static int psize; local
346 if (!psize) {
347 psize = getpagesize();
351 buf += psize;
352 nbytes -= psize;
/macosx-10.10/BerkeleyDB-21/db/dbinc/
H A Ddb_page.h388 #define P_MAXSPACE(dbp, psize) ((psize) - P_OVERHEAD(dbp))
391 #define P_OVFLSPACE(dbp, psize, pg) (P_MAXSPACE(dbp, psize) - HOFFSET(pg))
446 #define LEN_HKEYDATA(dbp, pg, psize, indx) \
447 (db_indx_t)(LEN_HITEM(dbp, pg, psize, indx) - HKEYDATA_SIZE(0))
472 #define H_PAIRSIZE(dbp, pg, psize, indx) \
473 (LEN_HITEM(dbp, pg, psize, H_KEYINDEX(indx)) + \
474 LEN_HITEM(dbp, pg, psize, H_DATAINDEX(indx)))
475 #define LEN_HDATA(dbp, p, psize, ind
[all...]
H A Ddb_185.in133 u_int32_t psize; /* page size */
162 u_int32_t psize; /* page size */
/macosx-10.10/Libc-1044.1.2/gen/
H A Ddisklabel.c86 char p, max, psize[3], pbsize[3], local
145 strcpy(psize, "px");
153 psize[1] = pbsize[1] = pfsize[1] = poffset[1] = ptype[1] = p;
154 if (cgetnum(buf, psize,(long *) &pp->p_size) == -1)
174 (void)strcpy(psize, "dx");
177 psize[1] = p;
178 getnumdflt(*dx, psize, 0);
/macosx-10.10/BerkeleyDB-21/db/db185/
H A Ddb185_int.in96 u_int32_t psize; /* page size */
122 u_int32_t psize; /* page size */
/macosx-10.10/Libc-1044.1.2/include/
H A Ddb.h123 unsigned int psize; /* page size */ member in struct:__anon2738
152 unsigned int psize; /* page size */ member in struct:__anon2740
/macosx-10.10/apr-32/apr/apr/include/
H A Dapr_mmap.h76 apr_size_t psize; member in struct:apr_mmap_t
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/stream/
H A Dtiffstream.h37 static int map(thandle_t fd, tdata_t* phase, toff_t* psize);
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_unix.c96 _tiffMapProc(thandle_t fd, tdata_t* pbase, toff_t* psize) argument
103 *psize = size;
118 _tiffMapProc(thandle_t fd, tdata_t* pbase, toff_t* psize) argument
120 (void) fd; (void) pbase; (void) psize;
/macosx-10.10/gpatch-3/patch/
H A Dinp.c430 ifetch (LINENUM line, int whichbuf, size_t *psize) argument
436 *psize = 0;
441 *psize = i_ptr[line + 1] - p;
460 *psize = last_line_size;
464 *psize = q - p;
/macosx-10.10/swig-12/Lib/octave/
H A Doctprimtypes.swg203 SWIG_AsCharPtrAndSize(octave_value ov, char** cptr, size_t* psize, int *alloc)
218 if (psize)
219 *psize = len + 1;

Completed in 247 milliseconds

1234