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

1234567891011>>

/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/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 Derr.end.d38 * Options and Tunables/bufsize;
43 #pragma D option bufsize=32
H A Dtst.resize1.d35 * Options and Tunables/bufsize;
46 #pragma D option bufsize=100t
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
/freebsd-10.0-release/sys/dev/vxge/include/
H A Dvxgehal-mgmtaux.h41 * @bufsize: Buffer size.
43 * @retsize: Size of the result. Cannot be greater than @bufsize.
55 vxge_hal_status_e vxge_hal_aux_about_read(vxge_hal_device_h devh, int bufsize,
60 * @bufsize: Buffer size.
62 * @retsize: Size of the result. Cannot be greater than @bufsize.
72 vxge_hal_aux_driver_config_read(int bufsize, char *retbuf, int *retsize);
78 * @bufsize: Buffer size.
80 * @retsize: Size of the result. Cannot be greater than @bufsize.
93 int bufsize,
100 * @bufsize
[all...]
/freebsd-10.0-release/sys/dev/nxge/include/
H A Dxgehal-mgmtaux.h38 xge_hal_status_e xge_hal_aux_about_read(xge_hal_device_h devh, int bufsize,
41 xge_hal_status_e xge_hal_aux_stats_tmac_read(xge_hal_device_h devh, int bufsize,
44 xge_hal_status_e xge_hal_aux_stats_rmac_read(xge_hal_device_h devh, int bufsize,
48 int bufsize, char *retbuf, int *retsize);
50 xge_hal_status_e xge_hal_aux_stats_pci_read(xge_hal_device_h devh, int bufsize,
53 xge_hal_status_e xge_hal_aux_stats_hal_read(xge_hal_device_h devh, int bufsize,
57 unsigned int offset, int bufsize, char *retbuf,
64 unsigned int offset, int bufsize, char *retbuf,
67 xge_hal_status_e xge_hal_aux_pci_config_read(xge_hal_device_h devh, int bufsize,
71 int bufsize, cha
[all...]
/freebsd-10.0-release/lib/libc/iconv/
H A Dcitrus_aliasname_local.h35 void *buf, size_t bufsize)
39 buf, bufsize, _LOOKUP_CASE_SENSITIVE));
34 __unaliasname(const char *dbname, const char *alias, void *buf, size_t bufsize) argument
/freebsd-10.0-release/contrib/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;
/freebsd-10.0-release/lib/libc/gen/
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)
/freebsd-10.0-release/contrib/dtc/libfdt/
H A Dfdt_empty_tree.c58 int fdt_create_empty_tree(void *buf, int bufsize) argument
62 err = fdt_create(buf, bufsize);
82 return fdt_open_into(buf, buf, bufsize);
/freebsd-10.0-release/sys/contrib/libfdt/
H A Dfdt_empty_tree.c58 int fdt_create_empty_tree(void *buf, int bufsize) argument
62 err = fdt_create(buf, bufsize);
82 return fdt_open_into(buf, buf, bufsize);
/freebsd-10.0-release/tools/regression/lib/libc/string/
H A Dtest-wcsnlen.c59 size_t size, len, bufsize; local
64 for (bufsize = 0; bufsize <= size + 10; bufsize++) {
65 s1 = makebuf(bufsize * sizeof(wchar_t), i);
66 wmemcpy(s1, s, bufsize);
67 len = (size > bufsize) ? bufsize : size - 1;
68 assert(wcsnlen(s1, bufsize) == len);
H A Dtest-stpncpy.c58 size_t size, len, bufsize, x; local
64 for (bufsize = 0; bufsize <= size + 10; bufsize++) {
67 dst = makebuf(bufsize, j);
68 memset(dst, 'X', bufsize);
69 len = (bufsize < size) ? bufsize : size - 1;
70 assert(stpncpy(dst, src, bufsize) == dst+len);
72 for (x = len; x < bufsize;
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/
H A Dtst.genericevent.d37 #pragma D option bufsize=128k
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/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
/freebsd-10.0-release/lib/libstdbuf/
H A Dstdbuf.c54 size_t bufsize; local
57 bufsize = 0;
64 bufsize = 0;
72 bufsize = strtol(bufmode, &unit, 0);
78 bufsize *= 1024 * 1024 * 1024;
81 bufsize *= 1024 * 1024;
84 bufsize *= 1024;
95 if (setvbuf(s, NULL, mode, bufsize) != 0)
/freebsd-10.0-release/contrib/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...]
/freebsd-10.0-release/contrib/ntp/include/isc/
H A Dstrerror.h38 isc__strerror(int num, char *buf, size_t bufsize);
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/rates/
H A Dtst.switchrate.d34 * Options and Tunables/bufsize;
46 #pragma D option bufsize=40
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/
H A Dtst.caller.d36 * Options and Tunables/bufsize;
41 #pragma D option bufsize=1000
H A Dtst.stack.d34 * Options and Tunables/bufsize;
39 #pragma D option bufsize=1000
H A Dtst.stackdepth.d35 * Options and Tunables/bufsize;
40 #pragma D option bufsize=1000

Completed in 135 milliseconds

1234567891011>>