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

/frameworks/base/libs/hwui/font/
H A DCacheTexture.cpp29 // CacheBlock
37 CacheBlock* CacheBlock::insertBlock(CacheBlock* head, CacheBlock* newBlock) {
44 CacheBlock* currBlock = head;
45 CacheBlock* prevBlock = NULL;
81 CacheBlock* CacheBlock::removeBlock(CacheBlock* hea
[all...]
H A DCacheTexture.h37 * CacheBlock is a node in a linked list of current free space areas in a CacheTexture.
46 * As columns fill up, we remove their CacheBlock from the list to avoid having to check
49 struct CacheBlock { struct in namespace:android::uirenderer
54 CacheBlock* mNext;
55 CacheBlock* mPrev;
57 CacheBlock(uint16_t x, uint16_t y, uint16_t width, uint16_t height): function in struct:android::uirenderer::CacheBlock
61 static CacheBlock* insertBlock(CacheBlock* head, CacheBlock* newBlock);
62 static CacheBlock* removeBloc
[all...]

Completed in 48 milliseconds