Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkTDynamicHash.h40 size_t approxBytesUsed() const { return fTable.approxBytesUsed(); } in approxBytesUsed() function
DSkTHash.h71 size_t approxBytesUsed() const { return fCapacity * sizeof(Slot); } in approxBytesUsed() function
455 size_t approxBytesUsed() const { return fTable.approxBytesUsed(); } in approxBytesUsed() function
546 size_t approxBytesUsed() const { return fTable.approxBytesUsed(); } in approxBytesUsed() function
/external/skia/src/gpu/ganesh/
DGrHashMapWithCache.h36 size_t approxBytesUsed() const { return fMap.approxBytesUsed(); } in approxBytesUsed() function
DGrThreadSafeCache.cpp41 return fUniquelyKeyedEntryMap.approxBytesUsed(); in approxBytesUsedForHash()
/external/skia/tests/
DHashTest.cpp35 REPORTER_ASSERT(r, map.approxBytesUsed() > 0); in DEF_TEST()
140 REPORTER_ASSERT(r, map.approxBytesUsed() >= 4 * (sizeof(int) + sizeof(std::string_view))); in DEF_TEST()
170 REPORTER_ASSERT(r, map.approxBytesUsed() >= (sizeof(int) + sizeof(std::string_view))); in DEF_TEST()
192 REPORTER_ASSERT(r, set.approxBytesUsed() >= 4 * sizeof(std::string_view)); in DEF_TEST()
207 REPORTER_ASSERT(r, set.approxBytesUsed() >= sizeof(std::string_view)); in DEF_TEST()
389 REPORTER_ASSERT(r, s.approxBytesUsed() == (sizeof(int) + sizeof(uint32_t)) * cap); in DEF_TEST()