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

  /external/llvm/lib/Support/
TimeValue.cpp 27 if ( nanos_ >= NANOSECONDS_PER_SECOND ) {
30 nanos_ -= NANOSECONDS_PER_SECOND;
31 } while ( nanos_ >= NANOSECONDS_PER_SECOND );
32 } else if (nanos_ <= -NANOSECONDS_PER_SECOND ) {
35 nanos_ += NANOSECONDS_PER_SECOND;
36 } while (nanos_ <= -NANOSECONDS_PER_SECOND);
39 if (seconds_ >= 1 && nanos_ < 0) {
41 nanos_ += NANOSECONDS_PER_SECOND;
42 } else if (seconds_ < 0 && nanos_ > 0) {
44 nanos_ -= NANOSECONDS_PER_SECOND
    [all...]
  /external/llvm/include/llvm/Support/
TimeValue.h 95 TimeValue() : seconds_(0), nanos_(0) {}
101 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
107 : seconds_( 0 ) , nanos_ ( 0 ) {
110 nanos_ = static_cast<NanoSecondsType>( (new_time -
129 this->nanos_ += that.nanos_ ;
139 this->nanos_ -= that.nanos_ ;
156 if ( this->nanos_ > that.nanos_ ) return 1
363 NanoSecondsType nanos_; \/\/\/< Stores the nanoseconds part of the TimeVal member in class:llvm::sys::TimeValue
    [all...]

Completed in 48 milliseconds