/external/dng_sdk/source/ |
D | dng_opcode_list.cpp | 31 : fList () in dng_opcode_list() 53 for (size_t index = 0; index < fList.size (); index++) in Clear() 56 if (fList [index]) in Clear() 59 delete fList [index]; in Clear() 61 fList [index] = NULL; in Clear() 67 fList.clear (); in Clear() 78 fList.swap (otherList.fList); in Swap() 93 for (size_t index = 0; index < fList.size (); index++) in MinVersion() 96 if (includeOptional || !fList [index]->Optional ()) in MinVersion() 99 result = Max_uint32 (result, fList [index]->MinVersion ()); in MinVersion() [all …]
|
D | dng_string_list.cpp | 29 , fList (NULL) in dng_string_list() 67 DoCopyBytes (fList, list, fCount * (uint32) sizeof (dng_string *)); in Allocate() 71 if (fList) in Allocate() 74 free (fList); in Allocate() 78 fList = list; in Allocate() 108 fList [j] = fList [j - 1]; in Insert() 112 fList [index] = ss; in Insert() 142 if (fList) in Clear() 148 delete fList [index]; in Clear() 152 free (fList); in Clear() [all …]
|
D | dng_opcode_list.h | 41 dng_std_vector<dng_opcode *> fList; 59 return fList.size () == 0; in IsEmpty() 88 return (uint32) fList.size (); in Count() 96 return *fList [index]; in Entry() 104 return *fList [index]; in Entry()
|
D | dng_bad_pixels.cpp | 579 , fList () in dng_opcode_FixBadPixelsList() 585 fList.Reset (list.Release ()); in dng_opcode_FixBadPixelsList() 587 fList->Sort (); in dng_opcode_FixBadPixelsList() 599 , fList () in dng_opcode_FixBadPixelsList() 618 fList.Reset (new dng_bad_pixel_list); in dng_opcode_FixBadPixelsList() 630 fList->AddPoint (pt); in dng_opcode_FixBadPixelsList() 644 fList->AddRect (r); in dng_opcode_FixBadPixelsList() 648 fList->Sort (); in dng_opcode_FixBadPixelsList() 663 (int) fList->Point (index).v, in dng_opcode_FixBadPixelsList() 664 (int) fList->Point (index).h); in dng_opcode_FixBadPixelsList() [all …]
|
/external/skqp/src/utils/ |
D | SkNWayCanvas.cpp | 19 *fList.append() = canvas; in addCanvas() 24 int index = fList.find(canvas); in removeCanvas() 26 fList.removeShuffle(index); in removeCanvas() 31 fList.reset(); in removeAll() 39 Iter(const SkTDArray<SkCanvas*>& list) : fList(list) { in Iter() 43 if (fIndex < fList.count()) { in next() 44 fCanvas = fList[fIndex++]; in next() 53 const SkTDArray<SkCanvas*>& fList; member in SkNWayCanvas::Iter 59 Iter iter(fList); in willSave() 68 Iter iter(fList); in getSaveLayerStrategy() [all …]
|
D | SkCanvasStack.cpp | 33 for (int i = fList.count() - 1; i > 0; --i) { in pushCanvas() 38 fList[i-1]->clipRegion(fCanvasData[i-1].requiredClip); in pushCanvas() 41 SkASSERT(fList.count() == fCanvasData.count()); in pushCanvas() 55 SkASSERT(fList.count() == fCanvasData.count()); in clipToZOrderedBounds() 56 for (int i = 0; i < fList.count(); ++i) { in clipToZOrderedBounds() 57 fList[i]->clipRegion(fCanvasData[i].requiredClip); in clipToZOrderedBounds() 69 SkASSERT(fList.count() == fCanvasData.count()); in didSetMatrix() 70 for (int i = 0; i < fList.count(); ++i) { in didSetMatrix() 75 fList[i]->setMatrix(tempMatrix); in didSetMatrix() 96 SkASSERT(fList.count() == fCanvasData.count()); in onClipRegion() [all …]
|
/external/skia/src/utils/ |
D | SkNWayCanvas.cpp | 19 *fList.append() = canvas; in addCanvas() 24 int index = fList.find(canvas); in removeCanvas() 26 fList.removeShuffle(index); in removeCanvas() 31 fList.reset(); in removeAll() 39 Iter(const SkTDArray<SkCanvas*>& list) : fList(list) { in Iter() 43 if (fIndex < fList.count()) { in next() 44 fCanvas = fList[fIndex++]; in next() 53 const SkTDArray<SkCanvas*>& fList; member in SkNWayCanvas::Iter 59 Iter iter(fList); in willSave() 68 Iter iter(fList); in getSaveLayerStrategy() [all …]
|
D | SkCanvasStack.cpp | 33 for (int i = fList.count() - 1; i > 0; --i) { in pushCanvas() 38 fList[i-1]->clipRegion(fCanvasData[i-1].requiredClip); in pushCanvas() 41 SkASSERT(fList.count() == fCanvasData.count()); in pushCanvas() 55 SkASSERT(fList.count() == fCanvasData.count()); in clipToZOrderedBounds() 56 for (int i = 0; i < fList.count(); ++i) { in clipToZOrderedBounds() 57 fList[i]->clipRegion(fCanvasData[i].requiredClip); in clipToZOrderedBounds() 69 SkASSERT(fList.count() == fCanvasData.count()); in didSetMatrix() 70 for (int i = 0; i < fList.count(); ++i) { in didSetMatrix() 75 fList[i]->setMatrix(tempMatrix); in didSetMatrix() 96 SkASSERT(fList.count() == fCanvasData.count()); in onClipRegion() [all …]
|
/external/skia/src/core/ |
D | SkPtrRecorder.cpp | 11 Pair* p = fList.begin(); in reset() 12 Pair* stop = fList.end(); in reset() 17 fList.reset(); in reset() 29 int count = fList.count(); in find() 33 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); in find() 37 return fList[index].fIndex; in find() 45 int count = fList.count(); in add() 49 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); in add() 54 *fList.insert(index) = pair; in add() 57 return fList[index].fIndex; in add() [all …]
|
D | SkOverdrawCanvas.cpp | 105 fList[0]->onDrawPatch(cubics, colors, texCoords, blendMode, fPaint); in onDrawPatch() 112 fList[0]->onDrawPaint(this->overdrawPaint(paint)); in onDrawPaint() 117 fList[0]->onDrawBehind(this->overdrawPaint(paint)); in onDrawBehind() 121 fList[0]->onDrawRect(rect, this->overdrawPaint(paint)); in onDrawRect() 126 fList[0]->onDrawRect(rect, fPaint); in onDrawEdgeAARect() 130 fList[0]->onDrawRegion(region, this->overdrawPaint(paint)); in onDrawRegion() 134 fList[0]->onDrawOval(oval, this->overdrawPaint(paint)); in onDrawOval() 139 fList[0]->onDrawArc(arc, startAngle, sweepAngle, useCenter, this->overdrawPaint(paint)); in onDrawArc() 144 fList[0]->onDrawDRRect(outer, inner, this->overdrawPaint(paint)); in onDrawDRRect() 148 fList[0]->onDrawRRect(rect, this->overdrawPaint(paint)); in onDrawRRect() [all …]
|
D | SkTLList.h | 52 Node* node = iter.init(fList, Iter::kHead_IterStart); in ~SkTLList() 72 fList.addToHead(node); in addToHead() 81 fList.addToTail(node); in addToTail() 91 fList.addBefore(node, location.getNode()); in addBefore() 101 fList.addAfter(node, location.getNode()); in addAfter() 117 Node* node = fList.head(); in popHead() 126 Node* node = fList.head(); in popTail() 192 INHERITED::init(list.fList, start); 196 return this->nodeToObj(INHERITED::init(list.fList, start)); 266 fList.remove(node); in removeNode() [all …]
|
D | SkTMultiMap.h | 134 , fList(nullptr) { in ConstIter() 136 fList = &(*fIter); in ConstIter() 145 SkASSERT(fList); 146 return fList->fValue; 150 if (fList) { 151 fList = fList->fNext; 153 if (!fList) { 156 fList = &(*fIter); 163 const ValueList* fList; variable
|
D | SkEdgeBuilder.cpp | 122 Combine combine = is_vertical(edge) && !fList.empty() in addLine() 123 ? this->combineVertical(edge, (SkEdge*)fList.top()) in addLine() 127 case kTotal_Combine: fList.pop(); break; in addLine() 129 case kNo_Combine: fList.push_back(edge); break; in addLine() 137 Combine combine = is_vertical(edge) && !fList.empty() in addLine() 138 ? this->combineVertical(edge, (SkAnalyticEdge*)fList.top()) in addLine() 142 case kTotal_Combine: fList.pop(); break; in addLine() 144 case kNo_Combine: fList.push_back(edge); break; in addLine() 151 fList.push_back(line); in addLine() 158 fList.push_back(edge); in addQuad() [all …]
|
D | SkPtrRecorder.h | 43 int count() const { return fList.count(); } in count() 73 return fIndex < fSet.fList.count() ? fSet.fList[fIndex++].fPtr : nullptr; in next() 95 SkTDArray<Pair> fList; variable
|
/external/skqp/src/core/ |
D | SkPtrRecorder.cpp | 11 Pair* p = fList.begin(); in reset() 12 Pair* stop = fList.end(); in reset() 17 fList.reset(); in reset() 29 int count = fList.count(); in find() 33 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); in find() 37 return fList[index].fIndex; in find() 45 int count = fList.count(); in add() 49 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); in add() 54 *fList.insert(index) = pair; in add() 57 return fList[index].fIndex; in add() [all …]
|
D | SkOverdrawCanvas.cpp | 105 fList[0]->onDrawPatch(cubics, colors, texCoords, blendMode, fPaint); in onDrawPatch() 112 fList[0]->onDrawPaint(this->overdrawPaint(paint)); in onDrawPaint() 117 fList[0]->onDrawRect(rect, this->overdrawPaint(paint)); in onDrawRect() 122 fList[0]->onDrawRect(rect, fPaint); in onDrawEdgeAARect() 126 fList[0]->onDrawRegion(region, this->overdrawPaint(paint)); in onDrawRegion() 130 fList[0]->onDrawOval(oval, this->overdrawPaint(paint)); in onDrawOval() 135 fList[0]->onDrawArc(arc, startAngle, sweepAngle, useCenter, this->overdrawPaint(paint)); in onDrawArc() 140 fList[0]->onDrawDRRect(outer, inner, this->overdrawPaint(paint)); in onDrawDRRect() 144 fList[0]->onDrawRRect(rect, this->overdrawPaint(paint)); in onDrawRRect() 149 fList[0]->onDrawPoints(mode, count, points, this->overdrawPaint(paint)); in onDrawPoints() [all …]
|
D | SkTLList.h | 52 Node* node = iter.init(fList, Iter::kHead_IterStart); in ~SkTLList() 72 fList.addToHead(node); in addToHead() 81 fList.addToTail(node); in addToTail() 91 fList.addBefore(node, location.getNode()); in addBefore() 101 fList.addAfter(node, location.getNode()); in addAfter() 117 Node* node = fList.head(); in popHead() 126 Node* node = fList.head(); in popTail() 192 INHERITED::init(list.fList, start); 196 return this->nodeToObj(INHERITED::init(list.fList, start)); 266 fList.remove(node); in removeNode() [all …]
|
D | SkTMultiMap.h | 134 , fList(nullptr) { in ConstIter() 136 fList = &(*fIter); in ConstIter() 145 SkASSERT(fList); 146 return fList->fValue; 150 if (fList) { 151 fList = fList->fNext; 153 if (!fList) { 156 fList = &(*fIter); 163 const ValueList* fList; variable
|
D | SkEdgeBuilder.cpp | 122 Combine combine = is_vertical(edge) && !fList.empty() in addLine() 123 ? this->combineVertical(edge, (SkEdge*)fList.top()) in addLine() 127 case kTotal_Combine: fList.pop(); break; in addLine() 129 case kNo_Combine: fList.push_back(edge); break; in addLine() 137 Combine combine = is_vertical(edge) && !fList.empty() in addLine() 138 ? this->combineVertical(edge, (SkAnalyticEdge*)fList.top()) in addLine() 142 case kTotal_Combine: fList.pop(); break; in addLine() 144 case kNo_Combine: fList.push_back(edge); break; in addLine() 151 fList.push_back(line); in addLine() 158 fList.push_back(edge); in addQuad() [all …]
|
/external/skqp/include/private/ |
D | SkTInternalLList.h | 35 SkDEBUGCODE(SkPtrWrapper<SkTInternalLList<ClassName> > fList;) \ 76 entry->fList = nullptr; in remove() 82 SkASSERT(nullptr == entry->fList); in addToHead() 95 entry->fList = this; in addToHead() 101 SkASSERT(nullptr == entry->fList); in addToTail() 114 entry->fList = this; in addToTail() 143 newEntry->fList = this; in addBefore() 172 newEntry->fList = this; in addAfter() 193 SkASSERT(node->fList == &list); in concat() 194 node->fList = this; in concat() [all …]
|
/external/skia/include/private/ |
D | SkTInternalLList.h | 35 SkDEBUGCODE(SkPtrWrapper<SkTInternalLList<ClassName> > fList;) \ 76 entry->fList = nullptr; in remove() 82 SkASSERT(nullptr == entry->fList); in addToHead() 95 entry->fList = this; in addToHead() 101 SkASSERT(nullptr == entry->fList); in addToTail() 114 entry->fList = this; in addToTail() 143 newEntry->fList = this; in addBefore() 172 newEntry->fList = this; in addAfter() 193 SkASSERT(node->fList == &list); in concat() 194 node->fList = this; in concat() [all …]
|
/external/skqp/src/lazy/ |
D | SkDiscardableMemoryPool.cpp | 59 SkTInternalLList<PoolDiscardableMemory> fList; member in __anon45f636350111::DiscardableMemoryPool 138 SkASSERT(fList.isEmpty()); in ~DiscardableMemoryPool() 148 PoolDiscardableMemory* cur = iter.init(fList, Iter::kTail_IterStart); in dumpDownTo() 159 fList.remove(dm); in dumpDownTo() 173 fList.addToHead(dm.get()); in make() 185 fList.remove(dm); in removeFromPool() 187 SkASSERT(!fList.isInList(dm)); in removeFromPool() 202 fList.remove(dm); in lock() 203 fList.addToHead(dm); in lock()
|
/external/skia/src/lazy/ |
D | SkDiscardableMemoryPool.cpp | 59 SkTInternalLList<PoolDiscardableMemory> fList; member in __anonc6ded2be0111::DiscardableMemoryPool 138 SkASSERT(fList.isEmpty()); in ~DiscardableMemoryPool() 148 PoolDiscardableMemory* cur = iter.init(fList, Iter::kTail_IterStart); in dumpDownTo() 159 fList.remove(dm); in dumpDownTo() 173 fList.addToHead(dm.get()); in make() 185 fList.remove(dm); in removeFromPool() 187 SkASSERT(!fList.isInList(dm)); in removeFromPool() 202 fList.remove(dm); in lock() 203 fList.addToHead(dm); in lock()
|
/external/skia/src/gpu/ |
D | GrRenderTargetOpList.cpp | 123 : fList{std::move(op)} in OpChain() 130 fBounds = fList.head()->bounds(); 135 if (fList.empty()) { in visitProxies() 138 for (const auto& op : GrOp::ChainRange<>(fList.head())) { in visitProxies() 150 while (!fList.empty()) { in deleteOps() 151 pool->release(fList.popHead()); in deleteOps() 237 SkASSERT(!fList.empty()); in tryConcat() 242 if (fList.head()->classID() != list->head()->classID() || in tryConcat() 259 switch (fList.tail()->combineIfPossible(list->head(), caps)) { in tryConcat() 268 fList = DoConcat(std::move(fList), skstd::exchange(*list, List()), caps, pool, in tryConcat() [all …]
|
/external/skqp/src/gpu/ |
D | GrRenderTargetOpList.cpp | 121 : fList{std::move(op)} in OpChain() 128 fBounds = fList.head()->bounds(); 133 if (fList.empty()) { in visitProxies() 136 for (const auto& op : GrOp::ChainRange<>(fList.head())) { in visitProxies() 148 while (!fList.empty()) { in deleteOps() 149 pool->release(fList.popHead()); in deleteOps() 235 SkASSERT(!fList.empty()); in tryConcat() 240 if (fList.head()->classID() != list->head()->classID() || in tryConcat() 257 switch (fList.tail()->combineIfPossible(list->head(), caps)) { in tryConcat() 266 fList = DoConcat(std::move(fList), skstd::exchange(*list, List()), caps, pool, in tryConcat() [all …]
|