OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BUFLEN
(Results
1 - 10
of
10
) sorted by relevancy
/src/usr.bin/gzip/
unbzip2.c
43
inbuf = malloc(
BUFLEN
);
45
outbuf = malloc(
BUFLEN
);
70
n = read(in, inbuf,
BUFLEN
);
83
bzs.avail_out =
BUFLEN
;
101
if (!tflag && bzs.avail_out !=
BUFLEN
) {
104
n = write(out, outbuf,
BUFLEN
- bzs.avail_out);
gzip.c
128
#define
BUFLEN
(64 * 1024)
590
outbufp = malloc(
BUFLEN
);
591
inbufp = malloc(
BUFLEN
);
611
i = snprintf(outbufp,
BUFLEN
, "%c%c%c%c%c%c%c%c%c%c%s",
620
if (i >=
BUFLEN
)
621
/* this need PATH_MAX >
BUFLEN
... */
628
z.avail_out =
BUFLEN
- i;
642
if (write_retry(out, outbufp,
BUFLEN
) !=
BUFLEN
) {
648
out_tot +=
BUFLEN
;
[
all
...]
/src/tests/lib/libc/locale/
t_ducet.c
91
#define
BUFLEN
1024
99
wchar_t xfb1[
BUFLEN
], xfb2[
BUFLEN
]; /* Gross overestimates */
106
memset(xfb1, 0,
BUFLEN
);
107
memset(xfb2, 0,
BUFLEN
);
124
wcsxfrm(xf, line,
BUFLEN
);
/src/distrib/utils/zcat/
zcat.c
24
#define
BUFLEN
4096
56
char buf[
BUFLEN
];
/src/common/dist/zlib/test/
minigzip.c
135
#define
BUFLEN
16384
214
unsigned char out[
BUFLEN
];
223
strm->avail_out =
BUFLEN
;
225
fwrite(out, 1,
BUFLEN
- strm->avail_out, gz->file);
263
unsigned char out[
BUFLEN
];
273
strm->avail_out =
BUFLEN
;
275
fwrite(out, 1,
BUFLEN
- strm->avail_out, gz->file);
342
local char buf[
BUFLEN
];
370
local char buf[
BUFLEN
];
/src/usr.sbin/bootp/bootptest/
bootptest.c
76
#define
BUFLEN
1024
166
sndbuf = malloc(
BUFLEN
);
167
rcvbuf = malloc(
BUFLEN
);
356
n =
BUFLEN
- sizeof(*bp) + BP_VEND_LEN;
405
n = recvfrom(s, rcvbuf,
BUFLEN
, 0,
/src/usr.sbin/tcpdchk/
tcpdchk.c
70
#define
BUFLEN
2048
213
char sv_list[
BUFLEN
]; /* becomes list of daemons */
284
char buf[
BUFLEN
];
304
char buf[
BUFLEN
];
331
char buf[
BUFLEN
];
/src/sys/arch/atari/stand/ahdilabel/
ahdilabel.c
368
#define
BUFLEN
20
370
char buf[
BUFLEN
], cts[CTSLEN];
384
if (get_input (&buf[0],
BUFLEN
) > 2) {
392
if (get_input (&buf[0],
BUFLEN
)) {
399
if (get_input (&buf[0],
BUFLEN
)) {
407
if (get_input (&buf[0],
BUFLEN
)) {
414
if (get_input (&buf[0],
BUFLEN
)) {
/src/usr.sbin/makemandb/
makemandb.c
44
#define
BUFLEN
1024
53
size_t
buflen
; //Total length of buffer allocated initially
member in struct:secbuff
712
size_t
buflen
;
local
771
if (read_and_decompress(file, &buf, &
buflen
)) {
780
md5_status = check_md5(file, db, &md5sum, buf,
buflen
);
1810
check_md5(const char *file, sqlite3 *db, char **md5, void *buf, size_t
buflen
)
1820
if ((mymd5 = MD5Data(buf,
buflen
, NULL)) == NULL) {
1917
* Sets the value of
buflen
for all the sec_buff field of rec. And then
1927
* Therefore explicitly setting the value of
buflen
field for
1930
rec->desc.
buflen
= 10 * BUFLEN
[
all
...]
/src/lib/libwrap/
hosts_access.c
105
#define
BUFLEN
2048
173
char sv_list[
BUFLEN
]; /* becomes list of daemons */
Completed in 30 milliseconds
Indexes created Mon Feb 23 16:20:21 UTC 2026