Lines Matching refs:fFrontBlock
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()
89 first->fNext = fFrontBlock; in push_front()
90 fFrontBlock->fPrev = first; in push_front()
91 fFrontBlock = first; in push_front()
114 fFrontBlock = fBackBlock; // update our linklist in push_back()
154 Block* first = fFrontBlock; in pop_front()
161 this->freeBlock(fFrontBlock); in pop_front()
162 fFrontBlock = first; in pop_front()
169 if (begin < fFrontBlock->fEnd) { in pop_front()
221 for (const Block* temp = fFrontBlock; temp; temp = temp->fNext) { in numBlocksAllocated()
294 fCurBlock = d.fFrontBlock; in reset()