HomeSort by relevance Sort by last modified time
    Searched refs:seconds_ (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/Support/
TimeValue.h 85 TimeValue() : seconds_(0), nanos_(0) {}
91 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
97 : seconds_( 0 ) , nanos_ ( 0 ) {
99 seconds_ = integer_part;
118 this->seconds_ += that.seconds_ ;
128 this->seconds_ -= that.seconds_ ;
143 if ( this->seconds_ > that.seconds_ ) {
352 SecondsType seconds_;\/\/\/< Stores the seconds part of the TimeVal member in class:llvm::sys::TimeValue
    [all...]
  /external/llvm/lib/Support/
TimeValue.cpp 35 seconds_++;
40 seconds_--;
45 if (seconds_ >= 1 && nanos_ < 0) {
46 seconds_--;
48 } else if (seconds_ < 0 && nanos_ > 0) {
49 seconds_++;
  /external/chromium_org/net/quic/
quic_time.cc 132 return seconds_;
136 return seconds_ > other.seconds_;
140 return seconds_ < other.seconds_;
144 return seconds_ == 0;
150 if (seconds_ > other.seconds_) {
151 d = seconds_ - other.seconds_;
    [all...]
quic_time.h 149 uint64 seconds_; member in class:net::QuicWallTime
  /external/chromium_org/base/synchronization/
waitable_event_unittest.cc 77 : seconds_(seconds),
82 PlatformThread::Sleep(TimeDelta::FromSeconds(static_cast<int>(seconds_)));
87 const double seconds_; member in class:base::WaitableEventSignaler
  /external/chromium_org/third_party/leveldatabase/src/db/
db_bench.cc 165 double seconds_; member in class:leveldb::__anon16089::RandomGenerator::Stats
182 seconds_ = 0;
192 seconds_ += other.seconds_;
202 seconds_ = (finish_ - start_) * 1e-6;
258 seconds_ * 1e6 / done_,

Completed in 277 milliseconds