Lines Matching refs:fMemArray
47 that.move(fMemArray); in SkTArray()
84 that.move(fMemArray);
94 sk_free(fMemArray); in ~SkTArray()
421 array.move(fMemArray); in SkTArray()
443 fMemArray = nullptr;
448 fMemArray = sk_malloc_throw(fAllocCount, sizeof(T));
459 fMemArray = nullptr; in initWithPreallocatedStorage()
463 fMemArray = sk_malloc_throw(fAllocCount, sizeof(T)); in initWithPreallocatedStorage()
467 fMemArray = preallocStorage; in initWithPreallocatedStorage()
489 sk_careful_memcpy(dst, fMemArray, fCount * sizeof(T)); in SK_WHEN()
543 sk_free(fMemArray); in checkRealloc()
546 fMemArray = newMemArray; in checkRealloc()
553 void* fMemArray; member