HomeSort by: relevance | last modified time | path
    Searched defs:BUFLEN (Results 1 - 9 of 9) sorted by relevancy

  /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/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/lib/libwrap/
hosts_access.c 105 #define BUFLEN 2048
173 char sv_list[BUFLEN]; /* becomes list of daemons */
  /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/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/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/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 in function:update_db
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/usr.bin/gzip/
gzip.c 128 #define BUFLEN (64 * 1024)
588 outbufp = malloc(BUFLEN);
589 inbufp = malloc(BUFLEN);
609 i = snprintf(outbufp, BUFLEN, "%c%c%c%c%c%c%c%c%c%c%s",
618 if (i >= BUFLEN)
619 /* this need PATH_MAX > BUFLEN ... */
626 z.avail_out = BUFLEN - i;
640 if (write_retry(out, outbufp, BUFLEN) != BUFLEN) {
646 out_tot += BUFLEN;
    [all...]

Completed in 17 milliseconds