MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / mi_block_set_next

Function mi_block_set_next

3rd/mimalloc-2.0.9/include/mimalloc-internal.h:739–746  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

737}
738
739static inline void mi_block_set_next(const mi_page_t* page, mi_block_t* block, const mi_block_t* next) {
740 #ifdef MI_ENCODE_FREELIST
741 mi_block_set_nextx(page,block,next, page->keys);
742 #else
743 MI_UNUSED(page);
744 mi_block_set_nextx(page,block,next,NULL);
745 #endif
746}
747
748
749// -------------------------------------------------------------------

Callers 8

_mi_free_block_mtFunction · 0.85
_mi_free_blockFunction · 0.85
mi_freeFunction · 0.85
ifFunction · 0.85
mi_page_free_list_extendFunction · 0.85

Calls 1

mi_block_set_nextxFunction · 0.85

Tested by

no test coverage detected