Home
last modified time | relevance | path

Searched refs:mAllocations (Results 1 – 14 of 14) sorted by relevance

/dports/lang/spidermonkey60/firefox-60.9.0/dom/media/webrtc/
H A DMediaEngineWebRTCAudio.cpp462 if (mAllocations.IsEmpty()) { in UpdateSingleSource()
566 !mAllocations[i].mEnabled, in Deallocate()
571 if (mAllocations[i].mStream && IsTrackIDExplicit(mAllocations[i].mTrackID)) { in Deallocate()
572 mAllocations[i].mStream->EndTrack(mAllocations[i].mTrackID); in Deallocate()
577 mAllocations.RemoveElementAt(i); in Deallocate()
580 if (mAllocations.IsEmpty()) { in Deallocate()
610 if (!mAllocations.IsEmpty() && mAllocations[0].mStream && in SetTrack()
622 mAllocations[i].mStream = aStream; in SetTrack()
743 if (i == mAllocations.NoIndex) { in Pull()
1030 if (!mAllocations.IsEmpty() && mAllocations[0].mStream && in InsertInGraph()
[all …]
H A DMediaEngineWebRTC.h525 nsTArray<Allocation> mAllocations; variable
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/OgreMain/src/
H A DOgreMemoryTracker.cpp62 assert(mAllocations.find(ptr) == mAllocations.end() && "Double allocation with same address - " in _recordAlloc()
66 mAllocations[ptr] = Alloc(sz, pool, file, ln, func); in _recordAlloc()
85 AllocationMap::iterator i = mAllocations.find(ptr); in _recordDealloc()
86 assert(i != mAllocations.end() && "Unable to locate allocation unit - " in _recordDealloc()
93 mAllocations.erase(i); in _recordDealloc()
113 if (mAllocations.empty()) in reportLeaks()
120 …os << "Ogre Memory: (" << mAllocations.size() << ") Allocation(s) with total " << mTotalAllocation… in reportLeaks()
124 for (AllocationMap::const_iterator i = mAllocations.begin(); i != mAllocations.end(); ++i) in reportLeaks()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/dawn/src/dawn_wire/
H A DWireDeserializeAllocator.cpp44 mAllocations.push_back(allocation); in GetSpace()
51 for (auto allocation : mAllocations) { in Reset()
54 mAllocations.clear(); in Reset()
H A DWireDeserializeAllocator.h39 std::vector<char*> mAllocations; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/dawn_wire/
H A DWireDeserializeAllocator.cpp44 mAllocations.push_back(allocation); in GetSpace()
51 for (auto allocation : mAllocations) { in Reset()
54 mAllocations.clear(); in Reset()
H A DWireDeserializeAllocator.h39 std::vector<char*> mAllocations; variable
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/dawn/src/dawn_native/vulkan/
H A DBindGroupLayoutVk.cpp155 for (const SingleDescriptorSetAllocation& allocation : mAllocations) { in ~BindGroupLayout()
158 mAllocations.clear(); in ~BindGroupLayout()
184 return {{index, mAllocations[index].set}}; in AllocateOneDescriptorSet()
223 mAllocations.push_back({descriptorPool, descriptorSet}); in AllocateOneDescriptorSet()
224 return {{mAllocations.size() - 1, descriptorSet}}; in AllocateOneDescriptorSet()
H A DBindGroupLayoutVk.h80 std::vector<SingleDescriptorSetAllocation> mAllocations; variable
/dports/lang/spidermonkey78/firefox-78.9.0/tools/profiler/core/
H A Dmemory_hooks.cpp201 AllocationTracker() : mAllocations(), mMutex() {} in AllocationTracker()
205 if (!mAllocations.put(memoryAddress)) { in AddMemoryAddress()
212 mAllocations.clearAndCompact(); in Reset()
220 auto ptr = mAllocations.lookup(memoryAddress); in RemoveMemoryAddressIfFound()
223 mAllocations.remove(ptr); in RemoveMemoryAddressIfFound()
231 AllocationSet mAllocations; member in mozilla::profiler::AllocationTracker
/dports/mail/thunderbird/thunderbird-91.8.0/tools/profiler/core/
H A Dmemory_hooks.cpp201 AllocationTracker() : mAllocations(), mMutex() {} in AllocationTracker()
205 if (!mAllocations.put(memoryAddress)) { in AddMemoryAddress()
212 mAllocations.clearAndCompact(); in Reset()
220 auto ptr = mAllocations.lookup(memoryAddress); in RemoveMemoryAddressIfFound()
223 mAllocations.remove(ptr); in RemoveMemoryAddressIfFound()
231 AllocationSet mAllocations; member in mozilla::profiler::AllocationTracker
/dports/www/firefox-esr/firefox-91.8.0/tools/profiler/core/
H A Dmemory_hooks.cpp201 AllocationTracker() : mAllocations(), mMutex() {} in AllocationTracker()
205 if (!mAllocations.put(memoryAddress)) { in AddMemoryAddress()
212 mAllocations.clearAndCompact(); in Reset()
220 auto ptr = mAllocations.lookup(memoryAddress); in RemoveMemoryAddressIfFound()
223 mAllocations.remove(ptr); in RemoveMemoryAddressIfFound()
231 AllocationSet mAllocations; member in mozilla::profiler::AllocationTracker
/dports/www/firefox/firefox-99.0/tools/profiler/core/
H A Dmemory_hooks.cpp250 AllocationTracker() : mAllocations(), mMutex() {} in AllocationTracker()
254 if (!mAllocations.put(memoryAddress)) { in AddMemoryAddress()
261 mAllocations.clearAndCompact(); in Reset()
269 auto ptr = mAllocations.lookup(memoryAddress); in RemoveMemoryAddressIfFound()
272 mAllocations.remove(ptr); in RemoveMemoryAddressIfFound()
280 AllocationSet mAllocations; member in mozilla::profiler::AllocationTracker
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/OgreMain/include/
H A DOgreMemoryTracker.h111 AllocationMap mAllocations;