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

/external/skia/src/core/
H A DSkMatrix.cpp1576 static const size_t sizeInMemory = 9 * sizeof(SkScalar); local
1578 memcpy(buffer, fMat, sizeInMemory);
1580 return sizeInMemory;
1584 static const size_t sizeInMemory = 9 * sizeof(SkScalar); local
1585 if (length < sizeInMemory) {
1589 memcpy(fMat, buffer, sizeInMemory);
1592 return sizeInMemory;

Completed in 30 milliseconds