Searched refs:fFrontBlock (Results 1 – 2 of 2) sorted by relevance
34 fFrontBlock = fBackBlock = nullptr; in SkDeque()47 fFrontBlock = (Block*)storage; in SkDeque()48 fFrontBlock->init(storageSize); in SkDeque()50 fFrontBlock = nullptr; in SkDeque()52 fBackBlock = fFrontBlock; in SkDeque()57 Block* head = fFrontBlock; in ~SkDeque()72 if (nullptr == fFrontBlock) { in push_front()73 fFrontBlock = this->allocateBlock(fAllocCount); in push_front()74 fBackBlock = fFrontBlock; // update our linklist in push_front()77 Block* first = fFrontBlock; in push_front()[all …]
121 Block* fFrontBlock; variable