Searched refs:nanos (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DTimeValue.h89 /// \p nanos argument defaults to zero for convenience.
91 explicit TimeValue (SecondsType seconds, NanoSecondsType nanos = 0)
92 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
267 void getTimespecTime( uint64_t& seconds, uint32_t& nanos ) const {
269 nanos = nanos_;
290 /// The nanoseconds component of the TimeValue is set to \p nanos without
296 void nanoseconds ( NanoSecondsType nanos ) {
297 this->nanos_ = nanos;
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DTimeValue.h45 explicit TimeValue(uint32_t seconds, uint32_t nanos = 0);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Host/common/
H A DTimeValue.cpp51 TimeValue::TimeValue(uint32_t seconds, uint32_t nanos) : argument
52 m_nano_seconds((uint64_t) seconds * NanoSecPerSec + nanos)
/freebsd-10.3-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_pax.c72 unsigned long nanos);
200 * Note: This code assumes that 'nanos' has the same sign as 'sec',
201 * which implies that sec=-1, nanos=200000000 represents -1.2 seconds
208 int64_t sec, unsigned long nanos)
216 char tmp[1 + 3*sizeof(sec) + 1 + 3*sizeof(nanos)];
223 digit = nanos % 10;
224 nanos /= 10;
231 digit = nanos % 10;
232 nanos /= 10;
207 add_pax_attr_time(struct archive_string *as, const char *key, int64_t sec, unsigned long nanos) argument
H A Darchive_read_support_format_tar.c207 static void pax_time(const char *, int64_t *sec, long *nanos);

Completed in 138 milliseconds