Searched refs:avg (Results 1 - 23 of 23) sorted by relevance

/illumos-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.avg_neg.d32 * Positive avg() test using negative values
36 * NOTES: This is a simple verifiable positive test of the avg() function.
43 @ = avg(0);
44 @ = avg(-900);
H A Derr.D_PROTO_LEN.avgnoarg.d32 * avg() should not accept a call with no arguments
42 @a[1] = avg();
H A Derr.D_PROTO_LEN.avgtoomany.d32 * avg() should not more than one argument
42 @a[1] = avg(1, 2);
H A Derr.D_AGG_SCALAR.avgtoofew.d31 * avg() should not accept a non-scalar value
41 @a[pid] = avg(probefunc);
H A Dtst.avg.d32 * Positive avg() test
36 * NOTES: This is a simple verifiable positive test of the avg() function.
49 @a = avg(i);
H A Dtst.clearavg.d32 * Positive avg() test
37 * Verifies that printing a clear()'d aggregation with an avg()
47 @a = avg(timestamp);
H A Dtst.clearavg2.d32 * Positive avg() test
37 * Verifies that printing a clear()'d aggregation with an avg()
49 @time = avg(0);
H A Dtst.multiaggs2.d46 @a = avg(i);
H A Dtst.multiaggs1.d50 @c[pid] = avg(new_time);
H A Dtst.multiaggs3.d50 @b = avg(i);
/illumos-gate/usr/src/cmd/dtrace/demo/agg/
H A Dwritetime.d35 @time[execname] = avg(timestamp - self->ts);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_AGG_SPEC.SpeculateWithAvg.d49 @avrg["speculate"] = avg(i);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/printa/
H A Dtst.basics.d39 @a = avg(1);
/illumos-gate/usr/src/test/zfs-tests/tests/perf/scripts/
H A Dio.d36 @latencies["read"] = avg(0);
37 @latencies["write"] = avg(0);
38 @latencies["zfs_read"] = avg(0);
39 @latencies["zfs_write"] = avg(0);
69 @latencies[probefunc] = avg(timestamp - self->ts);
86 @latencies[this->name] = avg(this->elapsed);
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DStddevValue.java122 long avg = (stddevTotal / stddevCount);
123 if (avg < 0) {
124 avg = -avg;
126 BigInteger squareOfAverage = BigInteger.valueOf(avg);
/illumos-gate/usr/src/common/ficl/
H A Dtools.c148 double avg = 0.0; local
169 avg += (double)(n * (n+1)) / 2.0;
177 /* Calc actual avg search depth for this hash */
178 avg = avg / nWords;
189 avg, best, 100.0 * best / avg);
/illumos-gate/usr/src/cmd/powertop/common/
H A Ddisplay.c403 double total_pstates = 0.0, avg, res; local
420 avg = (((double)g_cstate_info[i].total_time/
423 avg = 0;
429 i, (float)avg, (float)res);
/illumos-gate/usr/src/cmd/plockstat/
H A Dplockstat.c549 uint64_t sum, count, avg; local
586 avg = sum / count;
587 (void) printf("%5llu %8llu ", (u_longlong_t)count, (u_longlong_t)avg);
/illumos-gate/usr/src/cmd/lockstat/
H A Dlockstat.c742 * aggregate, we count on the fact that @avg appears before
743 * @hist in program order to assure that @avg is assigned the
747 dprog_add("\t@avg[%dULL, %s, %s%s] = avg(%s);\n",
902 uint64_t *avg, *quantized; local
910 * plus one. As "avg" appears before "hist" in program order, we know
911 * that "avg" will be allocated the first aggregation variable ID, and
946 fail(0, "bad avg size in aggregation record");
949 avg = (uint64_t *)(data + rec->dtrd_offset);
950 lsrec->ls_count = (uint32_t)avg[
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Dclock.c1051 int avg; local
1072 avg = hr_avg / (NANOSEC / LGRP_LOADAVG_IN_THREAD_MAX);
1074 return (avg);
/illumos-gate/usr/src/cmd/mdb/common/modules/dtrace/
H A Ddtrace.c2025 double avg; local
2051 avg = (double)ttl / (double)nz;
2054 double delta = (double)data->dthsd_counts[i] - avg;
/illumos-gate/usr/src/cmd/mdb/common/modules/zfs/
H A Dzfs.c562 "(avg %llu buckets/dbuf)\n",
2707 "\t avg\t comp\t%%Total\tType\n");
2712 char avg[NICENUM_BUFLEN]; local
2758 mdb_nicenum(zb->zb_asize / zb->zb_count, avg);
2766 csize, lsize, psize, asize, avg, comp, pct);
/illumos-gate/usr/src/cmd/zdb/
H A Dzdb.c2793 (void) printf("\tbp logical: %10llu avg: %6llu\n",
2796 (void) printf("\tbp physical: %10llu avg:"
2801 (void) printf("\tbp allocated: %10llu avg:"
2839 "\t avg\t comp\t%%Total\tType\n");
2843 char avg[32], gang[32]; local
2883 zdb_nicenum(zb->zb_asize / zb->zb_count, avg);
2888 csize, lsize, psize, asize, avg,

Completed in 169 milliseconds