HomeSort by relevance Sort by last modified time
    Searched refs:writeToMemory (Results 1 - 18 of 18) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/android/layers/
PictureLayerContent.cpp 150 void* matrixStorage = malloc(canvas->getTotalMatrix().writeToMemory(NULL));
151 void* clipStorage = malloc(canvas->getTotalClip().writeToMemory(NULL));
153 canvas->getTotalMatrix().writeToMemory(matrixStorage);
154 canvas->getTotalClip().writeToMemory(clipStorage);
  /external/skia/include/core/
SkWriter32.h 113 rrect.writeToMemory(this->reserve(SkRRect::kSizeInMemory));
117 size_t size = path.writeToMemory(NULL);
119 path.writeToMemory(this->reserve(size));
123 size_t size = matrix.writeToMemory(NULL);
125 matrix.writeToMemory(this->reserve(size));
129 size_t size = rgn.writeToMemory(NULL);
131 rgn.writeToMemory(this->reserve(size));
SkRRect.h 263 uint32_t writeToMemory(void* buffer) const;
SkRegion.h 354 uint32_t writeToMemory(void* buffer) const;
SkMatrix.h 531 uint32_t writeToMemory(void* buffer) const;
SkPath.h     [all...]
  /external/skia/tests/
ColorFilterTest.cpp 23 wb.writeToMemory(storage.get());
MatrixTest.cpp 115 uint32_t size1 = m.writeToMemory(NULL);
116 uint32_t size2 = m.writeToMemory(buffer);
126 size3 = m2.writeToMemory(buffer2);
PathTest.cpp     [all...]
  /external/skia/src/core/
SkOrderedWriteBuffer.h 38 void writeToMemory(void* dst) { fWriter.flatten(dst); }
SkPictureFlat.cpp 127 buffer.writeToMemory(result->data());
SkRRect.cpp 254 uint32_t SkRRect::writeToMemory(void* buffer) const {
SkRegion.cpp 1093 uint32_t SkRegion::writeToMemory(void* storage) const {
    [all...]
SkMatrix.cpp     [all...]
SkPaint.cpp     [all...]
SkPath.cpp     [all...]
  /external/skia/src/pipe/
SkGPipeWrite.cpp 350 buffer.writeToMemory(dst);
607 if (this->needOpBytes(matrix.writeToMemory(NULL))) {
617 if (this->needOpBytes(matrix.writeToMemory(NULL))) {
649 if (this->needOpBytes(path.writeToMemory(NULL))) {
660 if (this->needOpBytes(region.writeToMemory(NULL))) {
734 if (this->needOpBytes(path.writeToMemory(NULL))) {
795 size_t opBytesNeeded = matrix.writeToMemory(NULL);
882 size_t size = 4 + SkAlign4(byteLength) + path.writeToMemory(NULL);
885 size += matrix->writeToMemory(NULL);
    [all...]
  /frameworks/base/core/jni/android/graphics/
Region.cpp 193 size_t size = region->writeToMemory(NULL);
195 region->writeToMemory(p->writeInplace(size));

Completed in 559 milliseconds