| /src/external/bsd/libpcap/dist/ |
| pcap-usb-linux-common.h | 73 u_int bytes_left; local 81 bytes_left = phdr->caplen; 82 bytes_left -= sizeof (pcap_usb_header_mmapped); 97 desc < hdr->ndesc && bytes_left >= sizeof (usb_isodesc); 98 desc++, bytes_left -= sizeof (usb_isodesc)) {
|
| /src/sys/arch/atari/dev/ |
| md_root.c | 208 long bytes_left; local 213 bytes_left = rsp->nbytes; 217 while (bytes_left > 0) { 222 bp->b_bcount = uimin(rsp->chunk, bytes_left); 240 bytes_left -= done; 247 if ((rsp->offset == rsp->media_sz) && (bytes_left != 0)) {
|
| ncr5380.c | 1494 long bytes_left, bytes_done; local 1496 is_edma = get_dma_result(reqp, &bytes_left); 1524 bytes_done = reqp->dm_cur->dm_count - bytes_left;
|
| /src/sys/external/bsd/drm2/dist/drm/ttm/ |
| ttm_bo_vm.c | 376 unsigned long bytes_left = len; local 384 unsigned long bytes = min(bytes_left, PAGE_SIZE - offset); 403 bytes_left -= bytes; 405 } while (bytes_left);
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/ |
| ops-common.h | 393 size_t bytes_left = length; local 399 bytes_left, 0); 400 bytes_left -= bytes_copied; 402 while (bytes_left > 0 && bytes_copied > 0); 420 size_t bytes_left = length; local 425 bytes_copied = ::sendfile(fd_out, fd_in, &offset, bytes_left); 426 bytes_left -= bytes_copied; 428 while (bytes_left > 0 && bytes_copied > 0);
|
| /src/crypto/external/bsd/openssh/dist/ |
| progressmeter.c | 134 off_t bytes_left; local 153 bytes_left = end_pos - cur_pos; 159 if (bytes_left > 0) 213 else if (bytes_per_second == 0 && bytes_left) 216 if (bytes_left > 0) 217 seconds = bytes_left / bytes_per_second; 232 if (bytes_left > 0)
|
| /src/sys/dev/ic/ |
| atppc.c | 2283 int bytes_left; local 2302 bytes_left = (atppc->sc_fifo) - (i + 1); 2304 bytes_left)); 2307 atppc->sc_outbstart += (worklen - bytes_left);
|
| /src/usr.sbin/ndbootd/ |
| ndbootd.c | 179 unsigned int byte_count, bytes_left; local 190 for (bytes_left = byte_count; bytes_left >= sizeof(*_word);) { 192 bytes_left -= sizeof(*_word); 195 memcpy(&word, _word, bytes_left);
|
| /src/sys/arch/mac68k/dev/ |
| ncr5380.c | 1463 long bytes_left, bytes_done; local 1465 is_edma = get_dma_result(reqp, &bytes_left); 1492 bytes_done = reqp->dm_cur->dm_count - bytes_left;
|
| /src/sys/compat/linux/common/ |
| linux_file.c | 1079 size_t bytes_left, to_copy; local 1177 bytes_left = len; 1179 while (bytes_left > 0) { 1180 to_copy = MIN(bytes_left, LINUX_COPY_FILE_RANGE_MAX_CHUNK); 1231 bytes_left -= written_bytes;
|
| /src/sys/dev/usb/ |
| if_atu.c | 862 size_t bytes_left = 0; local 887 bytes_left = atu_radfirm[i].atur_internal_sz; 916 if (bytes_left>=DFU_MaxBlockSize) 919 block_size = bytes_left; 932 bytes_left -= block_size; 983 size_t bytes_left = 0; local 988 bytes_left = atu_radfirm[i].atur_external_sz; 997 while (bytes_left) { 998 if (bytes_left > 1024) 1001 block_size = bytes_left; [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/ft32/ |
| ft32.cc | 708 int bytes_left, size; local 724 bytes_left = (4 * 6) - ((*cum - 2) * 4); 726 if (size > bytes_left) 727 return bytes_left;
|
| /src/external/gpl3/gcc/dist/gcc/ginclude/ |
| unwind-arm-common.h | 162 _uw8 bytes_left; member in struct:__anon13764
|
| /src/external/gpl3/gcc.old/dist/gcc/config/ft32/ |
| ft32.cc | 705 int bytes_left, size; local 721 bytes_left = (4 * 6) - ((*cum - 2) * 4); 723 if (size > bytes_left) 724 return bytes_left;
|
| /src/external/gpl3/gcc.old/dist/gcc/ginclude/ |
| unwind-arm-common.h | 161 _uw8 bytes_left; member in struct:__anon16192
|
| /src/external/cddl/osnet/dist/lib/libzfs/common/ |
| libzfs_pool.c | 2220 size_t bytes_left, pos, rsz; local 2229 bytes_left = physpath_size - pos; 2232 rsz = snprintf(physpath + pos, bytes_left, format, tmppath); 2235 if (rsz >= bytes_left) { 2237 if (bytes_left != 0) {
|
| /src/external/gpl3/gcc/dist/libgfortran/io/ |
| transfer.c | 286 dtp->u.p.current_unit->bytes_left--; 303 dtp->u.p.current_unit->bytes_left -= n; 330 dtp->u.p.current_unit->bytes_left -= *length; 462 || dtp->u.p.current_unit->bytes_left 472 dtp->u.p.current_unit->bytes_left -= n; 505 if (dtp->u.p.current_unit->bytes_left < (gfc_offset) *nbytes) 511 dtp->u.p.current_unit->bytes_left = dtp->u.p.current_unit->recl; 525 if (*nbytes > 0 && dtp->u.p.current_unit->bytes_left == 0) 536 if (unlikely (dtp->u.p.current_unit->bytes_left == 0)) 543 *nbytes = dtp->u.p.current_unit->bytes_left; 3868 gfc_offset bytes_left = dtp->u.p.current_unit->bytes_left; local 4050 gfc_offset bytes_left; local [all...] |
| unix.c | 332 ssize_t bytes_left = nbyte; local 334 while (bytes_left > 0) 336 ssize_t to_read = bytes_left < MAX_CHUNK ? bytes_left: MAX_CHUNK; 346 bytes_left -= trans; 348 return nbyte - bytes_left; 355 ssize_t trans, bytes_left; local 358 bytes_left = nbyte; 365 while (bytes_left > 0) 367 ssize_t to_write = bytes_left < MAX_CHUNK ? bytes_left: MAX_CHUNK [all...] |
| io.h | 672 bytes_left -- Bytes left in current record. 676 gfc_offset recl, last_record, maxrec, bytes_left, strm_pos, member in struct:gfc_unit
|
| /src/external/gpl3/gcc.old/dist/libgfortran/io/ |
| transfer.c | 286 dtp->u.p.current_unit->bytes_left--; 303 dtp->u.p.current_unit->bytes_left -= n; 330 dtp->u.p.current_unit->bytes_left -= *length; 462 || dtp->u.p.current_unit->bytes_left 472 dtp->u.p.current_unit->bytes_left -= n; 505 if (dtp->u.p.current_unit->bytes_left < (gfc_offset) *nbytes) 511 dtp->u.p.current_unit->bytes_left = dtp->u.p.current_unit->recl; 525 if (*nbytes > 0 && dtp->u.p.current_unit->bytes_left == 0) 536 if (unlikely (dtp->u.p.current_unit->bytes_left == 0)) 543 *nbytes = dtp->u.p.current_unit->bytes_left; 3811 gfc_offset bytes_left = dtp->u.p.current_unit->bytes_left; local 3993 gfc_offset bytes_left; local [all...] |
| unix.c | 332 ssize_t bytes_left = nbyte; local 334 while (bytes_left > 0) 336 ssize_t to_read = bytes_left < MAX_CHUNK ? bytes_left: MAX_CHUNK; 346 bytes_left -= trans; 348 return nbyte - bytes_left; 355 ssize_t trans, bytes_left; local 358 bytes_left = nbyte; 365 while (bytes_left > 0) 367 ssize_t to_write = bytes_left < MAX_CHUNK ? bytes_left: MAX_CHUNK [all...] |
| io.h | 673 bytes_left -- Bytes left in current record. 677 gfc_offset recl, last_record, maxrec, bytes_left, strm_pos, member in struct:gfc_unit
|
| /src/external/gpl3/gcc/dist/gcc/config/bfin/ |
| bfin.cc | 1724 int bytes_left = get_cumulative_args (cum)->nregs * UNITS_PER_WORD; 1729 if (bytes_left == 0) 1731 if (bytes > bytes_left) 1732 return bytes_left; 1720 int bytes_left = get_cumulative_args (cum)->nregs * UNITS_PER_WORD; local
|
| /src/external/gpl3/gcc.old/dist/gcc/config/bfin/ |
| bfin.cc | 1724 int bytes_left = get_cumulative_args (cum)->nregs * UNITS_PER_WORD; 1729 if (bytes_left == 0) 1731 if (bytes > bytes_left) 1732 return bytes_left; 1720 int bytes_left = get_cumulative_args (cum)->nregs * UNITS_PER_WORD; local
|