Searched refs:total (Results 76 - 100 of 354) sorted by path

1234567891011>>

/freebsd-11-stable/contrib/ncurses/ncurses/tty/
H A Dlib_mvcur.c516 repeated_append(string_desc * target, int total, int num, int repeat, const char *src) argument
523 total += num;
525 total = INFINITY;
530 total = INFINITY;
532 return total;
1302 * expected line speed. The `total estimated time' is
1308 * optimizer's effectiveness. Compare the total estimated times
1370 printf("%6d bps: %3.2f char-xmits overhead; total estimated time %15.2f\n",
H A Dtty_update.c113 static int ClrBottom(SCREEN *, int total);
120 static int ClrBottom(int total);
1143 * ClrBottom(total)
1150 ClrBottom(NCURSES_SP_DCLx int total) argument
1154 int top = total;
1156 NCURSES_CH_T blank = NewScreen(SP_PARM)->_line[total - 1].text[last - 1];
1161 for (row = total - 1; row >= 0; row--) {
1176 if (top < total) {
/freebsd-11-stable/contrib/ncurses/progs/
H A Dtic.c1018 /* Show the directory into which entries were written, and the total
1023 int total = _nc_tic_written(); local
1024 if (total != 0)
1026 total,
/freebsd-11-stable/contrib/netbsd-tests/bin/df/
H A Dgetmntinfo.c69 int64_t total, used; local
77 total = (int64_t)(u_long)sf->f_blocks * sf->f_bsize;
78 used = total * consumed[j] / 100;
79 sf->f_bfree = (total - used) / sf->f_bsize;
80 sf->f_bavail = (total * (100 - minfree[i]) / 100 -
/freebsd-11-stable/contrib/netbsd-tests/kernel/
H A Dt_ptrace_wait.h392 unsigned total = dsum(n); local
394 if (total == HAPPY_NUMBER)
396 if (total == SAD_NUMBER)
399 n = total;
H A Dt_pty.c191 size_t total = 0; local
244 total += size;
250 (void)printf("child: closing TTY %zu\n", total);
254 if (total != buffer_size * packets)
256 "Lost data %zu != %zu\n", total, buffer_size * packets);
/freebsd-11-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_cond.c49 static int count, share, toggle, total; variable
238 total++;
277 total++;
295 printf("1: Thread joined. Final count = %d, total = %d\n",
296 count, total);
299 ATF_REQUIRE_EQ(total, 50000);
368 total++;
408 total++;
425 printf("1: Thread joined. Final count = %d, total = %d\n", count,
426 total);
[all...]
/freebsd-11-stable/contrib/netbsd-tests/net/bpf/
H A Dt_bpf.c113 const size_t total = extra_bytes + UINT_MAX + 1; local
129 sz = round_page((total + (iov_max - 1)) / iov_max);
136 while (sz + iov[0].iov_len <= total)
144 if (sz < total)
146 iov[iovlen].iov_len = total - sz;
153 ATF_REQUIRE_EQ(iov[iovlen-1].iov_len, total % iov[0].iov_len);
/freebsd-11-stable/contrib/netbsd-tests/net/if/
H A Dt_ifconf.sh51 atf_check -s exit:0 -o match:'^2$' "$ifconf" total
56 atf_check -s exit:0 -o match:'^3$' "$ifconf" total
61 atf_check -s exit:0 -o match:'^4$' "$ifconf" total
67 atf_check -s exit:0 -o match:'^5$' "$ifconf" total
79 atf_check -s exit:0 -o match:'^3$' "$ifconf" total
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dentropy.c144 isc_uint32_t total; /*%< entropy from this source */ member in struct:isc_entropysource
536 isc_uint32_t remain, deltae, count, total; local
554 total = 0;
627 total += deltae;
644 add_entropy(ent, total);
899 source->total = 0;
978 source->total = 0;
H A Dmem.c141 size_t total; member in struct:isc__mem
542 if (ctx->quota != 0U && ctx->total + increment > ctx->quota)
569 ctx->total += increment;
667 if (ctx->quota != 0U && ctx->total + size > ctx->quota) {
676 ctx->total += size;
753 INSIST(size <= ctx->total);
755 ctx->total -= size;
833 ctx->total += size;
940 ctx->total = 0;
2332 isc_uint64_t total; member in struct:summarystat
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/unix/
H A Dentropy.c570 source->total = 0;
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dentropy.c278 source->total = 0;
/freebsd-11-stable/contrib/ntp/lib/isc/win32/include/isc/
H A Dntgroups.h31 unsigned int *total);
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_signd.c65 size_t total = 0; local
68 if (n <= 0) return total;
71 total += n;
73 return total;
82 size_t total = 0; local
85 if (n <= 0) return total;
88 total += n;
90 return total;
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A Dbench_httpclient.c185 struct timeval start, end, total; local
204 evutil_timersub(&end, &start, &total);
214 (total.tv_sec+ ((double)total.tv_usec)/1000000.0);
228 (int)total.tv_sec, (int)total.tv_usec,
/freebsd-11-stable/contrib/ntp/sntp/unity/auto/
H A Dcolour_reporter.rb19 when /(?:total\s+)?tests:?\s+(\d+)\s+(?:total\s+)?failures:?\s+\d+\s+Ignored:?/i
/freebsd-11-stable/contrib/nvi/common/
H A Dkey.c366 size_t total; local
383 total = gp->i_cnt + gp->i_next + nitems + TERM_PUSH_SHIFT;
384 if (total >= gp->i_nelem && v_event_grow(sp, MAX(total, 64)))
H A Dmsg.c135 * blen: total length of the buffer
444 recno_t total; local
477 for (cnt = 0, total = 0; cnt < ARSIZE(action); ++cnt)
478 total += sp->rptlines[cnt];
479 if (total == 0)
481 if (total <= rptval && sp->rptlines[L_YANKED] < rptval) {
/freebsd-11-stable/contrib/nvi/ex/
H A Dex.c1826 long total, val; local
1966 total = 0;
2011 total += ecp->cp[0] == '+' ? 1 : -1;
2023 /* Get a signed long, add it to the total. */
2027 total, val)) != NUM_OK) {
2032 total += isneg ? -val : val;
2043 if (*isaddrp && total != 0) {
2044 if (total < 0) {
2045 if (-total > mp->lno) {
2052 if (!NPFITS(MAX_REC_NUMBER, mp->lno, total)) {
[all...]
/freebsd-11-stable/contrib/ofed/libcxgb4/
H A Dqp.c49 int total, len; local
66 total = len16 * 16;
68 if (__predict_true((uintptr_t)dst + total <= end)) {
70 memcpy(dst, src, total);
74 memcpy(wq->sq.queue, src + len, total - len);
85 int total, len; local
91 total = len16 * 16;
93 if (__predict_true((uintptr_t)dst + total <= end)) {
95 memcpy(dst, src, total);
99 memcpy(wq->rq.queue, src + len, total
[all...]
/freebsd-11-stable/contrib/ofed/libibverbs/examples/
H A Dxsrq_pingpong.c857 int i, total, cnt = 0; local
962 total = ctx.num_clients * ctx.num_tests;
963 while (cnt < total) {
/freebsd-11-stable/contrib/smbfs/smbutil/
H A Dview.c74 int error, opt, bufsize, i, entries, total; local
113 error = smb_rap_NetShareEnum(ctx, 1, rpbuf, bufsize, &entries, &total);
129 printf("\n%d shares listed from %d available\n", entries, total);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Dstrings-table.c418 svn_filesize_t total;
424 total = length;
431 /* No more records? Then return the total length. */
434 *size = total;
440 total += length;
416 svn_filesize_t total; local
/freebsd-11-stable/contrib/top/
H A Ddisplay.c359 * *_procstates(total, brkdn, names) - print the process summary line
366 i_procstates(total, brkdn)
368 int total;
375 printf("%d processes:", total);
376 ltotal = total;
379 i = digits(total);
394 u_procstates(total, brkdn)
396 int total;
404 if (ltotal != total)
413 printf("%d", total);
[all...]

Completed in 249 milliseconds

1234567891011>>