Home
last modified time | relevance | path

Searched refs:sizeInMemory (Results 1 – 1 of 1) sorted by relevance

/external/skia/src/core/
DSkMatrix.cpp1619 static const size_t sizeInMemory = 9 * sizeof(SkScalar); in writeToMemory() local
1621 memcpy(buffer, fMat, sizeInMemory); in writeToMemory()
1623 return sizeInMemory; in writeToMemory()
1627 static const size_t sizeInMemory = 9 * sizeof(SkScalar); in readFromMemory() local
1628 if (length < sizeInMemory) { in readFromMemory()
1632 memcpy(fMat, buffer, sizeInMemory); in readFromMemory()
1635 return sizeInMemory; in readFromMemory()