Searched refs:bufsize (Results 1 - 25 of 419) sorted by relevance

1234567891011>>

/macosx-10.10.1/dtrace-147/test/tst/common/buffering/
H A Derr.zerobuf.d31 * Test with a bufsize of 0 - should return an error.
35 * Options and Tunables/bufsize
38 #pragma D option bufsize=0
H A Derr.resize1.d35 * Options and Tunables/bufsize;
41 #pragma D option bufsize=100t
H A Dtst.resize1.d35 * Options and Tunables/bufsize;
58 #pragma D option bufsize=100t
H A Derr.end.d38 * Options and Tunables/bufsize;
43 #pragma D option bufsize=32
H A Dtst.ring2.d35 * Options and Tunables/bufsize;
40 #pragma D option bufsize=512k
H A Dtst.smallring.d35 * Options and Tunables/bufsize;
40 #pragma D option bufsize=16
/macosx-10.10.1/sudo-73/src/
H A Dgetline.c53 size_t bufsize; local
58 bufsize = *bufp ? *bufsizep : 0;
59 if (bufsize == 0 || bufsize < len + 1) {
60 bufsize = len + 1;
61 *bufp = erealloc(*bufp, bufsize);
62 *bufsizep = bufsize;
77 size_t bufsize; local
81 bufsize = *bufsizep;
82 if (buf == NULL || bufsize
[all...]
/macosx-10.10.1/apr-32/apr/apr/file_io/os2/
H A Dbuffer.c22 apr_size_t bufsize)
38 file->bufsize = bufsize;
44 if (file->bufsize == 0) {
58 return file->bufsize;
/macosx-10.10.1/apr-32/apr/apr/file_io/unix/
H A Dbuffer.c23 apr_size_t bufsize)
39 file->bufsize = bufsize;
45 if (file->bufsize == 0) {
59 return file->bufsize;
/macosx-10.10.1/apr-32/apr/apr/file_io/win32/
H A Dbuffer.c22 apr_size_t bufsize)
38 file->bufsize = bufsize;
44 if (file->bufsize == 0) {
58 return file->bufsize;
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dgetmntinfo.c51 static long bufsize; local
55 if (bufsize > 0 && (mntsize = getfsstat(mntbuf, bufsize, flags)) < 0)
57 while (bufsize <= mntsize * sizeof(struct statfs)) {
60 bufsize = (mntsize + 1) * sizeof(struct statfs);
61 if ((mntbuf = (struct statfs *)malloc(bufsize)) == 0)
63 if ((mntsize = getfsstat(mntbuf, bufsize, flags)) < 0)
H A Dgetmntinfo64.c51 static long bufsize; local
55 if (bufsize > 0 && (mntsize = getfsstat64(mntbuf, bufsize, flags)) < 0)
57 while (bufsize <= mntsize * sizeof(struct statfs64)) {
60 bufsize = (mntsize + 1) * sizeof(struct statfs64);
61 if ((mntbuf = (struct statfs64 *)malloc(bufsize)) == 0)
63 if ((mntsize = getfsstat64(mntbuf, bufsize, flags)) < 0)
/macosx-10.10.1/OpenSSL098-52/src/ms/
H A Dtenc.bat4 %ssleay% %1 %2 %3 %4 %5 %6 -e -bufsize 113 -k test -in %input% -out %tmp1%
5 %ssleay% %1 %2 %3 %4 %5 %6 -d -bufsize 157 -k test -in %tmp1% -out %out1%
10 %ssleay% %1 %2 %3 %4 %5 %6 -a -e -bufsize 113 -k test -in %input% -out %tmp1%
11 %ssleay% %1 %2 %3 %4 %5 %6 -a -d -bufsize 157 -k test -in %tmp1% -out %out1%
/macosx-10.10.1/dtrace-147/test/tst/common/drops/
H A Ddrp.DTRACEDROP_PRINCIPAL.d30 #pragma D option bufsize=512
H A Ddrp.DTRACEDROP_PRINCIPAL.end.d30 #pragma D option bufsize=512
/macosx-10.10.1/apr-32/apr/apr/misc/unix/
H A Derrorcodes.c33 static char *stuffbuffer(char *buf, apr_size_t bufsize, const char *s) argument
35 apr_cpystrn(buf,s,bufsize);
146 static char *apr_os_strerror(char* buf, apr_size_t bufsize, int err) argument
155 return stuffbuffer(buf, bufsize,
183 return stuffbuffer(buf, bufsize, result);
245 static char *apr_os_strerror(char *buf, apr_size_t bufsize, apr_status_t errcode) argument
257 (DWORD)bufsize,
267 (DWORD) (bufsize/sizeof(TCHAR)),
283 apr_cpystrn(buf, gaErrorList[i].msg, bufsize);
307 apr_snprintf(buf, bufsize, "Unrecognize
317 apr_os_strerror(char* buf, apr_size_t bufsize, int err) argument
350 native_strerror(apr_status_t statcode, char *buf, apr_size_t bufsize) argument
372 native_strerror(apr_status_t statcode, char *buf, apr_size_t bufsize) argument
390 native_strerror(apr_status_t statcode, char *buf, apr_size_t bufsize) argument
409 apr_strerror(apr_status_t statcode, char *buf, apr_size_t bufsize) argument
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Ddoprnt.c65 doprnt (buffer, bufsize, format, format_end, nargs, args)
67 register int bufsize;
73 return doprnt1 (0, buffer, bufsize, format, format_end, nargs, args);
80 doprnt_lisp (buffer, bufsize, format, format_end, nargs, args)
82 register int bufsize;
88 return doprnt1 (1, buffer, bufsize, format, format_end, nargs, args);
92 doprnt1 (lispstrings, buffer, bufsize, format, format_end, nargs, args)
95 register int bufsize;
132 bufsize--;
135 while (fmt != format_end && bufsize >
[all...]
/macosx-10.10.1/cups-408/cups/cups/
H A Dattr.c152 size_t bufsize) /* I - Size of string buffer */
157 if (!make_and_model || !buffer || bufsize < 1)
178 strlcpy(buffer, make_and_model + 1, bufsize);
189 snprintf(buffer, bufsize, "Xerox %s", make_and_model);
197 snprintf(buffer, bufsize, "Kodak %s", make_and_model + 7);
205 snprintf(buffer, bufsize, "Apple LaserWriter%s", make_and_model + 11);
213 snprintf(buffer, bufsize, "Seiko %s", make_and_model);
221 snprintf(buffer, bufsize, "EFI %s", make_and_model);
230 snprintf(buffer, bufsize, "Canon %s", make_and_model);
238 snprintf(buffer, bufsize, "Farg
149 _ppdNormalizeMakeAndModel( const char *make_and_model, char *buffer, size_t bufsize) argument
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/unix/include/isc/
H A Dstrerror.h41 isc__strerror(int num, char *buf, size_t bufsize);
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/win32/include/isc/
H A Dstrerror.h38 isc__strerror(int num, char *buf, size_t bufsize);
/macosx-10.10.1/ntp-92/lib/isc/unix/include/isc/
H A Dstrerror.h41 isc__strerror(int num, char *buf, size_t bufsize);
/macosx-10.10.1/ntp-92/lib/isc/win32/include/isc/
H A Dstrerror.h38 isc__strerror(int num, char *buf, size_t bufsize);
/macosx-10.10.1/top-100.1.2/
H A Duinteger.h17 bool top_humanize_uinteger(char *buf, size_t bufsize, const struct top_uinteger i);
19 bool top_sprint_uinteger(char *buf, size_t bufsize, struct top_uinteger i);
29 bool top_uinteger_format_result(char *buf, size_t bufsize, uint64_t now,
32 bool top_uinteger_format_mem_result(char *buf, size_t bufsize, uint64_t now,
/macosx-10.10.1/dtrace-147/test/tst/common/rates/
H A Dtst.switchrate.d34 * Options and Tunables/bufsize;
46 #pragma D option bufsize=40
/macosx-10.10.1/dtrace-147/test/tst/common/safety/
H A Dtst.caller.d36 * Options and Tunables/bufsize;
41 #pragma D option bufsize=1000

Completed in 338 milliseconds

1234567891011>>