| 12 | /* For more details on implementation and usage please see the imd.h header. */ |
| 13 | |
| 14 | static void *relative_pointer(void *base, ssize_t offset) |
| 15 | { |
| 16 | intptr_t b = (intptr_t)base; |
| 17 | b += offset; |
| 18 | return (void *)b; |
| 19 | } |
| 20 | |
| 21 | static bool imd_root_pointer_valid(const struct imd_root_pointer *rp) |
| 22 | { |
no outgoing calls
no test coverage detected