HomeSort by relevance Sort by last modified time
    Searched refs:cbsz (Results 1 - 4 of 4) sorted by null

  /system/core/toolbox/upstream-netbsd/bin/dd/
conv.c 110 * Copy variable length newline terminated records with a max size cbsz
113 * max in buffer: MAX(ibs, cbsz)
114 * max out buffer: obs + cbsz
146 * Copy records (max cbsz size chunks) into the output buffer. The
150 maxlen = MIN(cbsz, in.dbcnt);
163 if (ch != '\n' && in.dbcnt < cbsz) {
174 if (cnt < cbsz)
175 (void)memset(outp, ctab ? ctab[' '] : ' ', cbsz - cnt);
193 out.dbp += cbsz;
194 if ((out.dbcnt += cbsz) >= out.dbsz
    [all...]
extern.h 73 extern uint64_t cbsz;
dd.c 84 uint64_t cbsz; /* conversion block size */ variable
224 malloc((u_int)(MAX(in.dbsz, cbsz) + cbsz))) == NULL ||
225 (out.db = malloc((u_int)(out.dbsz + cbsz))) == NULL) {
args.c 227 cbsz = strsuftoll("conversion record size", arg, 1, UINT_MAX);

Completed in 73 milliseconds