Get the page containing the pointer
| 514 | |
| 515 | // Get the page containing the pointer |
| 516 | static inline mi_page_t* _mi_ptr_page(void* p) { |
| 517 | return _mi_segment_page_of(_mi_ptr_segment(p), p); |
| 518 | } |
| 519 | |
| 520 | // Get the block size of a page (special case for huge objects) |
| 521 | static inline size_t mi_page_block_size(const mi_page_t* page) { |
no test coverage detected