Searched refs:CacheBlock (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/hwui/font/
H A DCacheTexture.cpp30 // CacheBlock
38 CacheBlock* CacheBlock::insertBlock(CacheBlock* head, CacheBlock* newBlock) {
44 CacheBlock* currBlock = head;
45 CacheBlock* prevBlock = nullptr;
81 CacheBlock* CacheBlock::removeBlock(CacheBlock* hea
[all...]
H A DCacheTexture.h35 * CacheBlock is a node in a linked list of current free space areas in a CacheTexture.
44 * As columns fill up, we remove their CacheBlock from the list to avoid having to check
47 struct CacheBlock { struct in namespace:android::uirenderer
52 CacheBlock* mNext;
53 CacheBlock* mPrev;
55 CacheBlock(uint16_t x, uint16_t y, uint16_t width, uint16_t height) function in struct:android::uirenderer::CacheBlock
58 static CacheBlock* insertBlock(CacheBlock* head, CacheBlock* newBlock);
59 static CacheBlock* removeBloc
[all...]

Completed in 120 milliseconds