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

/external/chromium_org/third_party/skia/src/core/
H A DSkMatrix.cpp1602 static const size_t sizeInMemory = 9 * sizeof(SkScalar); local
1604 memcpy(buffer, fMat, sizeInMemory);
1606 return sizeInMemory;
1610 static const size_t sizeInMemory = 9 * sizeof(SkScalar); local
1611 if (length < sizeInMemory) {
1615 memcpy(fMat, buffer, sizeInMemory);
1618 return sizeInMemory;
/external/skia/src/core/
H A DSkMatrix.cpp1602 static const size_t sizeInMemory = 9 * sizeof(SkScalar); local
1604 memcpy(buffer, fMat, sizeInMemory);
1606 return sizeInMemory;
1610 static const size_t sizeInMemory = 9 * sizeof(SkScalar); local
1611 if (length < sizeInMemory) {
1615 memcpy(fMat, buffer, sizeInMemory);
1618 return sizeInMemory;

Completed in 354 milliseconds