Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ui_lite/frameworks/font/
H A Dui_font_allocator.cpp135 struct Chunk* prevChunk = nullptr; in CombineFree() local
146 prevChunk = reinterpret_cast<struct Chunk*>(ram_ + chunk->prev); in CombineFree()
147 if ((prevChunk != chunk) && !(prevChunk->used)) { in CombineFree()
149 free_ = prevChunk; in CombineFree()
151 prevChunk->next = chunk->next; in CombineFree()
152 …rpret_cast<struct Chunk*>(ram_ + chunk->next)->prev = reinterpret_cast<uint8_t*>(prevChunk) - ram_; in CombineFree()