Searched defs:BUFSIZE (Results 1 - 25 of 38) sorted by relevance

12

/illumos-gate/usr/src/cmd/dis/
H A Ddis_util.h46 #define BUFSIZE 1024 macro
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dpread.c46 #define BUFSIZE (1*1024) macro
48 #define BUFSIZE (4*1024) macro
51 static char buf[BUFSIZE];
65 count = (rsize < BUFSIZE ? rsize : BUFSIZE);
H A Dbioscd.c54 #define BUFSIZE (1 * BIOSCD_SECSIZE) macro
/illumos-gate/usr/src/lib/libcmd/common/
H A Drevlib.c29 #define BUFSIZE SF_BUFSIZE macro
40 char buff[BUFSIZE];
56 offset = rounddown(offset,BUFSIZE);
59 n = BUFSIZE;
103 offset -= BUFSIZE;
/illumos-gate/usr/src/cmd/adbgen/common/
H A Dadbgen4.c42 #define BUFSIZE 1024 /* gross enough to never be exceeded (we hope) */ macro
44 char buf1[BUFSIZE], buf2[BUFSIZE];
/illumos-gate/usr/src/cmd/cdrw/
H A Dutil.h42 #define BUFSIZE 32 macro
/illumos-gate/usr/src/lib/cfgadm_plugins/ac/common/
H A Dmema_prom.c61 #define BUFSIZE (MAXPROPSIZE + MAXVALSIZE + sizeof (u_int)) macro
63 char buf[BUFSIZE];
/illumos-gate/usr/src/cmd/lp/filter/postscript/postcomm/
H A Dpostcomm.h189 * used for reading the input files (changed with the -B option). BUFSIZE is
197 #define BUFSIZE 512 macro
/illumos-gate/usr/src/common/iscsi/
H A Dbase64.c112 #define BUFSIZE 12 macro
119 uint8_t tmp_out[BUFSIZE];
/illumos-gate/usr/src/cmd/eeprom/i386/
H A Dbenv_kvm.c48 #define BUFSIZE (MAXPROPSIZE + MAXVALSIZE + sizeof (u_int)) macro
53 char buf[BUFSIZE];
/illumos-gate/usr/src/lib/libfsmgt/common/
H A Dlibfsmgt.h43 #define BUFSIZE 65536 macro
/illumos-gate/usr/src/lib/libprtdiag/inc/
H A Dpdevinfo.h46 #define BUFSIZE (MAXPROPSIZE + MAXVALSIZE + sizeof (uint_t)) macro
48 char buf[BUFSIZE];
/illumos-gate/usr/src/cmd/vi/port/
H A Dexpreserve.c46 #define BUFSIZE (LINE_MAX*2) /* This should agree with what's in ex.h */ macro
178 unsigned char buf[BUFSIZE];
316 i = read(0, buf, BUFSIZE);
405 unsigned char cmd[BUFSIZE];
H A Dex_temp.c237 nleft = BUFSIZE - off;
306 unsigned char incorb[INCORB+1][BUFSIZE];
307 #define pagrnd(a) ((unsigned char *)(((int)a)&~(BUFSIZE-1)))
318 bcopy(pagrnd(incorb[b+1]), buf, BUFSIZE); local
321 bcopy(buf, pagrnd(incorb[b+1]), BUFSIZE);
330 lseek(tfile, (long)(unsigned)b * BUFSIZE, 0); local
331 if ((*iofcn)(tfile, buf, BUFSIZE) != BUFSIZE)
351 if (write(tfile, pagrnd(incorb[1]), i * BUFSIZE) != (i * BUFSIZE))
424 lseek(tfile, (long)(unsigned)*bp * BUFSIZE, 0); local
503 lseek(rfile, (long)b * BUFSIZE, 0); local
[all...]
H A Dexrecover.c78 unsigned char nb[BUFSIZE];
213 (void)lseek(tfile, (long) blocks[b] * BUFSIZE, 0); local
214 i = H.Flines < BUFSIZE / sizeof (line) ?
215 H.Flines * sizeof (line) : BUFSIZE;
456 unsigned char bestnb[BUFSIZE]; /* Name of the best one */
523 unsigned char dbuf[BUFSIZE];
588 (void)lseek(tfile, (long)(BUFSIZE*HBLKS-8), 0);
614 unsigned char bk[BUFSIZE];
630 (void)lseek(tfile, (long) BUFSIZE * bno, 0);
631 cnt = read(tfile, (char *) bk, BUFSIZE);
811 lseek(tfile, (long) (unsigned) b * BUFSIZE, 0); local
[all...]
/illumos-gate/usr/src/cmd/rctladm/
H A Drctladm.c72 #define BUFSIZE 256 macro
193 char buf[BUFSIZE];
194 char name[BUFSIZE+1], actions[BUFSIZE+1];
214 for (line = 1; fgets(buf, BUFSIZE, fp) != NULL; line++) {
227 " %" VAL2STR(BUFSIZE) "[^=]=%" VAL2STR(BUFSIZE) "s \n%n",
/illumos-gate/usr/src/cmd/eeprom/sparc/
H A Dopenprom.c40 #define BUFSIZE (MAXPROPSIZE + MAXVALSIZE + sizeof (uint_t)) macro
42 char buf[BUFSIZE];
154 char *nl, line[BUFSIZE];
229 (void) memset(oppbuf.buf, '\0', BUFSIZE);
/illumos-gate/usr/src/cmd/sendmail/aux/
H A Deditmap.c58 #define BUFSIZE 1024 macro
H A Dmakemap.c54 #define BUFSIZE 1024 macro
107 char ibuf[BUFSIZE];
/illumos-gate/usr/src/cmd/bnu/
H A Duudecode.c54 #define BUFSIZE 90 /* must be a multiple of 3 */ macro
291 unsigned char outbuf[BUFSIZE], *obp, *optr;
372 if (optr - outbuf > BUFSIZE - 3) {
/illumos-gate/usr/src/cmd/ndmpd/tlm/
H A Dtlm_traverse.c1057 #define BUFSIZE 32768 macro
1070 buf = ndmp_malloc(BUFSIZE);
1096 if (bytes_to_copy > BUFSIZE)
1097 nbytes = BUFSIZE;
/illumos-gate/usr/src/cmd/coreadm/
H A Dcoreadm.c494 * BUFSIZE must be large enough to contain the longest path plus some more.
496 #define BUFSIZE (PATH_MAX + 80) macro
516 char buf[BUFSIZE];
517 char name[BUFSIZE], value[BUFSIZE];
/illumos-gate/usr/src/cmd/cpc/common/
H A Dcputrack.c756 #define BUFSIZE 5 /* enough for "n " where n is a cpuid */ macro
774 char buf[BUFSIZE];
851 if ((cmd = malloc(strlen(OFFLINE_CMD) + (noffline * BUFSIZE) + 1))
865 (void) snprintf(buf, BUFSIZE, "%d", i);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dftp_var.h181 * BUFSIZE includes
193 #define BUFSIZE ((MAXPATHLEN)*2+MAXCMDLEN+4) macro
195 EXTERN char line[BUFSIZE]; /* input line buffer */
197 EXTERN char argbuf[BUFSIZE]; /* argument storage buffer */
/illumos-gate/usr/src/uts/common/io/usb/usba/
H A Dusbai_req.c1305 #define BUFSIZE 256 macro
1306 char *buf = kmem_alloc(BUFSIZE, KM_SLEEP);
1354 usb_str_cb_flags(ctrl_req->ctrl_cb_flags, buf, BUFSIZE),
1375 kmem_free(buf, BUFSIZE);

Completed in 107 milliseconds

12