Home
last modified time | relevance | path

Searched refs:exact_value (Results 1 – 14 of 14) sorted by relevance

/third_party/flutter/skia/tools/skpbench/
D_hardware.py62 exact_value=None, name=None, sleeptime=60): argument
66 self.exact_value = exact_value
80 if self.exact_value is not None and typedvalue != self.exact_value:
82 (self.name, stringvalue, str(self.exact_value)),
D_hardware_pixel_c.py77 Expectation(str, exact_value='0-2', name='online cpus'),
81 Expectation(int, exact_value=0, name='cpu throttle'),
82 Expectation(int, exact_value=0, name='gpu throttle')] + \
83 [Expectation(int, exact_value=CPU_CLOCK_RATE,
86 [Expectation(str, exact_value=GPU_EMC_PROFILE, name='gpu/emc profile')]
D_hardware_pixel2.py109 Expectation(str, exact_value='4-6', name='online cpus')] + \
110 [Expectation(int, exact_value=CPU_CLOCK_RATE, name='cpu_%i clock rate' %i)
115 Expectation(int, exact_value=1, name='gpu throttling'),
D_hardware_pixel.py82 Expectation(str, exact_value='2-3', name='online cpus')] + \
83 [Expectation(int, exact_value=CPU_CLOCK_RATE, name='cpu_%i clock rate' %i)
D_hardware_nexus_6p.py82 Expectation(str, exact_value='4-6', name='online cpus'),
89 [Expectation(int, exact_value=CPU_CLOCK_RATE, name='cpu_%i clock rate' %i)
/third_party/skia/tools/skpbench/
D_hardware.py62 exact_value=None, name=None, sleeptime=60): argument
66 self.exact_value = exact_value
80 if self.exact_value is not None and typedvalue != self.exact_value:
82 (self.name, stringvalue, str(self.exact_value)),
D_hardware_pixel_c.py77 Expectation(str, exact_value='0-2', name='online cpus'),
81 Expectation(int, exact_value=0, name='cpu throttle'),
82 Expectation(int, exact_value=0, name='gpu throttle')] + \
83 [Expectation(int, exact_value=CPU_CLOCK_RATE,
86 [Expectation(str, exact_value=GPU_EMC_PROFILE, name='gpu/emc profile')]
D_hardware_pixel2.py109 Expectation(str, exact_value='4-6', name='online cpus')] + \
110 [Expectation(int, exact_value=CPU_CLOCK_RATE, name='cpu_%i clock rate' %i)
115 Expectation(int, exact_value=1, name='gpu throttling'),
D_hardware_pixel.py82 Expectation(str, exact_value='2-3', name='online cpus')] + \
83 [Expectation(int, exact_value=CPU_CLOCK_RATE, name='cpu_%i clock rate' %i)
D_hardware_nexus_6p.py82 Expectation(str, exact_value='4-6', name='online cpus'),
89 [Expectation(int, exact_value=CPU_CLOCK_RATE, name='cpu_%i clock rate' %i)
/third_party/boost/boost/spirit/home/x3/directive/
Drepeat.hpp21 bool got_max(T i) const { return i >= exact_value; } in got_max()
22 bool got_min(T i) const { return i >= exact_value; } in got_min()
24 T const exact_value; member
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
Dconvert_test.cc770 const double exact_value = 0.00000000000005684341886080801486968994140625; in TEST_F() local
771 assert(exact_value == std::pow(2, -44)); in TEST_F()
773 EXPECT_EQ(format("%.13f", exact_value), "0.0000000000001"); in TEST_F()
775 EXPECT_EQ(format("%.14f", exact_value), "0.00000000000006"); in TEST_F()
777 EXPECT_EQ(format("%.16f", exact_value), "0.0000000000000568"); in TEST_F()
779 EXPECT_EQ(format("%.35f", exact_value), in TEST_F()
781 EXPECT_EQ(format("%.36f", exact_value), in TEST_F()
784 EXPECT_EQ(format("%.37f", exact_value), in TEST_F()
792 EXPECT_EQ(format("%.43f", exact_value), in TEST_F()
795 EXPECT_EQ(format("%.44f", exact_value), in TEST_F()
[all …]
/third_party/abseil-cpp/absl/strings/internal/str_format/
Dconvert_test.cc758 const double exact_value = 0.00000000000005684341886080801486968994140625; in TEST_F() local
759 assert(exact_value == std::pow(2, -44)); in TEST_F()
761 EXPECT_EQ(format("%.13f", exact_value), "0.0000000000001"); in TEST_F()
763 EXPECT_EQ(format("%.14f", exact_value), "0.00000000000006"); in TEST_F()
765 EXPECT_EQ(format("%.16f", exact_value), "0.0000000000000568"); in TEST_F()
767 EXPECT_EQ(format("%.35f", exact_value), in TEST_F()
769 EXPECT_EQ(format("%.36f", exact_value), in TEST_F()
772 EXPECT_EQ(format("%.37f", exact_value), in TEST_F()
780 EXPECT_EQ(format("%.43f", exact_value), in TEST_F()
783 EXPECT_EQ(format("%.44f", exact_value), in TEST_F()
[all …]
/third_party/boost/libs/math/doc/graphs/
Dplot_1d_errors.cpp60 Real exact_value = static_cast<Real>(f(mp_type(pos))); in plot_errors_1d() local
61 …stance = boost::math::sign(found_value - exact_value) * boost::math::epsilon_difference(found_valu… in plot_errors_1d()