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

1234567891011>>

/freebsd-9.3-release/tools/regression/pipe/
H A Dpipe-reverse.c42 int buggy, error, i, successes, total; local
47 total = 0;
66 total += error;
67 error = write(desc[0], &buffer[total], 4096);
68 total += error;
69 error = write(desc[0], &buffer[total], 4096);
70 total += error;
71 error = write(desc[0], &buffer[total], 4096);
72 total += error;
73 error = write(desc[0], &buffer[total], 409
[all...]
H A Dpipe-wraparound.c42 int buggy, error, i, successes, total; local
47 total = 0;
66 total += error;
67 error = write(desc[1], &buffer[total], 4096);
68 total += error;
69 error = write(desc[1], &buffer[total], 4000);
70 total += error;
71 printf("Wrote %d bytes, sleeping\n", total);
73 error = write(desc[1], &buffer[total], 3000);
74 total
[all...]
/freebsd-9.3-release/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-9.3-release/contrib/gcclibs/libgomp/config/linux/
H A Dbar.h40 unsigned total; member in struct:__anon1287
48 bar->total = count;
56 bar->total = count;
72 return ++bar->arrived == bar->total;
/freebsd-9.3-release/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-9.3-release/usr.bin/m4/lib/
H A Dohash_entries.c27 return h->total - h->deleted;
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/end/
H A Derr.D_IDENT_UNDEF.timespent.d42 total = timestamp - start;
/freebsd-9.3-release/contrib/cvs/lib/
H A Dstrtoul.c25 unsigned long total = 0; local
84 if (total > maxdiv
85 || (total == maxdiv && digit > maxrem))
87 total = (total * base) + digit;
99 return negate ? -total : total;
/freebsd-9.3-release/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);
H A Dhotkernel26 # PCNT Percentage of total samples
91 my $total;
101 $total += $count;
111 100 * $Count{$name} / ($total ? $total : 1);
H A Dhotuser29 # PCNT Percentage of total samples
103 my $total;
114 $total += $count;
124 100 * $Count{$name} / ($total ? $total : 1);
/freebsd-9.3-release/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-9.3-release/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-9.3-release/contrib/ntp/lib/isc/win32/include/isc/
H A Dntgroups.h31 unsigned int *total);
/freebsd-9.3-release/contrib/gcclibs/libgomp/config/posix/
H A Dbar.h46 unsigned total; member in struct:__anon1289
60 return ++bar->arrived == bar->total;
/freebsd-9.3-release/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-9.3-release/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-9.3-release/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);
/freebsd-9.3-release/sys/sparc64/include/
H A Dproc.h61 #define GET_STACK_USAGE(total, used) do { \
63 (total) = td->td_kstack_pages * PAGE_SIZE - sizeof(struct pcb); \
/freebsd-9.3-release/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...]

Completed in 104 milliseconds

1234567891011>>