| 58 | }; |
| 59 | |
| 60 | static __inline void |
| 61 | bintime_addx(struct bintime *_bt, uint64_t _x) |
| 62 | { |
| 63 | uint64_t _u; |
| 64 | |
| 65 | _u = _bt->frac; |
| 66 | _bt->frac += _x; |
| 67 | if (_u > _bt->frac) |
| 68 | _bt->sec++; |
| 69 | } |
| 70 | |
| 71 | static __inline void |
| 72 | bintime_add(struct bintime *_bt, const struct bintime *_bt2) |
no outgoing calls
no test coverage detected