Searched refs:SkArenaAllocWithReset (Results 1 - 8 of 8) sorted by relevance
/third_party/skia/src/core/ |
H A D | SkArenaAlloc.cpp | 138 SkArenaAllocWithReset::SkArenaAllocWithReset(char* block, in SkArenaAllocWithReset() function in SkArenaAllocWithReset 146 void SkArenaAllocWithReset::reset() { in reset() 147 this->~SkArenaAllocWithReset(); in reset() 148 new (this) SkArenaAllocWithReset{fFirstBlock, fFirstSize, fFirstHeapAllocationSize}; in reset()
|
H A D | SkArenaAlloc.h | 285 class SkArenaAllocWithReset : public SkArenaAlloc { 287 SkArenaAllocWithReset(char* block, size_t blockSize, size_t firstHeapAllocation); 289 explicit SkArenaAllocWithReset(size_t firstHeapAllocation) 290 : SkArenaAllocWithReset(nullptr, 0, firstHeapAllocation) {} 315 : private std::array<char, InlineStorageSize>, public SkArenaAllocWithReset { 318 : SkArenaAllocWithReset{this->data(), this->size(), firstHeapAllocation} {}
|
H A D | SkRemoteGlyphCache.cpp | 352 SkArenaAllocWithReset fPathAlloc{256};
|
/third_party/skia/src/xml/ |
H A D | SkDOMParser.h | 15 SkDOMParser(SkArenaAllocWithReset* chunk) : SkXMLParser(&fParserError), fAlloc(chunk) { in SkDOMParser() 36 SkArenaAllocWithReset* fAlloc;
|
H A D | SkDOM.h | 108 SkArenaAllocWithReset fAlloc;
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGXMLDOM.cpp | 17 SkSVGDOMParser(SkArenaAllocWithReset* chunk) : SkDOMParser(chunk) {} in SkSVGDOMParser()
|
/third_party/skia/src/gpu/ |
H A D | GrOpFlushState.h | 290 SkArenaAllocWithReset fArena{sizeof(GrPipeline) * 100};
|
/third_party/skia/bench/ |
H A D | TriangulatorBench.cpp | 91 SkArenaAllocWithReset fArena{GrTriangulator::kArenaDefaultChunkSize};
|
Completed in 6 milliseconds