Home
last modified time | relevance | path

Searched refs:GetLeftNext (Results 1 – 2 of 2) sorted by relevance

/openthread-2.7.6/src/core/utils/
Dheap.hpp130 uint16_t GetLeftNext(void) const { return *(&mSize - 1); } in GetLeftNext() function in ot::Utils::Block
139 bool IsLeftFree(void) const { return GetLeftNext() != 0; } in IsLeftFree()
Dheap.cpp166 …for (const uint16_t offset = block.GetLeftNext(); left->GetNext() != offset; left = &BlockNext(*le… in Free()