Lines Matching defs:storage
43 * Creates an empty array with no initial storage
443 * Creates an empty array that will use the passed storage block until it
447 SkTArray(SkAlignedSTStorage<N,T>* storage) {
448 this->initWithPreallocatedStorage(0, storage->get(), N);
452 * Copy a C array, using preallocated storage if preAllocCount >=
453 * count. Otherwise storage will only be used when array shrinks
457 SkTArray(const T* array, int count, SkAlignedSTStorage<N,T>* storage) {
458 this->initWithPreallocatedStorage(count, storage->get(), N);
494 /** In the following move and copy methods, 'dst' is assumed to be uninitialized raw storage.
495 * In the following move methods, 'src' is destroyed leaving behind uninitialized raw storage.