Searched refs:time_ (Results 1 - 8 of 8) sorted by relevance
/third_party/node/deps/v8/src/logging/ |
H A D | runtime-call-stats.cc | 56 time_(time.InMicroseconds()), in Entry() 62 if (time_ < other.time_) return true; in operator <() 63 if (time_ > other.time_) return false; in operator <() 71 os << std::setw(10) << static_cast<double>(time_) / 1000 << "ms "; in Print() 83 time_percent_ = 100.0 * time_ / total_time.InMicroseconds(); in SetTotal() 90 int64_t time_; member in v8::internal::RuntimeCallStatEntries::Entry 103 time_ = 0; in Reset() 109 value->AppendDouble(time_); in Dump() [all...] |
H A D | counters.h | 314 void Start() { time_ = base::TimeDelta(); } in Start() 316 if (time_ != base::TimeDelta()) { in Stop() 319 AddSample(static_cast<int>(time_.InMicroseconds())); in Stop() 324 void Add(base::TimeDelta other) { time_ += other; } in Add() 334 base::TimeDelta time_; member in v8::internal::AggregatableHistogramTimer
|
H A D | runtime-call-stats.h | 36 : name_(name), count_(0), time_(0) {} in RuntimeCallCounter() 44 return base::TimeDelta::FromMicroseconds(time_); in time() 47 void Add(base::TimeDelta delta) { time_ += delta.InMicroseconds(); } in Add() 55 int64_t time_; member in v8::internal::final
|
/third_party/backends/lib/ |
H A D | usleep.c | 34 static time_$clock_t DomainTime100mS = 47 Use the Domain/OS time_$wait call instead. */ in usleep() 48 time_$wait (time_$relative, DomainTime100mS, &DomainStatus); in usleep()
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-win32.cc | 285 FILETIME& ft() { return time_.ft_; } in ft() 288 int64_t& t() { return time_.t_; } in t() 300 TimeStamp time_; member in v8::base::Win32Time 388 this->time_.t_ = init_time.t_ + (static_cast<int64_t>(elapsed) * 10000); in SetToCurrentTime()
|
/third_party/python/Lib/ |
H A D | mailbox.py | 1653 def set_from(self, from_, time_=None): 1654 """Set "From " line, formatting and appending time_ if specified.""" 1655 if time_ is not None: 1656 if time_ is True: 1657 time_ = time.gmtime() 1658 from_ += ' ' + time.asctime(time_)
|
/third_party/python/Lib/test/ |
H A D | test_zipfile.py | 97 fn, date, time_, size = lines[1].split() 100 self.assertTrue(time.strptime(time_, '%H:%M:%S')) 723 fn, date, time_, size = lines[1].split() 726 self.assertTrue(time.strptime(time_, '%H:%M:%S'))
|
/third_party/backends/sanei/ |
H A D | sanei_scsi.c | 459 time_$clock_t Wait16S = { 64, 0 }; /* Delay of about 16 Seconds */ 1030 time_$get_ec (time_$clockh_key, &CommandAcceptedPtr[1], &status); in sanei_scsi_open_extended()
|
Completed in 21 milliseconds