HomeSort by relevance Sort by last modified time
    Searched refs:fHead (Results 1 - 25 of 32) sorted by null

1 2

  /external/skia/src/effects/gradients/
SkGradientBitmapCache.cpp 38 fHead = fTail = NULL;
46 Entry* entry = fHead;
56 SkASSERT(fHead != entry);
59 SkASSERT(fHead == entry);
60 fHead = entry->fNext;
74 entry->fNext = fHead;
75 if (fHead) {
76 fHead->fPrev = entry;
80 fHead = entry;
86 Entry* entry = fHead;
    [all...]
SkGradientBitmapCache.h 28 mutable Entry* fHead;
  /external/skia/src/gpu/
GrMemoryPool.h 44 bool isEmpty() const { return fTail == fHead && !fHead->fLiveCount; }
80 BlockHeader* fHead;
GrMemoryPool.cpp 26 fHead = CreateBlock(fPreallocSize);
27 fTail = fHead;
28 fHead->fNext = NULL;
29 fHead->fPrev = NULL;
36 SkASSERT(fHead == fTail);
37 SkASSERT(0 == fHead->fLiveCount);
38 DeleteBlock(fHead);
80 if (fHead == block) {
81 fHead->fCurrPtr = reinterpret_cast<intptr_t>(fHead) + kHeaderSize
    [all...]
  /external/skia/include/core/
SkTInternalLList.h 44 : fHead(NULL)
49 SkASSERT(fHead && fTail);
58 fHead = next;
79 entry->fNext = fHead;
80 if (fHead) {
81 fHead->fPrev = entry;
83 fHead = entry;
103 if (NULL == fHead) {
104 fHead = entry;
131 SkASSERT(fHead == existingEntry)
    [all...]
  /external/skia/src/core/
SkGlyphCache_Globals.h 34 fHead = NULL;
44 SkGlyphCache* cache = fHead;
56 SkGlyphCache* internalGetHead() const { return fHead; }
102 SkGlyphCache* fHead;
SkRWBuffer.cpp 117 SkROBuffer::SkROBuffer(const SkBufferHead* head, size_t used) : fHead(head), fUsed(used) {
119 fHead->ref();
128 if (fHead) {
129 fHead->validate(fUsed);
130 fHead->unref();
140 fBlock = &buffer->fHead->fBlock;
164 SkRWBuffer::SkRWBuffer(size_t initialCapacity) : fHead(NULL), fTail(NULL), fTotalUsed(0) {}
168 fHead->unref();
179 if (NULL == fHead) {
180 fHead = SkBufferHead::Alloc(length)
    [all...]
SkRWBuffer.h 62 const SkBufferHead* fHead;
92 SkBufferHead* fHead;
SkResourceCache.cpp 60 fHead = NULL;
198 Rec* rec = fHead;
376 SkASSERT(fHead == rec);
377 fHead = next;
392 if (fHead == rec) {
396 SkASSERT(fHead);
403 fHead->fPrev = rec;
404 rec->fNext = fHead;
405 fHead = rec;
414 rec->fNext = fHead;
    [all...]
SkRecordPattern.h 113 i = this->matchHead(&fHead, record, i);
132 template <typename T> T* first() { return fHead.get(); }
133 template <typename T> T* second() { return fTail.fHead.get(); }
134 template <typename T> T* third() { return fTail.fTail.fHead.get(); }
135 template <typename T> T* fourth() { return fTail.fTail.fTail.fHead.get(); }
142 if (record->mutate<bool>(i, fHead)) {
153 if (!record->mutate<bool>(i, fHead)) {
161 Matcher fHead;
SkStream.cpp 520 : fHead(NULL), fTail(NULL), fBytesWritten(0), fCopy(NULL)
533 Block* block = fHead;
540 fHead = fTail = NULL;
570 fHead = fTail = block;
584 Block* block = fHead;
605 Block* block = fHead;
627 Block* block = fHead;
639 for (Block* block = fHead; block != NULL; block = block->fNext) {
673 explicit SkBlockMemoryRefCnt(SkDynamicMemoryWStream::Block* head) : fHead(head) { }
676 SkDynamicMemoryWStream::Block* block = fHead;
    [all...]
SkGlyphCache.cpp 566 SkGlyphCache* cache = fHead;
631 if (fHead) {
632 fHead->fPrev = cache;
633 cache->fNext = fHead;
635 fHead = cache;
649 fHead = cache->fNext;
678 const SkGlyphCache* head = fHead;
SkResourceCache.h 236 Rec* fHead;
  /external/skia/src/pathops/
SkOpContour.cpp 41 const SkPoint& pt = fHead.pts()[0];
43 const SkOpSegment* segment = &fHead;
51 SkOpSegment* segment = &fHead;
SkOpContour.h 57 SkOpSegment* segment = &fHead;
65 ? SkOpTAllocator<SkOpSegment>::Allocate(allocator) : &fHead;
92 SkOpSegment* segment = &fHead;
116 SkOpSegment* segment = &fHead;
149 const SkOpSegment* segment = &fHead;
191 return &fHead;
196 return &fHead;
216 SkOpSegment* segment = &fHead;
228 SkOpSegment* segment = &fHead;
237 SkOpSegment* segment = &fHead;
    [all...]
SkOpCoincidence.h 29 : fHead(NULL) {
58 SkCoincidentSpans* fHead;
SkOpCoincidence.cpp 14 SkCoincidentSpans* coinRec = fHead;
48 coinRec->fNext = this->fHead;
54 this->fHead = coinRec;
78 SkCoincidentSpans* check = this->fHead;
128 SkCoincidentSpans* outer = this->fHead;
177 SkCoincidentSpans* coin = fHead;
193 SkCoincidentSpans* coin = fHead;
301 SkCoincidentSpans* coin = fHead;
310 fHead = next;
320 SkCoincidentSpans* coin = fHead;
    [all...]
SkPathOpsTSect.h 297 SkTSpan<TCurve, OppCurve>* fHead;
364 SkTSpan<TCurve, OppCurve>* next = prior ? prior->fNext : fHead;
371 fHead = result;
820 fHead = addOne();
821 fHead->init(c);
879 if (sect2->fHead->contains(oppTTest)) {
909 SkTSpan<TCurve, OppCurve>* test = fHead;
910 SkTSpan<TCurve, OppCurve>* largest = fHead;
925 SkTSpan<TCurve, OppCurve>* first = fHead;
961 const SkTSpan<TCurve, OppCurve>* test = fHead;
    [all...]
SkOpSegment.h 85 angle->set(&fHead, fHead.next());
86 fHead.setToAngle(angle);
188 return &fHead;
192 return &fHead;
383 SkOpSpan fHead; // the head span always has its t set to zero
SkOpSegment.cpp 167 if ((start == &fHead && end == &fTail) || (start == &fTail && end == &fHead)) {
177 bool reverse = ePtr == fPts && start != &fHead;
220 SkOpSpanBase* test = &fHead;
243 SkOpSpanBase* span = &fHead;
301 SkOpSpanBase* span = &fHead;
315 SkOpSpan* span = &fHead;
326 bool activePrior = !fHead.isCanceled();
327 if (activePrior && !fHead.simple()) {
330 SkOpSpan* prior = &fHead;
    [all...]
SkPathOpsWinding.cpp 112 SkOpSegment* testSegment = &fHead;
189 SkOpSpan* span = &fHead;
357 SkOpSpan* span = &fHead;
375 SkOpSegment* testSegment = &fHead;
  /external/skia/tests/
PathOpsTSectDebug.h 18 const SkTSpan<TCurve, OppCurve>* test = fHead;
29 const SkTSpan<TCurve, OppCurve>* test = fHead;
48 dumpCommon(fHead);
65 if (this->fHead) {
68 if (opp->fHead) {
82 const SkTSpan<OppCurve, TCurve>* test = bounded->debugOpp()->fHead;
92 const SkTSpan<TCurve, OppCurve>* test = fHead;
130 dumpCommonCurves(fHead);
  /external/skia/src/svg/parser/
SkSVGGradient.cpp 82 SkSVGPaint* saveHead = parser.fHead;
83 parser.fHead = &fPaintState;
113 parser.fHead = saveHead;
SkSVGParser.cpp 40 fHead(&fEmptyPaint), fIDs(256),
113 SkSVGPaint* state = fHead;
127 SkSVGPaint* walking = fHead;
233 SkSVGPaint::Push(&fHead, &element->fPaintState);
267 SkSVGPaint::Pop(&fHead);
  /external/skia/include/svg/parser/
SkSVGParser.h 57 SkSVGPaint* fHead;

Completed in 778 milliseconds

1 2