| 41 | |
| 42 | #if (MI_DEBUG>=3) |
| 43 | static size_t mi_page_list_count(mi_page_t* page, mi_block_t* head) { |
| 44 | size_t count = 0; |
| 45 | while (head != NULL) { |
| 46 | mi_assert_internal(page == _mi_ptr_page(head)); |
| 47 | count++; |
| 48 | head = mi_block_next(page, head); |
| 49 | } |
| 50 | return count; |
| 51 | } |
| 52 | |
| 53 | /* |
| 54 | // Start of the page available memory |
no test coverage detected