MCPcopy Index your code
hub / github.com/F-Stack/f-stack / sbttots

Function sbttots

freebsd/sys/time.h:315–323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

313}
314
315static __inline struct timespec
316sbttots(sbintime_t _sbt)
317{
318 struct timespec _ts;
319
320 _ts.tv_sec = _sbt >> 32;
321 _ts.tv_nsec = sbttons((uint32_t)_sbt);
322 return (_ts);
323}
324
325static __inline sbintime_t
326tstosbt(struct timespec _ts)

Callers 4

snvs_gettimeFunction · 0.85
kern_clock_nanosleepFunction · 0.85
softclock_call_ccFunction · 0.85
softclock_call_ccFunction · 0.85

Calls 1

sbttonsFunction · 0.85

Tested by

no test coverage detected