Home
last modified time | relevance | path

Searched refs:time_ (Results 1 – 25 of 34) sorted by relevance

12

/external/tensorflow/tensorflow/core/platform/cloud/
Dgcs_throttle_test.cc42 GcsThrottleTest() : throttle_(&time_) { in GcsThrottleTest()
48 TestTime time_; member in tensorflow::__anon3928650c0111::GcsThrottleTest
54 time_.AdvanceSeconds(1); in TEST_F()
56 time_.AdvanceSeconds(2); in TEST_F()
62 time_.AdvanceSeconds(1); in TEST_F()
72 time_.AdvanceSeconds(1); in TEST_F()
77 time_.AdvanceSeconds(1); in TEST_F()
84 time_.AdvanceSeconds(90); in TEST_F()
89 time_.AdvanceSeconds(120); in TEST_F()
94 time_.AdvanceSeconds(1); in TEST_F()
[all …]
/external/tensorflow/tensorflow/lite/micro/examples/micro_speech/
Drecognize_commands_test.cc32 TF_LITE_MICRO_EXPECT_EQ(0, queue.front().time_); in TF_LITE_MICRO_TEST()
33 TF_LITE_MICRO_EXPECT_EQ(0, queue.back().time_); in TF_LITE_MICRO_TEST()
38 TF_LITE_MICRO_EXPECT_EQ(0, queue.front().time_); in TF_LITE_MICRO_TEST()
39 TF_LITE_MICRO_EXPECT_EQ(1, queue.back().time_); in TF_LITE_MICRO_TEST()
42 TF_LITE_MICRO_EXPECT_EQ(0, pop_result.time_); in TF_LITE_MICRO_TEST()
44 TF_LITE_MICRO_EXPECT_EQ(1, queue.front().time_); in TF_LITE_MICRO_TEST()
45 TF_LITE_MICRO_EXPECT_EQ(1, queue.back().time_); in TF_LITE_MICRO_TEST()
50 TF_LITE_MICRO_EXPECT_EQ(1, queue.front().time_); in TF_LITE_MICRO_TEST()
51 TF_LITE_MICRO_EXPECT_EQ(2, queue.back().time_); in TF_LITE_MICRO_TEST()
64 TF_LITE_MICRO_EXPECT_EQ(i, queue.front().time_); in TF_LITE_MICRO_TEST()
[all …]
Drecognize_commands.cc59 (current_time_ms < previous_results_.front().time_)) { in ProcessLatestResults()
64 current_time_ms, previous_results_.front().time_); in ProcessLatestResults()
74 previous_results_.front().time_ < time_limit) { in ProcessLatestResults()
81 const int64_t earliest_time = previous_results_.front().time_; in ProcessLatestResults()
Drecognize_commands.h39 Result() : time_(0), scores() {} in Result()
40 Result(int32_t time, int8_t* input_scores) : time_(time) { in Result()
45 int32_t time_; member
/external/rust/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/impl/codegen/
Dtime.h54 TimePoint(const gpr_timespec& time) : time_(time) {} in TimePoint()
55 gpr_timespec raw_time() { return time_; } in raw_time()
58 gpr_timespec time_;
79 Timepoint2Timespec(time, &time_); in TimePoint()
81 gpr_timespec raw_time() const { return time_; } in raw_time()
84 gpr_timespec time_;
/external/rust/crates/grpcio-sys/grpc/include/grpcpp/impl/codegen/
Dtime.h54 TimePoint(const gpr_timespec& time) : time_(time) {} in TimePoint()
55 gpr_timespec raw_time() { return time_; } in raw_time()
58 gpr_timespec time_;
79 Timepoint2Timespec(time, &time_); in TimePoint()
81 gpr_timespec raw_time() const { return time_; } in raw_time()
84 gpr_timespec time_;
/external/grpc-grpc/include/grpcpp/impl/codegen/
Dtime.h55 TimePoint(const gpr_timespec& time) : time_(time) {} in TimePoint()
56 gpr_timespec raw_time() { return time_; } in raw_time()
59 gpr_timespec time_;
79 Timepoint2Timespec(time, &time_); in TimePoint()
81 gpr_timespec raw_time() const { return time_; } in raw_time()
84 gpr_timespec time_;
/external/tensorflow/tensorflow/core/graph/
Dcostmodel.cc65 time_[global_id] += cm.time_[local_id]; in MergeFromLocal()
85 time_[i] += cm.time_[i]; in MergeFromGlobal()
114 time_[global_id] += elapsed_micros; in MergeFromStats()
131 time_.resize(id + 1); in Ensure()
216 time_[id] += time; in RecordTime()
222 if (id < 0 || static_cast<size_t>(id) >= time_.size() || in TotalTime()
223 time_[id] < Microseconds(0)) { in TotalTime()
226 return time_[id]; in TotalTime()
237 CHECK(static_cast<size_t>(n->id()) < time_.size() && in CheckInitialized()
238 time_[n->id()] >= Microseconds(0)) in CheckInitialized()
[all …]
Dcostmodel.h207 std::vector<Microseconds> time_; variable
/external/webrtc/rtc_base/
Drate_tracker_unittest.cc22 RateTrackerForTest() : RateTracker(kBucketIntervalMs, 10u), time_(0) {} in RateTrackerForTest()
23 int64_t Time() const override { return time_; } in Time()
24 void AdvanceTime(int delta) { time_ += delta; } in AdvanceTime()
27 int64_t time_; member in rtc::RateTrackerForTest
/external/webrtc/system_wrappers/source/
Dclock.cc245 : time_(initial_time), lock_(RWLockWrapper::CreateRWLock()) {} in SimulatedClock()
251 return time_; in CurrentTime()
276 time_ += delta; in AdvanceTime()
/external/fmtlib/include/fmt/
Dchrono.h294 std::time_t time_; in localtime() member
297 dispatcher(std::time_t t) : time_(t) {} in localtime()
301 return handle(localtime_r(&time_, &tm_)); in localtime()
308 return fallback(localtime_s(&tm_, &time_)); in localtime()
316 std::tm* tm = std::localtime(&time_); in localtime()
336 std::time_t time_; in gmtime() member
339 dispatcher(std::time_t t) : time_(t) {} in gmtime()
343 return handle(gmtime_r(&time_, &tm_)); in gmtime()
350 return fallback(gmtime_s(&tm_, &time_)); in gmtime()
357 std::tm* tm = std::gmtime(&time_); in gmtime()
/external/webrtc/system_wrappers/include/
Dclock.h81 Timestamp time_;
/external/tensorflow/tensorflow/python/kernel_tests/
Drnn_cell_test.py2076 def loop_fn(time_, cell_output, cell_state, unused_loop_state): argument
2082 elements_finished = (time_ >= sequence_length)
2088 lambda: inputs_ta.read(time_))
2185 def loop_fn(time_, cell_output, cell_state, loop_state): argument
2193 elements_finished = array_ops.tile([time_ >= max_time], [batch_size])
2199 lambda: inputs_ta.read(time_))
2222 def loop_fn(time_, cell_output, cell_state, loop_state): argument
2232 loop_state = loop_state.write(time_,
2233 loop_state.read(time_ - 1) + time_)
2236 elements_finished = array_ops.tile([time_ >= max_time], [batch_size])
[all …]
/external/libaom/libaom/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h194 void set_time(uint64_t time) { time_ = time; } in set_time()
195 uint64_t time() const { return time_; } in time()
212 uint64_t time_; variable
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h194 void set_time(uint64_t time) { time_ = time; } in set_time()
195 uint64_t time() const { return time_; } in time()
212 uint64_t time_; variable
/external/libwebm/mkvmuxer/
Dmkvmuxer.h194 void set_time(uint64_t time) { time_ = time; } in set_time()
195 uint64_t time() const { return time_; } in time()
212 uint64_t time_; variable
/external/python/cpython3/Lib/
Dmailbox.py1653 def set_from(self, from_, time_=None): argument
1655 if time_ is not None:
1656 if time_ is True:
1657 time_ = time.gmtime()
1658 from_ += ' ' + time.asctime(time_)
/external/python/cpython2/Lib/
Dmailbox.py1604 def set_from(self, from_, time_=None): argument
1606 if time_ is not None:
1607 if time_ is True:
1608 time_ = time.gmtime()
1609 from_ += ' ' + time.asctime(time_)
/external/grpc-grpc/src/objective-c/
D!ProtoCompiler-gRPCPlugin.podspec39 # This pod is only a utility that will be used by other pods _at install time_ (not at compile
D!ProtoCompiler.podspec33 # This pod is only a utility that will be used by other pods _at install time_ (not at compile
/external/grpc-grpc/templates/src/objective-c/
D!ProtoCompiler-gRPCPlugin.podspec.template41 # This pod is only a utility that will be used by other pods _at install time_ (not at compile
/external/python/cpython2/Lib/test/
Dtest_zipfile.py86 fn, date, time_, size = lines[1].split()
89 self.assertTrue(time.strptime(time_, '%H:%M:%S'))
712 fn, date, time_, size = lines[1].split()
715 self.assertTrue(time.strptime(time_, '%H:%M:%S'))
/external/python/cpython3/Doc/library/
Dmailbox.rst1008 .. method:: set_from(from_, time_=None)
1011 leading "From " or trailing newline. For convenience, *time_* may be
1013 *time_* is specified, it should be a :class:`time.struct_time` instance, a
1379 .. method:: set_from(from_, time_=None)
1382 leading "From " or trailing newline. For convenience, *time_* may be
1384 *time_* is specified, it should be a :class:`time.struct_time` instance, a
/external/python/cpython2/Doc/library/
Dmailbox.rst992 .. method:: set_from(from_, time_=None)
995 leading "From " or trailing newline. For convenience, *time_* may be
997 *time_* is specified, it should be a :class:`time.struct_time` instance, a
1363 .. method:: set_from(from_, time_=None)
1366 leading "From " or trailing newline. For convenience, *time_* may be
1368 *time_* is specified, it should be a :class:`time.struct_time` instance, a

12