Searched refs:total (Results 1 - 25 of 354) sorted by relevance

1234567891011>>

/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.fork.c40 int i, j, total = 0; local
44 total += i * j;
48 return (total);
H A Dtst.vfork.c40 int i, j, total = 0; local
44 total += i * j;
48 return (total);
/freebsd-11-stable/contrib/gcclibs/libgomp/config/linux/
H A Dbar.h40 unsigned total; member in struct:__anon1449
48 bar->total = count;
56 bar->total = count;
72 return ++bar->arrived == bar->total;
/freebsd-11-stable/usr.bin/cksum/
H A Dsum1.c51 off_t total; local
59 lcrc = total = 0;
61 for (total += nr, p = buf; nr--; ++p) {
70 *clen = total;
H A Dsum2.c50 off_t total; local
61 lcrc = total = 0;
63 for (total += nr, p = buf; nr--; ++p)
72 *clen = total;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/end/
H A Derr.D_IDENT_UNDEF.timespent.d42 total = timestamp - start;
/freebsd-11-stable/contrib/ntp/lib/isc/win32/include/isc/
H A Dntgroups.h31 unsigned int *total);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/
H A Dtst.cputime.ksh35 uint64_t total;
53 total += vtimestamp - self->on;
63 /((total * 100) / (timestamp - start)) > thresh/
66 \$\$1, ((total * 100) / (timestamp - start)));
/freebsd-11-stable/contrib/gcclibs/libgomp/config/posix/
H A Dbar.h46 unsigned total; member in struct:__anon1451
60 return ++bar->arrived == bar->total;
/freebsd-11-stable/sys/arm64/include/
H A Dproc.h60 #define GET_STACK_USAGE(total, used) do { \
62 (total) = td->td_kstack_pages * PAGE_SIZE - sizeof(struct pcb); \
/freebsd-11-stable/sys/powerpc/include/
H A Dproc.h68 #define GET_STACK_USAGE(total, used) do { \
70 (total) = td->td_kstack_pages * PAGE_SIZE - sizeof(struct pcb); \
/freebsd-11-stable/contrib/subversion/subversion/svnfsfs/
H A Dstats-cmd.c79 svn__ui64toa_sep(stats->total.packed_size, ',', pool),
80 svn__ui64toa_sep(stats->total.count, ',', pool),
83 svn__ui64toa_sep(stats->total.expanded_size, ',', pool),
86 svn__ui64toa_sep(stats->references - stats->total.count, ',', pool),
87 stats->chain_len / MAX(1.0, (double)stats->total.count));
127 (int)(histogram->lines[i].sum * 100 / histogram->total.sum),
129 (int)(histogram->lines[i].count * 100 / histogram->total.count));
133 * Sort extension_info_t values by total count in descending order.
141 apr_int64_t diff = lhs->node_histogram.total.count
142 - rhs->node_histogram.total
267 get_percentage(apr_uint64_t part, apr_uint64_t total) argument
[all...]
/freebsd-11-stable/tests/sys/kern/pipe/
H A Dpipe_reverse_test.c51 ssize_t total; local
56 total = 0;
95 if ((_size = write(desc[1], &buffer[total], s)) != s) \
97 total += _size; \
120 total += error;
126 error = read(desc[0], &buffer2[total], 2 * 4096);
127 total += error;
130 if (memcmp(buffer, buffer2, total) != 0) {
131 for (i = 0; i < (size_t)total; i++) {
143 if ((buggy == 1) || (total !
[all...]
H A Dpipe_wraparound_test.c49 ssize_t error, total; local
54 total = 0;
93 if ((_size = write(desc[1], &buffer[total], s)) != s) \
95 total += _size; \
114 total += error;
118 error = read(desc[0], &buffer2[total], 16384);
119 total += error;
122 if (memcmp(buffer, buffer2, total) != 0) {
123 for (i = 0; i < total; i++) {
/freebsd-11-stable/crypto/openssh/regress/
H A Dmodpipe.c86 size_t total; local
106 for (total = 0;;) {
116 if (mods[i].offset < total ||
117 mods[i].offset >= total + s)
121 buf[mods[i].offset - total] ^= mods[i].m1;
124 buf[mods[i].offset - total] &= mods[i].m1;
125 buf[mods[i].offset - total] |= mods[i].m2;
139 total += s;
144 if (mods[i].offset < total)
/freebsd-11-stable/sys/vm/
H A Dvm_meter.c110 struct vmtotal total; local
115 bzero(&total, sizeof(total));
131 total.t_sw++;
134 total.t_dw++;
136 total.t_sl++;
139 total.t_pw++;
143 total.t_sw++;
147 total.t_rq++;
190 total
[all...]
/freebsd-11-stable/contrib/unbound/daemon/
H A Dstats.c401 void server_stats_add(struct ub_stats_info* total, struct ub_stats_info* a) argument
403 total->svr.num_queries += a->svr.num_queries;
404 total->svr.num_queries_ip_ratelimited += a->svr.num_queries_ip_ratelimited;
405 total->svr.num_queries_missed_cache += a->svr.num_queries_missed_cache;
406 total->svr.num_queries_prefetch += a->svr.num_queries_prefetch;
407 total->svr.sum_query_list_size += a->svr.sum_query_list_size;
408 total->svr.ans_expired += a->svr.ans_expired;
410 total->svr.num_query_dnscrypt_crypted += a->svr.num_query_dnscrypt_crypted;
411 total->svr.num_query_dnscrypt_cert += a->svr.num_query_dnscrypt_cert;
412 total
[all...]
/freebsd-11-stable/sys/sparc64/include/
H A Dproc.h68 #define GET_STACK_USAGE(total, used) do { \
70 (total) = td->td_kstack_pages * PAGE_SIZE - sizeof(struct pcb); \
/freebsd-11-stable/contrib/gcc/
H A Dtimevar.c380 a special meaning -- it's considered to be the total elapsed time,
389 struct timevar_time_def *total = &timevars[TV_TOTAL].elapsed; local
418 /* Don't print the total execution time here; that goes at the
442 (total->user == 0 ? 0 : tv->elapsed.user / total->user) * 100);
449 (total->sys == 0 ? 0 : tv->elapsed.sys / total->sys) * 100);
456 (total->wall == 0 ? 0 : tv->elapsed.wall / total->wall) * 100);
462 (total
495 print_time(const char *str, long total) argument
[all...]
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dnetware.c44 unsigned total = 0; local
71 total += parm_size;
82 total / BITS_PER_UNIT));
92 unsigned total = 0; local
117 total += parm_size;
122 if (nregs > total / BITS_PER_WORD)
123 nregs = total / BITS_PER_WORD;
/freebsd-11-stable/lib/libc/db/recno/
H A Drec_search.c70 recno_t total; local
74 for (pg = P_ROOT, total = 0;;) {
79 t->bt_cur.index = recno - total;
84 if (++idx == top || total + r->nrecs > recno)
86 total += r->nrecs;
/freebsd-11-stable/crypto/openssl/crypto/lhash/
H A Dlh_stats.c118 unsigned long total = 0, n_used = 0; local
125 total += num;
129 fprintf(out, "%lu items\n", total);
133 (int)(total / lh->num_nodes),
134 (int)((total % lh->num_nodes) * 100 / lh->num_nodes),
135 (int)(total / n_used), (int)((total % n_used) * 100 / n_used));
226 unsigned long total = 0, n_used = 0; local
233 total += num;
237 BIO_printf(out, "%lu items\n", total);
[all...]
/freebsd-11-stable/tools/tools/vt/mkkfont/
H A Dmkkfont.c59 unsigned int gbytes, glyph_count, j, k, total; local
66 total = glyph_count * gbytes;
67 gbuf = malloc(total);
69 if (fread(gbuf, total, 1, stdin) != 1) {
74 for (j = 0; j < total; j += 12) {
75 for (k = 0; k < 12 && k < total - j; k++) {
/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/unity/auto/
H A Dcolour_reporter.rb19 when /(?:total\s+)?tests:?\s+(\d+)\s+(?:total\s+)?failures:?\s+\d+\s+Ignored:?/i

Completed in 141 milliseconds

1234567891011>>