HomeSort by: relevance | last modified time | path
    Searched defs:leftover (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/external/bsd/unbound/dist/util/
timeval_func.c 79 long long leftover; local
88 leftover = sum->tv_sec - avg->tv_sec*d;
89 if(leftover <= 0)
90 leftover = 0;
91 avg->tv_usec += (((long long)leftover)*((long long)1000000))/d;
  /src/sys/dev/ic/
mx98905.c 176 int l, leftover; local
198 /* Start out with no leftover data. */
199 leftover = 0;
211 if (leftover) {
215 * byte, and write it and the leftover
223 leftover = 0;
229 leftover = 1;
237 leftover = len & 1;
244 if (leftover)
246 l -= len + leftover;
    [all...]
ne2000.c 351 * I don't know if this is necessary; probably cruft leftover from
613 int l, leftover; local
617 /* Start out with no leftover data. */
618 leftover = 0;
630 if (leftover) {
635 * leftover data out.
642 leftover = 0;
651 leftover = 1;
658 leftover = l & 1;
664 if (leftover)
    [all...]
we.c 346 int savelen, len, leftover; local
370 /* Start out with no leftover data. */
371 leftover = 0;
383 if (leftover) {
387 * the leftover data out.
394 leftover = 0;
402 leftover = 1;
409 leftover = len & 1;
415 if (leftover)
427 if (leftover) {
    [all...]
mb86960.c 1452 int leftover; local
1454 leftover = 0;
1463 if (leftover) {
1468 * leftover data out.
1474 leftover = 0;
1482 leftover = 1;
1489 leftover = len & 1;
1495 if (leftover)
1503 if (leftover) {
cs89x0.c 2007 int len, leftover, frameoff; local
2017 /* Start out with no leftover data */
2018 leftover = 0;
2031 if (leftover) {
2035 * the leftover data out.
2046 leftover = 0;
2051 leftover = 1;
2059 leftover = len & 1;
2070 if (leftover)
2082 if (leftover) {
    [all...]
smc91cxx.c 787 int len, leftover; local
794 /* Start out with no leftover data */
795 leftover = 0;
808 if (leftover) {
812 * the leftover data out.
817 leftover = 0;
822 leftover = 1;
830 leftover = len & 1;
836 if (leftover)
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/donna/
poly1305_donna64.h 29 unsigned long long leftover; member in struct:poly1305_state_internal_t
57 st->leftover = 0;
143 if (st->leftover) {
144 unsigned long long i = st->leftover;
poly1305_donna32.h 23 unsigned long long leftover; member in struct:poly1305_state_internal_t
51 st->leftover = 0;
148 if (st->leftover) {
149 unsigned long long i = st->leftover;
  /src/external/bsd/ntp/dist/adjtimed/
adjtimed.c 281 register long rate, dt, leftover; local
290 if (verbose > 2) printf("adjtimed: leftover %ldus\n", leftover);
291 if (sysdebug > 2) msyslog(LOG_INFO, "leftover %ldus", leftover);
  /src/sys/dev/isa/
if_ec.c 575 int savelen, len, leftover; local
606 /* Start out with no leftover data. */
607 leftover = 0;
619 if (leftover) {
623 * the leftover data out.
630 leftover = 0;
638 leftover = 1;
645 leftover = len & 1;
651 if (leftover)
663 if (leftover) {
    [all...]
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
spa_history.c 347 uint64_t leftover = 0; local
397 * use 'leftover' to read from the physical BOF.
405 leftover = MIN(*len - read_len,
412 *offp += read_len + leftover;
415 *len = read_len + leftover;
425 if (leftover && err == 0) {
427 leftover, buf + read_len, DMU_READ_PREFETCH);
  /src/sys/arch/atari/dev/
atari5380.c 438 u_long leftover; local
442 leftover = get_scsi_dma(SCSI_DMA->s_dma_cnt);
451 if (leftover != 0) {
463 * leftover is 1 too low.
465 * leftover is odd. This assumes that DMA transfers are _even_! This
469 if ((leftover & 1) &&
471 leftover++;
489 *bytes_left = leftover;
  /src/sys/dev/sbus/
tcx.c 908 int i, last, first, len, dest, leftover; local
912 leftover = i & 0x1f;
920 if (leftover > 0) {
922 (uint64_t)((leftover - 1) << 24) |
940 if (leftover > 0) {
942 (uint64_t)((leftover - 1) << 24) | (uint64_t)i;
954 int i, last, first, len, leftover; local
958 leftover = i & 0x1f;
968 if (leftover > 0) {
969 temp &= 0xffffffffffffffffLL << (32 - leftover);
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/sse2/
poly1305_sse2.c 50 unsigned long long leftover; /* 8 bytes */ member in struct:poly1305_state_internal_t
192 st->leftover = 0U;
764 /* handle leftover */
765 if (st->leftover) {
766 unsigned long long want = (poly1305_block_size - st->leftover);
772 st->buffer[st->leftover + i] = m[i];
776 st->leftover += want;
777 if (st->leftover < poly1305_block_size) {
781 st->leftover = 0;
793 /* store leftover */
    [all...]
  /src/external/gpl2/texinfo/dist/info/
window.c 180 leftover amount of change. Change the width of each window to be
250 /* Give the leftover space (if any) to the last window. */
513 int numwins, avail, per_win_height, leftover; local
533 leftover = avail - (per_win_height * numwins);
547 last_adjusted->height += leftover;
  /src/external/cddl/osnet/dist/lib/libzfs/common/
libzfs_pool.c 3693 * into 'records'. 'leftover' is set to the number of bytes that weren't
3697 zpool_history_unpack(char *buf, uint64_t bytes_read, uint64_t *leftover,
3728 *leftover = bytes_read;
3754 uint64_t leftover; local
3764 &leftover, &records, &numrecords)) != 0)
3766 off -= leftover;
3767 if (leftover == bytes_read) {
  /src/external/gpl3/gcc/dist/gcc/config/m32r/
m32r.cc 2549 int leftover;
2572 leftover = bytes % MAX_MOVE_BYTES;
2573 bytes -= leftover;
2622 if (leftover)
2623 emit_insn (gen_cpymemsi_internal (dst_reg, src_reg, GEN_INT (leftover),
2526 int leftover; local
  /src/external/gpl3/gcc.old/dist/gcc/config/m32r/
m32r.cc 2547 int leftover;
2570 leftover = bytes % MAX_MOVE_BYTES;
2571 bytes -= leftover;
2620 if (leftover)
2621 emit_insn (gen_cpymemsi_internal (dst_reg, src_reg, GEN_INT (leftover),
2524 int leftover; local
  /src/external/gpl3/gcc/dist/gcc/config/microblaze/
microblaze.cc 1225 HOST_WIDE_INT leftover; local
1227 leftover = length % MAX_MOVE_BYTES;
1228 length -= leftover;
1255 if (leftover)
1256 microblaze_block_move_straight (dest, src, leftover);
  /src/external/gpl3/gcc.old/dist/gcc/config/microblaze/
microblaze.cc 1220 HOST_WIDE_INT leftover; local
1222 leftover = length % MAX_MOVE_BYTES;
1223 length -= leftover;
1250 if (leftover)
1251 microblaze_block_move_straight (dest, src, leftover);
  /src/external/gpl3/gcc.old/dist/gcc/config/tilegx/
tilegx.cc 1682 unsigned HOST_WIDE_INT leftover;
1690 leftover = val - ((val >> shift) << shift);
1691 if (leftover == 0)
1698 else if (leftover <= 32767)
1700 /* Left shift into position then add in the leftover. */
1705 gen_rtx_PLUS (DImode, temp2, GEN_INT (leftover)));
1678 unsigned HOST_WIDE_INT leftover; local
  /src/external/gpl3/gcc.old/dist/gcc/config/loongarch/
loongarch.cc 4008 HOST_WIDE_INT leftover; local
4010 leftover = length % bytes_per_iter;
4011 length -= leftover;
4043 if (leftover)
4044 loongarch_block_move_straight (dest, src, leftover);
  /src/external/gpl3/gcc.old/dist/gcc/config/riscv/
riscv.cc 3468 unsigned HOST_WIDE_INT leftover;
3470 leftover = length % bytes_per_iter;
3471 length -= leftover;
3498 if (leftover)
3499 riscv_block_move_straight (dest, src, leftover);
3465 unsigned HOST_WIDE_INT leftover; local
  /src/external/gpl3/gcc/dist/gcc/config/alpha/
alpha.cc 7851 HOST_WIDE_INT leftover = probed_size + 4096 - blocks * 8192;
7863 if ((leftover > 4096 && sa_size == 0)
7867 plus_constant (Pmode, ptr, -leftover));
7889 GEN_INT (-leftover)));
7834 HOST_WIDE_INT leftover = probed_size + 4096 - blocks * 8192; local

Completed in 103 milliseconds

1 2