Home
last modified time | relevance | path

Searched refs:mStorage (Results 1 – 16 of 16) sorted by relevance

/third_party/flutter/skia/third_party/externals/dawn/src/common/
DSerialQueue.h54 DAWN_ASSERT(this->Empty() || this->mStorage.back().first <= serial);
56 if (this->Empty() || this->mStorage.back().first < serial) {
57 this->mStorage.emplace_back(serial, std::vector<T>{});
59 this->mStorage.back().second.push_back(value);
64 DAWN_ASSERT(this->Empty() || this->mStorage.back().first <= serial);
66 if (this->Empty() || this->mStorage.back().first < serial) {
67 this->mStorage.emplace_back(serial, std::vector<T>{});
69 this->mStorage.back().second.push_back(std::move(value));
75 DAWN_ASSERT(this->Empty() || this->mStorage.back().first <= serial);
76 this->mStorage.emplace_back(serial, values);
[all …]
DSerialStorage.h119 Storage mStorage; variable
126 return mStorage.empty(); in Empty()
131 return {mStorage.begin(), mStorage.end()}; in IterateAll()
137 return {mStorage.begin(), FindUpTo(serial)}; in IterateUpTo()
142 return {mStorage.begin(), mStorage.end()}; in IterateAll()
147 return {mStorage.begin(), FindUpTo(serial)}; in IterateUpTo()
152 mStorage.clear(); in Clear()
157 mStorage.erase(mStorage.begin(), FindUpTo(serial)); in ClearUpTo()
163 return mStorage.begin()->first; in FirstSerial()
169 return mStorage.back().first; in LastSerial()
[all …]
DSerialMap.h51 this->mStorage[serial].emplace_back(value);
56 this->mStorage[serial].emplace_back(value);
/third_party/skia/third_party/externals/dawn/src/common/
DSerialQueue.h54 DAWN_ASSERT(this->Empty() || this->mStorage.back().first <= serial);
56 if (this->Empty() || this->mStorage.back().first < serial) {
57 this->mStorage.emplace_back(serial, std::vector<Value>{});
59 this->mStorage.back().second.push_back(value);
64 DAWN_ASSERT(this->Empty() || this->mStorage.back().first <= serial);
66 if (this->Empty() || this->mStorage.back().first < serial) {
67 this->mStorage.emplace_back(serial, std::vector<Value>{});
69 this->mStorage.back().second.push_back(std::move(value));
75 DAWN_ASSERT(this->Empty() || this->mStorage.back().first <= serial);
76 this->mStorage.emplace_back(serial, values);
[all …]
DSerialStorage.h119 Storage mStorage; variable
126 return mStorage.empty(); in Empty()
131 return {mStorage.begin(), mStorage.end()}; in IterateAll()
137 return {mStorage.begin(), FindUpTo(serial)}; in IterateUpTo()
142 return {mStorage.begin(), mStorage.end()}; in IterateAll()
147 return {mStorage.begin(), FindUpTo(serial)}; in IterateUpTo()
152 mStorage.clear(); in Clear()
157 mStorage.erase(mStorage.begin(), FindUpTo(serial)); in ClearUpTo()
163 return mStorage.begin()->first; in FirstSerial()
169 return mStorage.back().first; in LastSerial()
[all …]
DSerialMap.h52 this->mStorage[serial].emplace_back(value);
57 this->mStorage[serial].emplace_back(value);
/third_party/flutter/skia/third_party/externals/angle2/src/common/
DFixedVector.h88 Storage mStorage; variable
111 std::fill(mStorage.begin(), mStorage.begin() + count, value); in FixedVector()
161 return mStorage.at(pos); in at()
169 return mStorage.at(pos); in at()
176 return mStorage[pos];
184 return mStorage[pos];
190 return mStorage.data(); in data()
196 return mStorage.data(); in data()
202 return mStorage.begin(); in begin()
208 return mStorage.begin(); in begin()
[all …]
/third_party/skia/third_party/externals/angle2/src/common/
DFixedVector.h91 Storage mStorage; variable
114 std::fill(mStorage.begin(), mStorage.begin() + count, value); in FixedVector()
164 return mStorage.at(pos); in at()
172 return mStorage.at(pos); in at()
179 return mStorage[pos];
187 return mStorage[pos];
193 return mStorage.data(); in data()
199 return mStorage.data(); in data()
205 return mStorage.begin(); in begin()
211 return mStorage.begin(); in begin()
[all …]
/third_party/skia/third_party/externals/oboe/src/fifo/
DFifoBuffer.cpp30 , mStorage(nullptr) in FifoBuffer()
37 mStorage = new uint8_t[bytesPerBuffer]; in FifoBuffer()
48 , mStorage(dataStorageAddress) in FifoBuffer()
55 mStorage = dataStorageAddress; in FifoBuffer()
61 delete[] mStorage; in ~FifoBuffer()
80 uint8_t *source = &mStorage[convertFramesToBytes(readIndex)]; in read()
91 source = &mStorage[0]; in read()
123 uint8_t *destination = &mStorage[byteIndex]; in write()
134 destination = &mStorage[0]; in write()
DFifoBuffer.h90 uint8_t* mStorage; variable
/third_party/skia/third_party/externals/oboe/src/common/
DFixedBlockAdapter.cpp27 mStorage = std::make_unique<uint8_t[]>(bytesPerFixedBlock); in open()
34 mStorage.reset(nullptr); in close()
DFixedBlockWriter.cpp33 memcpy(mStorage.get() + mPosition, buffer, bytesToStore); in writeToStorage()
48 bytesWritten = mFixedBlockProcessor.onProcessFixedBlock(mStorage.get(), mSize); in write()
DFixedBlockReader.cpp43 memcpy(buffer, mStorage.get() + mPosition, bytesToRead); in readFromStorage()
65 bytesRead = mFixedBlockProcessor.onProcessFixedBlock(mStorage.get(), mSize); in read()
DFixedBlockAdapter.h62 std::unique_ptr<uint8_t[]> mStorage; // Store data here while assembling buffers. variable
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DShaderStorageBlockOutputHLSL.cpp201 mStorage(storage) in BlockInfoVisitor()
226 BlockInfoVisitor childVisitor(variableName, mStorage, mShaderVarToFieldMap, mBlockInfoOut); in enterStructAccess()
227 childVisitor.getEncoder(mStorage)->enterAggregateType(structVar); in enterStructAccess()
229 childVisitor.getEncoder(mStorage)->exitAggregateType(structVar); in enterStructAccess()
231 int offset = static_cast<int>(getEncoder(mStorage)->getCurrentOffset()); in enterStructAccess()
232 int arrayStride = static_cast<int>(childVisitor.getEncoder(mStorage)->getCurrentOffset()); in enterStructAccess()
267 TLayoutBlockStorage mStorage; member in sh::__anonef4d04ba0111::BlockInfoVisitor
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DShaderStorageBlockOutputHLSL.cpp202 mStorage(storage) in BlockInfoVisitor()
227 BlockInfoVisitor childVisitor(variableName, mStorage, mShaderVarToFieldMap, mBlockInfoOut); in enterStructAccess()
228 childVisitor.getEncoder(mStorage)->enterAggregateType(structVar); in enterStructAccess()
230 childVisitor.getEncoder(mStorage)->exitAggregateType(structVar); in enterStructAccess()
232 int offset = static_cast<int>(getEncoder(mStorage)->getCurrentOffset()); in enterStructAccess()
233 int arrayStride = static_cast<int>(childVisitor.getEncoder(mStorage)->getCurrentOffset()); in enterStructAccess()
268 TLayoutBlockStorage mStorage; member in sh::__anon055bfae50111::BlockInfoVisitor