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

1234567891011>>

/freebsd-11-stable/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 Dtst.resize1.d33 * Options and Tunables/bufsize;
38 #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
/freebsd-11-stable/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-11-stable/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-11-stable/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-11-stable/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-11-stable/lib/libc/gen/
H A Dgetmntinfo.c49 static long bufsize; local
53 if (bufsize > 0 && (mntsize = getfsstat(mntbuf, bufsize, mode)) < 0)
55 while (bufsize <= mntsize * sizeof(struct statfs)) {
58 bufsize = (mntsize + 1) * sizeof(struct statfs);
59 if ((mntbuf = malloc(bufsize)) == NULL)
61 if ((mntsize = getfsstat(mntbuf, bufsize, mode)) < 0)
/freebsd-11-stable/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-11-stable/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-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/
H A Dtst.genericevent.d37 #pragma D option bufsize=128k
/freebsd-11-stable/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-11-stable/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-11-stable/lib/libc/tests/string/
H A Dstpncpy_test.c60 size_t size, len, bufsize, x; local
66 for (bufsize = 0; bufsize <= size + 10; bufsize++) {
69 dst = makebuf(bufsize, j);
70 memset(dst, 'X', bufsize);
71 len = (bufsize < size) ? bufsize : size - 1;
72 assert(stpncpy(dst, src, bufsize) == dst+len);
74 for (x = len; x < bufsize;
[all...]
H A Dwcsnlen_test.c61 size_t size, len, bufsize; local
66 for (bufsize = 0; bufsize <= size + 10; bufsize++) {
67 s1 = makebuf(bufsize * sizeof(wchar_t), i);
68 wmemcpy(s1, s, bufsize <= size ? bufsize : size);
69 len = (size > bufsize) ? bufsize : size - 1;
70 ATF_CHECK(wcsnlen(s1, bufsize)
[all...]
/freebsd-11-stable/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);
153 static char *apr_os_strerror(char* buf, apr_size_t bufsize, int err) argument
162 return stuffbuffer(buf, bufsize,
190 return stuffbuffer(buf, bufsize, result);
252 static char *apr_os_strerror(char *buf, apr_size_t bufsize, apr_status_t errcode) argument
264 (DWORD)bufsize,
274 (DWORD) (bufsize/sizeof(TCHAR)),
290 apr_cpystrn(buf, gaErrorList[i].msg, bufsize);
314 apr_snprintf(buf, bufsize, "Unrecognize
324 apr_os_strerror(char* buf, apr_size_t bufsize, int err) argument
357 native_strerror(apr_status_t statcode, char *buf, apr_size_t bufsize) argument
379 native_strerror(apr_status_t statcode, char *buf, apr_size_t bufsize) argument
397 native_strerror(apr_status_t statcode, char *buf, apr_size_t bufsize) argument
416 apr_strerror(apr_status_t statcode, char *buf, apr_size_t bufsize) argument
[all...]
/freebsd-11-stable/contrib/netbsd-tests/fs/nfs/nfsservice/
H A Dgetmntinfo.c64 static size_t bufsize; local
71 if (bufsize > 0 &&
72 (mntsize = getvfsstat(mntbuf, bufsize, flags)) == -1)
74 while (bufsize <= mntsize * sizeof(struct statvfs)) {
77 bufsize = (mntsize + 1) * sizeof(struct statvfs);
78 if ((mntbuf = malloc(bufsize)) == NULL)
80 if ((mntsize = getvfsstat(mntbuf, bufsize, flags)) == -1)
/freebsd-11-stable/contrib/netbsd-tests/kernel/
H A Dt_sysctl.c40 ATF_TC(bufsize); variable
41 ATF_TC_HEAD(bufsize, tc)
46 ATF_TC_BODY(bufsize, tc)
71 ATF_TP_ADD_TC(tp, bufsize);
/freebsd-11-stable/contrib/ntp/lib/isc/unix/include/isc/
H A Dstrerror.h41 isc__strerror(int num, char *buf, size_t bufsize);
/freebsd-11-stable/contrib/ntp/lib/isc/win32/include/isc/
H A Dstrerror.h38 isc__strerror(int num, char *buf, size_t bufsize);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/rates/
H A Dtst.switchrate.d34 * Options and Tunables/bufsize;
46 #pragma D option bufsize=40

Completed in 135 milliseconds

1234567891011>>