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

/frameworks/base/libs/hwui/font/
H A DCacheTexture.h36 * CacheBlock is a node in a linked list of current free space areas in a CacheTexture.
45 * As columns fill up, we remove their CacheBlock from the list to avoid having to check
48 struct CacheBlock { struct in namespace:android::uirenderer
53 CacheBlock* mNext;
54 CacheBlock* mPrev;
56 CacheBlock(uint16_t x, uint16_t y, uint16_t width, uint16_t height): function in struct:android::uirenderer::CacheBlock
60 static CacheBlock* insertBlock(CacheBlock* head, CacheBlock* newBlock);
61 static CacheBlock* removeBloc
[all...]

Completed in 914 milliseconds