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

1234567891011>>

/freebsd-11-stable/bin/df/
H A Ddf.c80 int total; member in struct:maxwidths
145 strlcpy(totalbuf.f_mntfromname, "total", MNAMELEN);
487 mwp->total += (mwp->total - 1) / 3;
495 mwp->total = mwp->used = mwp->avail =
499 mwp->total = imax(mwp->total, headerlen);
508 mwp->total, header,
537 format = " {t:total-blocks/%*j'd} {t:used-blocks/%*j'd} "
540 format = " {t:total
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java299 double total = 0;
333 total += Math.abs((double)v);
354 printDistributionLine(v, total, positives, negatives);
359 printDistributionLine(long val, double total, boolean positives, argument
366 assert (!(total == 0 && (positives || negatives)));
369 assert (!(val != 0 && total == 0));
373 f = (Math.abs((double)val) * (double)len) / total;
385 f = (Math.abs((double)val) * (double)len) / total;
404 f = (Math.abs((double)val) * (double)len) / total;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/
H A Ddtest.pl241 my($total) = 0;
520 $total = scalar(@files);
522 $passed = ($total - $failed - $bypassed);
527 "total" => $total
695 my $total = $results{$key}{"total"};
703 logmsg(" total: " . $total . "\n");
/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/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/end/
H A Derr.D_IDENT_UNDEF.timespent.d42 total = timestamp - start;
/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/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ustack/
H A Dtst.spin.ksh54 @total = count();
85 printa("TOTAL %@u\n", @total);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zinject/
H A Dzinject.c469 int count = 0, total = 0; local
473 total += count;
480 total += count;
487 total += count;
494 return (count + total);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_aggregate.c151 long double total = (long double)lquanta[0] * (long double)(base - 1); local
154 total += (long double)lquanta[i + 1] * (long double)base;
156 return (total + (long double)lquanta[levels + 1] *
234 long double total; local
242 total = (long double)llquanta[bin++] * (long double)(value - 1);
249 total += (long double)llquanta[bin++] * (long double)(value);
259 return (total + (long double)llquanta[bin] * (long double)value);
1307 dtrace_aggdata_t **total; local
1318 * determine our maximum aggregation ID, one to actually total
1335 total
[all...]
H A Ddt_consume.c515 dt_quantize_total(dtrace_hdl_t *dtp, int64_t datum, long double *total) argument
520 *total += val;
526 * highest value to be approximately 95% of total bar height -- so we
532 if (*total < val)
533 *total = val;
595 uint64_t normal, long double total)
598 long double f = (dt_fabsl((long double)val) * len) / total;
634 uint64_t normal, long double total, char positives, char negatives)
643 assert(!(total == 0 && (positives || negatives)));
646 assert(!(val != 0 && total
594 dt_print_quantline_utf8(dtrace_hdl_t *dtp, FILE *fp, int64_t val, uint64_t normal, long double total) argument
633 dt_print_quantline(dtrace_hdl_t *dtp, FILE *fp, int64_t val, uint64_t normal, long double total, char positives, char negatives) argument
706 dt_print_packed(dtrace_hdl_t *dtp, FILE *fp, long double datum, long double total) argument
770 long double total = 0; local
825 long double total = 0, count = 0; local
869 long double total = 0; local
946 long double total = 0, count = 0; local
1002 long double total = 0; local
[all...]
H A Ddt_strtab.c280 ssize_t res, total = 0; local
284 for (i = 0; i < sp->str_nbufs; i++, total += res) {
290 if ((res = func(sp->str_bufs[i], n, total, private)) <= 0)
294 if (total == 0 && sp->str_size != 0)
297 return (total);
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dstrtab.c210 ssize_t res, total = 0; local
214 for (i = 0; i < sp->str_nbufs; i++, total += res) {
224 if (total == 0 && sp->str_size != 0)
227 return (total);
/freebsd-11-stable/contrib/amd/doc/
H A Dtexinfo.tex3793 % Numbers following @columnfractions are the percent of the total
/freebsd-11-stable/contrib/apr-util/buckets/
H A Dapr_brigade.c193 apr_off_t total = 0; local
206 total = -1;
216 total += bkt->length;
219 *length = total;
274 apr_size_t total; local
290 total = (apr_size_t)actual;
292 *c = apr_palloc(pool, total);
294 rv = apr_brigade_flatten(bb, *c, &total);
300 *len = total;
499 /* Compute the total lengt
[all...]
/freebsd-11-stable/contrib/apr/file_io/unix/
H A Dfullrw.c73 apr_size_t total = 0; local
76 total += vec[i].iov_len;
84 if (rv != APR_SUCCESS || (amt == total)) {
108 *bytes_written = total;
/freebsd-11-stable/contrib/binutils/bfd/
H A Daoutx.h3436 bfd_vma total;
5099 if (t->total == val)
5109 t->total = val;
H A Dcoffcode.h3310 unsigned int total;
3312 total = 0;
3322 total += value;
3323 total = 0xffff & (total + (total >> 0x10));
3328 return (0xffff & (total + (total >> 0x10)));
3309 unsigned int total; local
H A Dcoffgen.c489 int total = 0; local
498 total += s->lineno_count;
499 return total;
531 ++total;
539 return total;
H A Dcpu-ia64-opc.c103 int i, bits = 0, total = 0; local
109 & ((((BFD_HOST_U_64_BIT) 1) << bits) - 1)) << total;
110 total += bits;
188 int i, bits = 0, total = 0; local
195 & ((((BFD_HOST_U_64_BIT) 1) << bits) - 1)) << total;
196 total += bits;
199 sign = (BFD_HOST_64_BIT) 1 << (total - 1);
H A Decofflink.c1581 unsigned long total;
1583 total = 0;
1600 total += l->size;
1603 if ((total & (swap->debug_align - 1)) != 0)
1608 i = swap->debug_align - (total & (swap->debug_align - 1));
1665 unsigned long total;
1673 total = 1;
1685 total += len + 1;
1688 if ((total & (swap->debug_align - 1)) != 0)
1693 i = swap->debug_align - (total
1578 unsigned long total; local
1662 unsigned long total; local
2473 unsigned long total; local
2527 unsigned long total; local
[all...]
H A Delf64-alpha.c317 /* For every got, this is it's total number of words. */
2162 int total = alpha_elf_tdata (a)->total_got_size;
2166 if (total + alpha_elf_tdata (b)->total_got_size <= MAX_GOT_SIZE)
2170 if ((total += alpha_elf_tdata (b)->local_got_size) > MAX_GOT_SIZE)
2206 total += alpha_got_entry_size (be->reloc_type);
2207 if (total > MAX_GOT_SIZE)
2222 int total = alpha_elf_tdata (a)->total_got_size;
2228 total += e;
2291 total += alpha_got_entry_size (be->reloc_type);
2301 alpha_elf_tdata (a)->total_got_size = total;
2154 int total = alpha_elf_tdata (a)->total_got_size; local
2214 int total = alpha_elf_tdata (a)->total_got_size; local
[all...]
H A Delf64-ppc.c9285 bfd_size_type total;
9290 total = tail->size;
9291 big_sec = total > (ppc64_elf_section_data (tail)->has_14bit_branch
9299 && ((total += curr->output_offset - prev->output_offset)
9309 should really be keeping track of the total size of stubs
9312 only break if stubs added make the total size more than
9313 2^25, ie. for the default stub_group_size, if stubs total
9330 total = 0;
9332 && ((total += tail->output_offset - prev->output_offset)
9281 bfd_size_type total; local
H A Dihex.c723 size_t total; local
746 total = 9 + count * 2 + 4;
747 if (bfd_bwrite (buf, (bfd_size_type) total, abfd) != total)
/freebsd-11-stable/contrib/binutils/binutils/
H A Dreadelf.c6624 int total;
6637 total = section->sh_size / sizeof (Elf_External_Versym);
6655 SECTION_NAME (section), total);
6665 total * sizeof (short));
6666 edata = get_data (NULL, file, off, total, sizeof (short),
6674 data = cmalloc (total, sizeof (short));
6676 for (cnt = total; cnt --;)
6682 for (cnt = 0; cnt < total; cnt += 4)
6690 for (j = 0; (j < 4) && (cnt + j) < total; ++j)
7374 printf (_("\nHistogram for bucket list length (total o
6621 int total; local
6652 SECTION_NAME (section), total); local
[all...]

Completed in 321 milliseconds

1234567891011>>