Home
last modified time | relevance | path

Searched refs:values (Results 1 – 25 of 26) sorted by relevance

12

/system/ulib/perftest/
A Dresults.cpp20 double sum = fbl::accumulate(values.begin(), values.end(), 0.0); in Mean()
25 return *fbl::min_element(values.begin(), values.end()); in Min()
29 return *fbl::max_element(values.begin(), values.end()); in Max()
34 for (double value : values) { in StdDev()
57 copy.reserve(values.size()); in Median()
58 for (double value : values) { in Median()
74 ZX_ASSERT(values.size() > 0); in GetSummaryStatistics()
75 double mean = Mean(values); in GetSummaryStatistics()
77 .min = Min(values), in GetSummaryStatistics()
78 .max = Max(values), in GetSummaryStatistics()
[all …]
A Drunner.cpp244 results->values.reserve(run_count_); in CopyStepTimes()
/system/utest/fbl/
A Dalgorithm_tests.cpp148 int* first = values; in max_element_test()
149 int* last = values + count; in max_element_test()
169 int* first = values; in max_element_compare_test()
170 int* last = values + count; in max_element_compare_test()
186 int* first = values; in min_element_test()
187 int* last = values + count; in min_element_test()
207 int* first = values; in min_element_compare_test()
231 int* first = values; in lower_bound_test()
276 int* first = values; in lower_bound_compare_test()
400 int* first = values; in accumulate_test()
[all …]
/system/uapp/rng-trials/
A Drng-trials.c16 uint64_t values[BINS] = { 0 }; in main() local
29 values[byte % BINS]++; in main()
33 printf("bin %u: %" PRIu64 "\n", i, values[i]); in main()
/system/ulib/perftest/include/perftest/
A Dresults.h47 values.push_back(value); in AppendValue()
58 fbl::Vector<double> values; member
/system/utest/perftest/
A Drunner-test.cpp49 for (auto time_taken : test_case->values) { in check_times()
77 EXPECT_EQ(test_case->values.size(), kRunCount); in TestResults()
170 EXPECT_EQ(test_case.values.size(), kRunCount); in TestMultistepTest()
A Dresults-test.cpp39 …":"ExampleNullSyscall","test_suite":"results_test","unit":"nanoseconds","values":[101.000000,102.0… in TestJsonOutput()
/system/ulib/zircon-internal/include/lib/zircon-internal/device/cpu-trace/
A Dintel-pm-events.inc19 // - flags (IPM_FIXED_REG_FLAG_* values) (uint32_t) [at present there are none]
55 // - flags (IPM_REG_FLAG_* values) (uint32_t)
A Dskylake-misc-events.inc23 // - flags (IPM_MISC_REG_FLAG_* values) (uint32_t) [at present there are none]
104 // TODO(dje): This one value is actually a collection of several values.
118 // These values all come from the same register.
A Dskylake-pm-events.inc20 // (N.B. these values are very much not hardwired yet)
23 // - flags (IPM_REG_FLAG_* values) (uint32_t)
/system/ulib/cobalt-client/
A DREADME.md126 methods for adding observed values. The Options must mimick those set up in
130 ## Remote Vs Local values
134 the values that have not yet been sent to Cobalt.
/system/banjo/ddk-protocol-bt-gattsvc/
A Dbt-gatt-svc.banjo48 /// Possible values for the characteristic properties bitfield.
80 /// See enums |BtGattChrProp| and |BtGattChrExtProp| for possible bit values.
/system/banjo/ddk-protocol-bt-hci/
A Dbt-hci.banjo20 /// The flags octet is a bitfield with the following values defined:
/system/utest/int-types/
A DREADME.md8 test both. Additionally, writing very precise tests comparing values
/system/fidl/fuchsia-hardware-ethernet/
A Dethernet.fidl120 // flags values for request messages
123 // flags values for response messages
/system/fidl/fuchsia-hardware-tee/
A Dtee.fidl34 // These parameters can be a mix of small values (Value type) or a buffer reference (Buffer type).
/system/ulib/unittest/
A DREADME.md58 one needs to be aware of. For example, this means that option values cannot
/system/ulib/fit/include/lib/fit/
A Dpromise_internal.h559 inline bool all_true(bool value, Ts... values) {
560 return value & all_true(values...);
/system/banjo/ddk-protocol-ethernet/
A Dethernet.banjo81 /// SETPARAM_ values identify the parameter to set. Each call to set_param()
/system/ulib/ftl/inc/kprivate/
A Dfsprivate.h179 FOff values[FILE_OFFSETS]; // recorded file offsets member
/system/fidl/fuchsia-cobalt/
A Dcobalt.fidl490 // The number of values in that bucket.
537 // |event_values| The values for the custom Event. There is one value for
538 // each dimension of the Metric. The number and types of the values must
588 // with the given values.
/system/banjo/ddk-protocol-display-controller/
A Ddisplay-controller.banjo253 /// A bitmask of MODE_FLAG_* values
374 /// must use the z_index values of the present layers to configure them as if the whole
/system/fidl/fuchsia-io/
A Dio.fidl232 // Nodes which do not have ino values should return this value
299 // // POSIX d_type values. Use DIRENT_TYPE_* constants.
/system/utest/fbl/include/fbl/tests/intrusive_containers/
A Dsequence_container_test_environment.h593 bool BidirectionalEquals(const ContainerType& sequence, const size_t* values, size_t size) { in BidirectionalEquals() argument
604 const size_t* val_iter = values; in BidirectionalEquals()
/system/ulib/async/
A DREADME.md139 operation, values of this type represent a moment in the `ZX_CLOCK_MONOTONIC`

Completed in 40 milliseconds

12