Home
last modified time | relevance | path

Searched refs:is_max (Results 1 – 10 of 10) sorted by relevance

/external/libchrome/base/time/
Dtime.cc41 if (is_max()) { in InDays()
49 if (is_max()) { in InDaysFloored()
62 if (is_max()) { in InHours()
70 if (is_max()) { in InMinutes()
78 if (is_max()) { in InSecondsF()
86 if (is_max()) { in InSeconds()
94 if (is_max()) { in InMillisecondsF()
102 if (is_max()) { in InMilliseconds()
110 if (is_max()) { in InMillisecondsRoundedUp()
123 if (is_max()) { in InMicroseconds()
[all …]
Dtime_unittest.cc628 EXPECT_TRUE(max.is_max()); in TEST_F()
639 EXPECT_TRUE(t.is_max()); in TEST_F()
643 EXPECT_TRUE(t.is_max()); in TEST_F()
647 EXPECT_TRUE(t.is_max()); in TEST_F()
655 EXPECT_TRUE(t.is_max()); in TEST_F()
664 EXPECT_TRUE(t.is_max()); in TEST_F()
674 EXPECT_TRUE(t.is_max()); in TEST_F()
684 EXPECT_FALSE(t.is_max()); in TEST_F()
1258 static_assert(kMax.is_max(), ""); in TEST()
1284 static_assert(TimeDelta::FromDays(std::numeric_limits<int>::max()).is_max(), in TEST()
[all …]
Dtime_conversion_posix.cc56 if (is_max()) { in ToTimeVal()
Dtime.h173 constexpr bool is_max() const { in is_max() function
359 bool is_max() const { return us_ == std::numeric_limits<int64_t>::max(); } in is_max() function
/external/v8/src/compiler/
Dsimd-scalar-lowering.h93 void LowerIntMinMax(Node* node, const Operator* op, bool is_max,
Dsimd-scalar-lowering.cc637 bool is_max, SimdType type) { in LowerIntMinMax() argument
656 if (is_max) { in LowerIntMinMax()
/external/libbrillo/brillo/streams/
Dfile_stream.cc143 if (!timeout.is_max()) { in WaitForDataBlocking()
148 timeout.is_max() ? nullptr : &timeout_val)); in WaitForDataBlocking()
/external/bcc/src/lua/bcc/vendor/
Dargparse.lua810 local function bound(noun, min, max, is_max)
814 res = "at " .. (is_max and "most" or "least") .. " "
817 local number = is_max and max or min
/external/tensorflow/tensorflow/core/kernels/
Dpooling_ops_3d_sycl.h309 bool is_max = (input_data[index] == output_data_n[output_data_idx]);
323 is_max = false;
328 if (is_max) {
/external/libchrome/base/synchronization/
Dwaitable_event_posix.cc170 const bool finite_time = !end_time.is_max(); in TimedWaitUntil()