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

  /src/usr.bin/head/
head.c 77 intmax_t bytecnt; local in function:main
86 bytecnt = 0;
91 bytecnt = strtoimax(optarg, &ep, 10);
92 if ((bytecnt == INTMAX_MAX && errno == ERANGE) ||
93 *ep || bytecnt <= 0)
134 head(fp, linecnt, bytecnt);
138 head(stdin, linecnt, bytecnt);
143 head(FILE *fp, intmax_t cnt, intmax_t bytecnt)
149 if (bytecnt) {
150 while (bytecnt) {
    [all...]
  /src/usr.bin/split/
split.c 78 off_t bytecnt = 0; /* Byte count to split on. */ local in function:main
110 (bytecnt = strtoull(optarg, &ep, 10)) == 0 ||
114 bytecnt *= 1024;
116 bytecnt *= 1024 * 1024;
156 else if (bytecnt || chunks)
159 if (bytecnt && chunks)
162 if (bytecnt)
163 split1(bytecnt, 0);
177 split1(off_t bytecnt, int maxcnt)
203 if (bcnt + len >= bytecnt) {
    [all...]
  /src/sys/arch/mac68k/include/
adbsys.h 161 int bytecnt; /* number of bytes */ member in struct:adb_listencmd_s
  /src/sys/arch/macppc/include/
adbsys.h 168 int bytecnt; /* number of bytes */ member in struct:adb_listencmd_s
  /src/sys/netinet6/
ip6_mroute.h 187 u_quad_t bytecnt; member in struct:sioc_sg_req6
  /src/sys/netinet/
ip_mroute.h 180 u_long bytecnt; member in struct:sioc_sg_req
  /src/sys/compat/netbsd32/
netbsd32_ioctl.h 543 netbsd32_u_long bytecnt; member in struct:netbsd32_sioc_sg_req
  /src/sys/dev/marvell/
if_mvxpereg.h 797 uint16_t bytecnt; /* 0ff 0x04: buffer byte count */ member in struct:mvxpe_tx_desc
810 uint16_t bytecnt; /* buffer byte count */ member in struct:mvxpe_rx_desc
mvgbereg.h 787 uint16_t bytecnt; /* Descriptor buffer byte count */ member in struct:mvgbe_tx_desc
795 uint16_t bytecnt; /* Descriptor buffer byte count */
804 uint16_t bytecnt; /* Descriptor buffer byte count */ member in struct:mvgbe_rx_desc
812 uint16_t bytecnt; /* Descriptor buffer byte count */
  /src/sys/dev/pci/
if_wm.c 2353 pcireg_t pcix_cmd, pcix_sts, bytecnt, maxb; local in function:wm_attach
2372 bytecnt = (pcix_cmd & PCIX_CMD_BYTECNT_MASK) >>
2376 if (bytecnt > maxb) {
2379 512 << bytecnt, 512 << maxb);

Completed in 178 milliseconds