| 68 | } |
| 69 | |
| 70 | static float gigabytes_per_second(size_t bytes, int64_t usecs) { |
| 71 | return bytes / (float) usecs * 1000000 / (1024*1024*1024); |
| 72 | } |
| 73 | |
| 74 | static void * align_with_offset(void * ptr, int offset) { |
| 75 | size_t dummy_size = MAX_ALIGNMENT * 4; |
no outgoing calls
no test coverage detected