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

1234567891011>>

/freebsd-10-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-10-stable/contrib/gcclibs/libgomp/config/linux/
H A Dbar.h40 unsigned total; member in struct:__anon1269
48 bar->total = count;
56 bar->total = count;
72 return ++bar->arrived == bar->total;
/freebsd-10-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-10-stable/usr.bin/m4/lib/
H A Dohash_entries.c27 return h->total - h->deleted;
/freebsd-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/end/
H A Derr.D_IDENT_UNDEF.timespent.d42 total = timestamp - start;
/freebsd-10-stable/contrib/subversion/subversion/svnfsfs/
H A Dstats-cmd.c78 svn__ui64toa_sep(stats->total.packed_size, ',', pool),
79 svn__ui64toa_sep(stats->total.count, ',', pool),
82 svn__ui64toa_sep(stats->total.expanded_size, ',', pool),
85 svn__ui64toa_sep(stats->references - stats->total.count, ',', pool));
125 (int)(histogram->lines[i].sum * 100 / histogram->total.sum),
127 (int)(histogram->lines[i].count * 100 / histogram->total.count));
131 * Sort extension_info_t values by total count in descending order.
139 apr_int64_t diff = lhs->node_histogram.total.count
140 - rhs->node_histogram.total.count;
146 * Sort extension_info_t values by total uncompresse
265 get_percentage(apr_uint64_t part, apr_uint64_t total) argument
[all...]
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Bin/
H A Danonpgpid.d68 @total[pid, execname, args[3] & B_READ ? "R" : "W"] = sum(arg1);
74 printa("%6d %-16s %1s %@d\n", @total);
H A Djs_objcpu.d50 @total = sum(this->oncpu);
57 normalize(@total, 1000000);
58 printa("Total object creation on-CPU time (ms): %@d\n\n", @total);
H A Drb_objcpu.d50 @total = sum(this->oncpu);
57 normalize(@total, 1000000);
58 printa("Total object creation on-CPU time (ms): %@d\n\n", @total);
H A Dshortlived.d14 * processes, and a table of process name by total times for each.
109 this->total = timestamp - start;
112 printf("total sample duration: %6d.%03d secs\n",
113 this->total/1000000000, (this->total%1000000000)/1000000);
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Mem/
H A Danonpgpid.d68 @total[pid, execname, args[3] & B_READ ? "R" : "W"] = sum(arg1);
74 printa("%6d %-16s %1s %@d\n", @total);
/freebsd-10-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-10-stable/contrib/ntp/lib/isc/win32/include/isc/
H A Dntgroups.h31 unsigned int *total);
/freebsd-10-stable/contrib/gcclibs/libgomp/config/posix/
H A Dbar.h46 unsigned total; member in struct:__anon1271
60 return ++bar->arrived == bar->total;
/freebsd-10-stable/sys/powerpc/include/
H A Dproc.h61 #define GET_STACK_USAGE(total, used) do { \
63 (total) = td->td_kstack_pages * PAGE_SIZE - sizeof(struct pcb); \
/freebsd-10-stable/cddl/contrib/dtracetoolkit/JavaScript/
H A Djs_objcpu.d50 @total = sum(this->oncpu);
57 normalize(@total, 1000000);
58 printa("Total object creation on-CPU time (ms): %@d\n\n", @total);
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Ruby/
H A Drb_objcpu.d50 @total = sum(this->oncpu);
57 normalize(@total, 1000000);
58 printa("Total object creation on-CPU time (ms): %@d\n\n", @total);
/freebsd-10-stable/contrib/unbound/daemon/
H A Dstats.c226 void server_stats_add(struct stats_info* total, struct stats_info* a) argument
228 total->svr.num_queries += a->svr.num_queries;
229 total->svr.num_queries_missed_cache += a->svr.num_queries_missed_cache;
230 total->svr.num_queries_prefetch += a->svr.num_queries_prefetch;
231 total->svr.sum_query_list_size += a->svr.sum_query_list_size;
233 if(a->svr.max_query_list_size > total->svr.max_query_list_size)
234 total->svr.max_query_list_size = a->svr.max_query_list_size;
238 total->svr.qtype_big += a->svr.qtype_big;
239 total->svr.qclass_big += a->svr.qclass_big;
240 total
[all...]
/freebsd-10-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-10-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-10-stable/sys/vm/
H A Dvm_meter.c114 struct vmtotal total; local
119 bzero(&total, sizeof(total));
135 total.t_sw++;
138 total.t_dw++;
140 total.t_sl++;
143 total.t_pw++;
147 total.t_sw++;
151 total.t_rq++;
194 total
[all...]
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Proc/
H A Dshortlived.d14 * processes, and a table of process name by total times for each.
109 this->total = timestamp - start;
112 printf("total sample duration: %6d.%03d secs\n",
113 this->total/1000000000, (this->total%1000000000)/1000000);

Completed in 198 milliseconds

1234567891011>>