Lines Matching refs:fFrontBlock
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()
90 first->fNext = fFrontBlock; in push_front()
91 fFrontBlock->fPrev = first; in push_front()
92 fFrontBlock = first; in push_front()
115 fFrontBlock = fBackBlock; // update our linklist in push_back()
155 Block* first = fFrontBlock; in pop_front()
162 this->freeBlock(fFrontBlock); in pop_front()
163 fFrontBlock = first; in pop_front()
170 if (begin < fFrontBlock->fEnd) { in pop_front()
222 for (const Block* temp = fFrontBlock; temp; temp = temp->fNext) { in numBlocksAllocated()
295 fCurBlock = d.fFrontBlock; in reset()