OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fSizeInMemory
(Results
1 - 3
of
3
) sorted by null
/external/skia/src/core/
SkYUVPlanesCache.h
23
*
fSizeInMemory
: Amount of memory allocated for each plane (may be different from
31
size_t
fSizeInMemory
[3];
/external/skia/src/gpu/
GrYUVProvider.cpp
43
planes[1] = (uint8_t*)planes[0] + yuvInfo->
fSizeInMemory
[0];
44
planes[2] = (uint8_t*)planes[1] + yuvInfo->
fSizeInMemory
[1];
56
yuvInfo->
fSizeInMemory
[i] = yuvInfo->fRowBytes[i] * yuvInfo->fSize[i].fHeight;
57
totalSize += yuvInfo->
fSizeInMemory
[i];
66
planes[1] = (uint8_t*)planes[0] + yuvInfo->
fSizeInMemory
[0];
67
planes[2] = (uint8_t*)planes[1] + yuvInfo->
fSizeInMemory
[1];
/external/skia/tests/
YUVCacheTest.cpp
38
yuvInfo.
fSizeInMemory
[i] = 800 * i;
66
REPORTER_ASSERT(reporter, yuvInfo.
fSizeInMemory
[i] == yuvInfoRead.
fSizeInMemory
[i]);
Completed in 80 milliseconds