Searched defs:fAlloc (Results 1 - 4 of 4) sorted by relevance

/external/skia/src/core/
H A DSkEdgeBuilder.h30 SkChunkAlloc fAlloc; member in class:SkEdgeBuilder
36 * empty, as we will have preallocated room for the pointers in fAlloc's
H A DSkRecord.h38 , fAlloc(kInlineAllocLgBytes+1, // First malloc'd block is 2x as large as fInlineAlloc.
71 return (T*)fAlloc.alloc(sizeof(T) * count, SK_MALLOC_THROW);
125 // fAlloc: [SkRecords::DrawRect][SkRecords::DrawPosTextH][SkRecords::DrawRect]...
147 // A typed pointer to some bytes in fAlloc. visit() and mutate() allow polymorphic dispatch.
155 // Point this record to its data in fAlloc. Returns ptr for convenience.
192 // fAlloc needs to be a data structure which can append variable length data in contiguous
194 SkVarAlloc fAlloc; member in class:SkRecord
/external/skia/include/xml/
H A DSkDOM.h91 SkChunkAlloc fAlloc; member in class:SkDOM
/external/skia/src/xml/
H A DSkDOM.cpp69 SkDOM::SkDOM() : fAlloc(kMinChunkSize), fRoot(NULL)
204 SkDOMParser(SkChunkAlloc* chunk) : SkXMLParser(&fParserError), fAlloc(chunk)
206 fAlloc->reset();
221 SkDOM::Node* node = (SkDOM::Node*)fAlloc->alloc(sizeof(SkDOM::Node) + attrCount * sizeof(SkDOM::Attr),
255 attr->fName = dupstr(fAlloc, name);
256 attr->fValue = dupstr(fAlloc, value);
297 fElemName = dupstr(fAlloc, elem);
303 SkChunkAlloc* fAlloc; member in class:SkDOMParser
316 SkDOMParser parser(&fAlloc);
321 fAlloc
[all...]

Completed in 106 milliseconds