Searched refs:fFrontBlock (Results 1 – 2 of 2) sorted by relevance
35 fFrontBlock = fBackBlock = NULL; in SkDeque()48 fFrontBlock = (Block*)storage; in SkDeque()49 fFrontBlock->init(storageSize); in SkDeque()51 fFrontBlock = NULL; in SkDeque()53 fBackBlock = fFrontBlock; in SkDeque()58 Block* head = fFrontBlock; in ~SkDeque()73 if (NULL == fFrontBlock) { in push_front()74 fFrontBlock = this->allocateBlock(fAllocCount); in push_front()75 fBackBlock = fFrontBlock; // update our linklist in push_front()78 Block* first = fFrontBlock; in push_front()[all …]
121 Block* fFrontBlock; variable