OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fAlloc
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/skia/src/core/
SkEdgeBuilder.h
30
SkChunkAlloc
fAlloc
;
36
* empty, as we will have preallocated room for the pointers in
fAlloc
's
SkPictureStateTree.h
131
SkChunkAlloc
fAlloc
;
SkRecord.h
34
SkRecord() :
fAlloc
(kChunkBytes), fCount(0), fReserved(0) {}
72
return (T*)
fAlloc
.allocThrow(SkAlignPtr(sizeof(T) * count));
130
//
fAlloc
: [SkRecords::DrawRect][SkRecords::DrawPosTextH][SkRecords::DrawRect]...
133
// stored in
fAlloc
either; we just write raw data there. But we need that type information.
136
// 2) store the type data manually in
fAlloc
at the start of each record
182
// An untyped pointer to some bytes in
fAlloc
. This is the interface for polymorphic dispatch:
186
// Point this record to its data in
fAlloc
. Returns ptr for convenience.
193
// Get the data in
fAlloc
, assuming it's of type T.
223
//
fAlloc
needs to be a data structure which can append variable length data in contiguous
229
SkChunkAlloc
fAlloc
;
[
all
...]
/external/chromium_org/third_party/skia/include/xml/
SkDOM.h
85
SkChunkAlloc
fAlloc
;
/external/chromium_org/third_party/skia/src/xml/
SkDOM.cpp
68
SkDOM::SkDOM() :
fAlloc
(kMinChunkSize), fRoot(NULL)
204
SkDOMParser(SkChunkAlloc* chunk) : SkXMLParser(&fParserError),
fAlloc
(chunk)
217
SkDOM::Node* node = (SkDOM::Node*)
fAlloc
->alloc(sizeof(SkDOM::Node) + attrCount * sizeof(SkDOM::Attr),
248
fElemName = dupstr(
fAlloc
, elem);
255
attr->fName = dupstr(
fAlloc
, name);
256
attr->fValue = dupstr(
fAlloc
, value);
284
SkChunkAlloc*
fAlloc
;
295
fAlloc
.reset();
296
SkDOMParser parser(&
fAlloc
);
301
fAlloc
.reset()
[
all
...]
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
RawConverter.java
371
Allocation
fAlloc
= Allocation.createTyped(rs, builder.create());
372
fAlloc
.copyFrom(fArray);
373
return
fAlloc
;
[
all
...]
Completed in 853 milliseconds