/src/tests/usr.bin/nbperf/ |
hash_driver.c | 43 size_t buflen; local in function:main 46 while ((len = getline(&line, &buflen, stdin)) > 0) {
|
hash_driver.c | 43 size_t buflen; local in function:main 46 while ((len = getline(&line, &buflen, stdin)) > 0) {
|
/src/lib/libc/net/ |
hostent.h | 60 size_t buflen; member in struct:getnamaddr
|
hostent.h | 60 size_t buflen; member in struct:getnamaddr
|
/src/lib/libkvm/ |
kvm_file.c | 84 size_t buflen = kd->argspc_len, n = 0; local in function:kvm_deadfiles 92 if (buflen < sizeof(fhead) || 97 buflen -= sizeof(fhead); 105 if (buflen > sizeof(struct file)) { 111 buflen -= sizeof(struct file);
|
kvm_file.c | 84 size_t buflen = kd->argspc_len, n = 0; local in function:kvm_deadfiles 92 if (buflen < sizeof(fhead) || 97 buflen -= sizeof(fhead); 105 if (buflen > sizeof(struct file)) { 111 buflen -= sizeof(struct file);
|
/src/sys/arch/ia64/stand/common/ |
ls.c | 107 size_t buflen; local in function:command_ls 110 buflen = strlen(path) + strlen(d->d_name) + 2; 111 buf = alloc(buflen); 112 snprintf(buf, buflen, "%s/%s", path, d->d_name);
|
ls.c | 107 size_t buflen; local in function:command_ls 110 buflen = strlen(path) + strlen(d->d_name) + 2; 111 buf = alloc(buflen); 112 snprintf(buf, buflen, "%s/%s", path, d->d_name);
|
/src/sys/compat/common/ |
sysv_ipc_50.c | 90 size_t infosize, dssize, tsize, buflen; local in function:sysctl_kern_sysvipc50 100 buflen = *sizep; 148 if (buflen < infosize) { 152 bf = malloc(uimin(tsize, buflen), M_TEMP, M_WAITOK | M_ZERO); 174 buflen -= infosize; 177 if (buflen > 0) { 180 if (buflen < dssize) { 203 buflen -= dssize; 206 *sizep -= buflen;
|
sysv_ipc_50.c | 90 size_t infosize, dssize, tsize, buflen; local in function:sysctl_kern_sysvipc50 100 buflen = *sizep; 148 if (buflen < infosize) { 152 bf = malloc(uimin(tsize, buflen), M_TEMP, M_WAITOK | M_ZERO); 174 buflen -= infosize; 177 if (buflen > 0) { 180 if (buflen < dssize) { 203 buflen -= dssize; 206 *sizep -= buflen;
|
/src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/ |
crypto_generichash_blake2b.h | 28 size_t buflen; member in struct:crypto_generichash_blake2b_state
|
crypto_generichash_blake2b.h | 28 size_t buflen; member in struct:crypto_generichash_blake2b_state
|
/src/sys/kern/ |
sys_getrandom.c | 202 syscallarg(size_t) buflen; 206 size_t buflen = SCARG(uap, buflen); local in function:sys_getrandom 211 struct iovec iov = { .iov_base = buf, .iov_len = buflen }; 216 .uio_resid = buflen, 241 *retval = buflen - uio.uio_resid;
|
sys_getrandom.c | 202 syscallarg(size_t) buflen; 206 size_t buflen = SCARG(uap, buflen); local in function:sys_getrandom 211 struct iovec iov = { .iov_base = buf, .iov_len = buflen }; 216 .uio_resid = buflen, 241 *retval = buflen - uio.uio_resid;
|
/src/sys/opencrypto/ |
aesxcbcmac.h | 13 size_t buflen; member in struct:__anon3c94b97d0108
|
aesxcbcmac.h | 13 size_t buflen; member in struct:__anon3c94b97d0108
|
/src/tests/lib/libc/locale/ |
t_io.c | 134 size_t buflen; member in struct:ibuf 142 size_t todo = MIN((size_t)len, ib->buflen - ib->off); 160 .buflen = sizeof(buf), 188 .buflen = sizeof(buf),
|
t_io.c | 134 size_t buflen; member in struct:ibuf 142 size_t todo = MIN((size_t)len, ib->buflen - ib->off); 160 .buflen = sizeof(buf), 188 .buflen = sizeof(buf),
|
/src/lib/libc/rpc/ |
clnt_perror.c | 72 static size_t buflen; variable in typeref:typename:size_t 81 buflen = 256; 83 buf = malloc(buflen); 102 str = _buf(); /* side effect: sets "buflen" */ 105 len = buflen; 253 str = _buf(); /* side effect: sets "buflen" */ 256 len = buflen;
|
clnt_perror.c | 72 static size_t buflen; variable in typeref:typename:size_t 81 buflen = 256; 83 buf = malloc(buflen); 102 str = _buf(); /* side effect: sets "buflen" */ 105 len = buflen; 253 str = _buf(); /* side effect: sets "buflen" */ 256 len = buflen;
|
/src/sys/arch/ia64/stand/efi/libefi/ |
devicename.c | 219 size_t len, buflen = sizeof(buf); local in function:efi_fmtdev 227 len = snprintf(buf, buflen, "%s%d", dev->d_dev->dv_name, dev->d_kind.efidisk.unit); 228 if (len > buflen) 229 len = buflen; 231 len += snprintf(buf + len, buflen - len, "s%d", dev->d_kind.efidisk.slice); 232 if (len > buflen) 233 len = buflen; 236 len += snprintf(buf + len, buflen - len, "%c", dev->d_kind.efidisk.partition + 'a'); 237 if (len > buflen) 238 len = buflen; [all...] |
devicename.c | 219 size_t len, buflen = sizeof(buf); local in function:efi_fmtdev 227 len = snprintf(buf, buflen, "%s%d", dev->d_dev->dv_name, dev->d_kind.efidisk.unit); 228 if (len > buflen) 229 len = buflen; 231 len += snprintf(buf + len, buflen - len, "s%d", dev->d_kind.efidisk.slice); 232 if (len > buflen) 233 len = buflen; 236 len += snprintf(buf + len, buflen - len, "%c", dev->d_kind.efidisk.partition + 'a'); 237 if (len > buflen) 238 len = buflen; [all...] |
/src/sys/arch/ia64/stand/ia64/ski/ |
devicename.c | 214 size_t len, buflen = sizeof(buf); local in function:ski_fmtdev 218 strlcpy(buf, "(no device)", buflen); 222 len = snprintf(buf, buflen, "%s%d", dev->d_dev->dv_name, dev->d_kind.skidisk.unit); 223 if (len > buflen) 224 len = buflen; 226 len += snprintf(buf + len, buflen - len, "s%d", dev->d_kind.skidisk.slice); 227 if (len > buflen) 228 len = buflen; 231 len += snprintf(buf + len, buflen - len, "%c", dev->d_kind.skidisk.partition + 'a'); 232 if (len > buflen) [all...] |
devicename.c | 214 size_t len, buflen = sizeof(buf); local in function:ski_fmtdev 218 strlcpy(buf, "(no device)", buflen); 222 len = snprintf(buf, buflen, "%s%d", dev->d_dev->dv_name, dev->d_kind.skidisk.unit); 223 if (len > buflen) 224 len = buflen; 226 len += snprintf(buf + len, buflen - len, "s%d", dev->d_kind.skidisk.slice); 227 if (len > buflen) 228 len = buflen; 231 len += snprintf(buf + len, buflen - len, "%c", dev->d_kind.skidisk.partition + 'a'); 232 if (len > buflen) [all...] |
/src/usr.sbin/installboot/arch/ |
vax.c | 288 size_t buflen; local in function:load_bootstrap 290 buflen = 512 * (VAX_BOOT_SIZE + 1); 291 *data = malloc(buflen); 293 warn("Allocating %lu bytes", (unsigned long) buflen); 297 cc = pread(params->s1fd, *data, buflen, 0);
|