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

Function mi_tf_block

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

Thread free flag helpers

Source from the content-addressed store, hash-verified

571
572// Thread free flag helpers
573static inline mi_block_t* mi_tf_block(mi_thread_free_t tf) {
574 return (mi_block_t*)(tf & ~0x03);
575}
576static inline mi_delayed_t mi_tf_delayed(mi_thread_free_t tf) {
577 return (mi_delayed_t)(tf & 0x03);
578}

Callers 3

_mi_free_block_mtFunction · 0.85
mi_tf_set_delayedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected