Searched refs:usedSize (Results 1 – 5 of 5) sorted by relevance
/aosp12/frameworks/base/libs/hwui/tests/unit/ |
H A D | LinearAllocatorTests.cpp | 32 EXPECT_EQ(0u, la.usedSize()); in TEST() 36 EXPECT_LE(64u, la.usedSize()); in TEST() 37 EXPECT_GT(80u, la.usedSize()); in TEST() 39 EXPECT_LE(64u + sizeof(SimplePair), la.usedSize()); in TEST() 40 EXPECT_GT(80u + sizeof(SimplePair), la.usedSize()); in TEST() 73 EXPECT_LE(100u, la.usedSize()); in TEST() 75 EXPECT_GT(16u, la.usedSize()); in TEST() 76 size_t emptySize = la.usedSize(); in TEST() 80 EXPECT_LE(emptySize, la.usedSize()); in TEST() 83 EXPECT_EQ(emptySize, la.usedSize()); in TEST()
|
/aosp12/packages/services/Car/tests/obd2_test/src/com/android/car/obd2/test/ |
H A D | Utils.java | 41 int usedSize = arrays[0].length; in concatIntArrays() local 45 System.arraycopy(array, 0, newArray, usedSize, length); in concatIntArrays() 46 usedSize += length; in concatIntArrays()
|
/aosp12/frameworks/base/libs/hwui/pipeline/skia/ |
H A D | SkiaDisplayList.h | 49 size_t getUsedSize() const { return allocator.usedSize() + mDisplayList.usedSize(); } in getUsedSize()
|
/aosp12/frameworks/base/libs/hwui/utils/ |
H A D | LinearAllocator.h | 117 size_t usedSize() const { return mTotalAllocated - mWastedSpace; } in usedSize() function
|
/aosp12/frameworks/base/libs/hwui/ |
H A D | RecordingCanvas.h | 77 size_t usedSize() const { return fUsed; } in usedSize() function
|