| 160 | #endif // ARCH_CPU_X86_64 |
| 161 | |
| 162 | void* cp(void *__restrict dest, const void *__restrict src, size_t n) { |
| 163 | // memcpy in gcc 4.8 seems to be faster enough. |
| 164 | return memcpy(dest, src, n); |
| 165 | } |
| 166 | |
| 167 | // Function pointers to allocate or deallocate memory for a IOBuf::Block |
| 168 | void* (*blockmem_allocate)(size_t) = ::malloc; |
no outgoing calls
no test coverage detected