MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-ValidationLayers / IsEmpty

Function IsEmpty

layers/external/parallel_hashmap/phmap.h:343–343  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

341inline ctrl_t H2(size_t hashval) { return (ctrl_t)(hashval & 0x7F); }
342
343inline bool IsEmpty(ctrl_t c) { return c == kEmpty; }
344inline bool IsFull(ctrl_t c) { return c >= static_cast<ctrl_t>(0); }
345inline bool IsDeleted(ctrl_t c) { return c == kDeleted; }
346inline bool IsEmptyOrDeleted(ctrl_t c) { return c < kSentinel; }

Callers 9

prepare_insertMethod · 0.85
PushFrontMethod · 0.85
PushBackMethod · 0.85
ClearMethod · 0.85
vk_mem_alloc.hFile · 0.85
RemoveAllMethod · 0.85
CleanupAfterFreeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected