| 81 | } |
| 82 | |
| 83 | static __inline void |
| 84 | bintime_sub(struct bintime *_bt, const struct bintime *_bt2) |
| 85 | { |
| 86 | uint64_t _u; |
| 87 | |
| 88 | _u = _bt->frac; |
| 89 | _bt->frac -= _bt2->frac; |
| 90 | if (_u < _bt->frac) |
| 91 | _bt->sec--; |
| 92 | _bt->sec -= _bt2->sec; |
| 93 | } |
| 94 | |
| 95 | static __inline void |
| 96 | bintime_mul(struct bintime *_bt, u_int _x) |
no outgoing calls
no test coverage detected