| 294 | // same amount. |
| 295 | template <typename T1, typename T2> |
| 296 | LIBC_INLINE void adjust(ptrdiff_t offset, T1 *__restrict &p1, |
| 297 | T2 *__restrict &p2, size_t &count) { |
| 298 | p1 += offset; |
| 299 | p2 += offset; |
| 300 | count -= static_cast<size_t>(offset); |
| 301 | } |
| 302 | |
| 303 | // Advances p1 and p2 so p1 gets aligned to the next SIZE bytes boundary |
| 304 | // and decrease count by the same amount. |
no outgoing calls
no test coverage detected