/external/tensorflow/tensorflow/core/platform/cloud/ |
D | gcs_throttle_test.cc | 42 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/ |
D | recognize_commands_test.cc | 32 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 …]
|
D | recognize_commands.cc | 59 (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()
|
D | recognize_commands.h | 39 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/ |
D | time.h | 54 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/ |
D | time.h | 54 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/ |
D | time.h | 55 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/ |
D | costmodel.cc | 65 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 …]
|
D | costmodel.h | 207 std::vector<Microseconds> time_; variable
|
/external/webrtc/rtc_base/ |
D | rate_tracker_unittest.cc | 22 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/ |
D | clock.cc | 245 : time_(initial_time), lock_(RWLockWrapper::CreateRWLock()) {} in SimulatedClock() 251 return time_; in CurrentTime() 276 time_ += delta; in AdvanceTime()
|
/external/fmtlib/include/fmt/ |
D | chrono.h | 294 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/ |
D | clock.h | 81 Timestamp time_;
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | rnn_cell_test.py | 2076 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/ |
D | mkvmuxer.h | 194 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/ |
D | mkvmuxer.h | 194 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/ |
D | mkvmuxer.h | 194 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/ |
D | mailbox.py | 1653 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/ |
D | mailbox.py | 1604 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.podspec | 39 # This pod is only a utility that will be used by other pods _at install time_ (not at compile
|
D | !ProtoCompiler.podspec | 33 # 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.template | 41 # This pod is only a utility that will be used by other pods _at install time_ (not at compile
|
/external/python/cpython2/Lib/test/ |
D | test_zipfile.py | 86 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/ |
D | mailbox.rst | 1008 .. 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/ |
D | mailbox.rst | 992 .. 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
|