| 801 | } |
| 802 | |
| 803 | static inline mi_page_queue_t* mi_page_queue(const mi_theap_t* theap, size_t size) { |
| 804 | mi_page_queue_t* const pq = &((mi_theap_t*)theap)->pages[_mi_bin(size)]; |
| 805 | if (size <= MI_LARGE_MAX_OBJ_SIZE) { mi_assert_internal(pq->block_size <= MI_LARGE_MAX_OBJ_SIZE); } |
| 806 | return pq; |
| 807 | } |
| 808 | |
| 809 | |
| 810 | //----------------------------------------------------------- |
no test coverage detected