Searched refs:mStorage (Results 1 – 4 of 4) sorted by relevance
/system/core/libpixelflinger/codeflinger/tinyutils/ |
D | VectorImpl.cpp | 47 : mStorage(0), mCount(0), mFlags(flags), mItemSize(itemSize) in VectorImpl() 52 : mStorage(rhs.mStorage), mCount(rhs.mCount), in VectorImpl() 55 if (mStorage) { in VectorImpl() 56 SharedBuffer::sharedBuffer(mStorage)->acquire(); in VectorImpl() 77 mStorage = rhs.mStorage; in operator =() 79 SharedBuffer::sharedBuffer(mStorage)->acquire(); in operator =() 81 mStorage = 0; in operator =() 90 if (mStorage) { in editArrayImpl() 91 SharedBuffer* sb = SharedBuffer::sharedBuffer(mStorage)->attemptEdit(); in editArrayImpl() 95 _do_copy(sb->data(), mStorage, mCount); in editArrayImpl() [all …]
|
D | VectorImpl.h | 60 inline const void* arrayImpl() const { return mStorage; } in arrayImpl() 125 void * mStorage; // base address of the vector variable
|
/system/core/libutils/ |
D | VectorImpl.cpp | 45 : mStorage(0), mCount(0), mFlags(flags), mItemSize(itemSize) in VectorImpl() 50 : mStorage(rhs.mStorage), mCount(rhs.mCount), in VectorImpl() 53 if (mStorage) { in VectorImpl() 54 SharedBuffer::bufferFromData(mStorage)->acquire(); in VectorImpl() 74 mStorage = rhs.mStorage; in operator =() 76 SharedBuffer::bufferFromData(mStorage)->acquire(); in operator =() 78 mStorage = 0; in operator =() 87 if (mStorage) { in editArrayImpl() 88 SharedBuffer* sb = SharedBuffer::bufferFromData(mStorage)->attemptEdit(); in editArrayImpl() 92 _do_copy(sb->data(), mStorage, mCount); in editArrayImpl() [all …]
|
/system/core/include/utils/ |
D | VectorImpl.h | 59 inline const void* arrayImpl() const { return mStorage; } in arrayImpl() 122 void * mStorage; // base address of the vector variable
|