Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrBlockAllocator.h337 Block* findOwningBlock(const void* ptr);
338 const Block* findOwningBlock(const void* ptr) const { in findOwningBlock() function
339 return const_cast<GrBlockAllocator*>(this)->findOwningBlock(ptr); in findOwningBlock()
615 return this->findOwningBlock(p); in owningBlock()
DGrBlockAllocator.cpp82 GrBlockAllocator::Block* GrBlockAllocator::findOwningBlock(const void* p) { in findOwningBlock() function in GrBlockAllocator
/external/skia/tests/
DGrBlockAllocatorTest.cpp517 const GrBlockAllocator::Block* allocOwner = poolB->findOwningBlock(bAlloc); in DEF_TEST()
534 REPORTER_ASSERT(r, (uintptr_t) poolA->findOwningBlock(bAlloc) == (uintptr_t) allocOwner); in DEF_TEST()
535 REPORTER_ASSERT(r, !poolB->findOwningBlock(bAlloc)); in DEF_TEST()