| 103 | static const struct buffer_address GGML_BUFFER_ADDRESS_INVALID = { -1, SIZE_MAX }; |
| 104 | |
| 105 | static bool ggml_buffer_address_less(struct buffer_address a, struct buffer_address b) { |
| 106 | return a.chunk != b.chunk ? a.chunk < b.chunk : a.offset < b.offset; |
| 107 | } |
| 108 | |
| 109 | struct free_block { |
| 110 | size_t offset; |
no outgoing calls
no test coverage detected