| 67 | } |
| 68 | |
| 69 | static void fix_size(uint32_t *addr, int32_t *size) { |
| 70 | if (*size < 0) { |
| 71 | *addr += *size; |
| 72 | *size = -*size; |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | static uint32_t addr_block(uint32_t *addr, int32_t size, void **block, uint32_t *block_size) { |
| 77 | if (*addr < 0xD00000) { |
no outgoing calls
no test coverage detected