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 33 if ( nanos_ >= NANOSECONDS_PER_SECOND ) {
36 nanos_ -= NANOSECONDS_PER_SECOND;
37 } while ( nanos_ >= NANOSECONDS_PER_SECOND );
38 } else if (nanos_ <= -NANOSECONDS_PER_SECOND ) {
41 nanos_ += NANOSECONDS_PER_SECOND;
42 } while (nanos_ <= -NANOSECONDS_PER_SECOND);
45 if (seconds_ >= 1 && nanos_ < 0) {
47 nanos_ += NANOSECONDS_PER_SECOND;
48 } else if (seconds_ < 0 && nanos_ > 0) {
50 nanos_ -= NANOSECONDS_PER_SECOND
    [all...]
  /external/llvm/include/llvm/Support/
TimeValue.h 86 TimeValue() : seconds_(0), nanos_(0) {}
92 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
98 : seconds_( 0 ) , nanos_ ( 0 ) {
101 nanos_ = static_cast<NanoSecondsType>( (new_time -
120 this->nanos_ += that.nanos_ ;
130 this->nanos_ -= that.nanos_ ;
147 if ( this->nanos_ > that.nanos_ ) return 1
362 NanoSecondsType nanos_; \/\/\/< Stores the nanoseconds part of the TimeVal member in class:llvm::sys::TimeValue
    [all...]

Completed in 983 milliseconds