Searched refs:Allocation (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/base/memory/
H A Ddiscardable_memory_manager.h64 typedef DiscardableMemoryManagerAllocation Allocation; typedef in class:base::internal::DiscardableMemoryManager
93 void Register(Allocation* allocation, size_t bytes);
96 void Unregister(Allocation* allocation);
101 bool AcquireLock(Allocation* allocation, bool* purged);
105 void ReleaseLock(Allocation* allocation);
112 bool IsRegisteredForTest(Allocation* allocation) const;
116 bool CanBePurgedForTest(Allocation* allocation) const;
130 typedef HashingMRUCache<Allocation*, AllocationInfo> AllocationMap;
H A Ddiscardable_memory_manager.cc63 void DiscardableMemoryManager::Register(Allocation* allocation, size_t bytes) {
69 void DiscardableMemoryManager::Unregister(Allocation* allocation) {
84 bool DiscardableMemoryManager::AcquireLock(Allocation* allocation,
122 void DiscardableMemoryManager::ReleaseLock(Allocation* allocation) {
145 Allocation* allocation) const {
152 Allocation* allocation) const {
183 Allocation* allocation = it->first;
/external/llvm/tools/lli/
H A DRemoteMemoryManager.h31 struct Allocation { struct in class:llvm::RemoteMemoryManager
32 Allocation() {} function in struct:llvm::RemoteMemoryManager::Allocation
33 Allocation(sys::MemoryBlock mb, unsigned a, bool code) function in struct:llvm::RemoteMemoryManager::Allocation
42 // This vector contains Allocation objects for all sections which we have
45 SmallVector<Allocation, 2> AllocatedSections;
47 // This vector contains pointers to Allocation objects for any sections we
51 SmallVector<Allocation, 2> UnmappedSections;
55 DenseMap<uint64_t, Allocation> MappedSections;
H A DRemoteMemoryManager.cpp26 for (SmallVector<Allocation, 2>::iterator
41 AllocatedSections.push_back( Allocation(Block, Alignment, true) );
43 UnmappedSections.push_back( Allocation(Block, Alignment, true) );
57 AllocatedSections.push_back( Allocation(Block, Alignment, false) );
59 UnmappedSections.push_back( Allocation(Block, Alignment, false) );
94 SmallVector<std::pair<Allocation, uint64_t>, 16> Offsets;
99 Allocation &Section = UnmappedSections[i];
109 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset));
116 Allocation &Section = UnmappedSections[i];
126 Offsets.push_back(std::pair<Allocation,uint64_
[all...]
/external/valgrind/main/drd/tests/
H A Dannotate_hb_race.stderr.exp4 Allocation context: BSS section of annotate_hb_race
H A Dread_and_free_race.stderr.exp8 Address 0x........ is at offset 0 from 0x......... Allocation context:
H A Dtc21_pthonce.stderr.exp7 Allocation context: BSS section of tc21_pthonce
17 Allocation context: BSS section of tc21_pthonce
H A Dannotate_smart_pointer2.stderr.exp7 Address 0x........ is at offset ... from 0x......... Allocation context:
H A Dannotate_barrier.stderr.exp29 Address 0x........ is at offset 0 from 0x......... Allocation context:
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dturnserver.cc65 // IDs used for posted messages for TurnServer::Allocation.
75 class TurnServer::Allocation : public rtc::MessageHandler, class in class:cricket::TurnServer
78 Allocation(TurnServer* server_,
82 virtual ~Allocation();
96 sigslot::signal1<Allocation*> SignalDestroyed;
298 Allocation* allocation = FindAllocation(&conn);
331 Allocation* allocation = FindAllocation(conn);
362 // Allocation mismatch.
424 Allocation* allocation = FindAllocation(conn);
475 Allocation* allo
644 TurnServer::Allocation::Allocation(TurnServer* server, function in class:cricket::TurnServer::Allocation
[all...]
H A Dturnserver.h132 class Allocation;
135 typedef std::map<Connection, Allocation*> AllocationMap;
159 Allocation* FindAllocation(Connection* conn);
160 Allocation* CreateAllocation(Connection* conn, int proto,
178 void OnAllocationDestroyed(Allocation* allocation);
/external/lldb/include/lldb/Expression/
H A DIRMemoryMap.h80 struct Allocation struct in class:lldb_private::IRMemoryMap
93 Allocation (lldb::addr_t process_alloc,
100 Allocation () : function in struct:lldb_private::IRMemoryMap::Allocation
115 typedef std::map<lldb::addr_t, Allocation> AllocationMap;
/external/chromium_org/tools/memory_inspector/memory_inspector/backends/
H A Dnative_heap_dump_parser.py50 nativeheap.Add(native_heap.Allocation(
/external/chromium_org/tools/memory_inspector/memory_inspector/classification/
H A Dnative_heap_classifier_unittest.py116 nheap.Add(native_heap.Allocation(
132 nheap.Add(native_heap.Allocation(
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dnative_heap_unittest.py53 alloc1 = native_heap.Allocation(start=4, size=4, stack_trace=st1)
54 alloc2 = native_heap.Allocation(start=4090, size=8, stack_trace=st1)
55 alloc3 = native_heap.Allocation(start=8190, size=10000, stack_trace=st2)
H A Dnative_heap.py19 self.allocations = [] # list of individual |Allocation|s.
23 assert(isinstance(allocation, Allocation))
59 """Updates the |Allocation|.|resident_size|s by looking at mmap stats.
99 class Allocation(object): class in inherits:object
/external/chromium_org/components/web_cache/browser/
H A Dweb_cache_manager.h116 typedef std::pair<int,size_t> Allocation; typedef in class:web_cache::WebCacheManager
120 typedef std::list<Allocation> AllocationStrategy;
H A Dweb_cache_manager_unittest.cc22 typedef WebCacheManager::Allocation Allocation; typedef in class:web_cache::WebCacheManagerTest
H A Dweb_cache_manager.cc293 strategy->push_back(Allocation(*iter, cache_size));
/external/chromium_org/tools/memory_inspector/memory_inspector/data/
H A Dserialization.py42 if isinstance(obj, native_heap.Allocation):
108 nh.Add(native_heap.Allocation(start=alloc_dict['start'],
H A Dfile_storage_unittest.py90 nh.Add(native_heap.Allocation(size=i * 10,
/external/lldb/source/Expression/
H A DIRMemoryMap.cpp203 IRMemoryMap::Allocation::Allocation (lldb::addr_t process_alloc, function in class:IRMemoryMap::Allocation
316 m_allocations[aligned_address] = Allocation(allocation_address,
368 Allocation &allocation = iter->second;
387 Allocation &allocation = iter->second;
445 Allocation &allocation = iter->second;
575 Allocation &allocation = iter->second;
706 Allocation &allocation = iter->second;
/external/llvm/lib/CodeGen/
H A DStackColoring.cpp259 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot); local
260 if (Allocation) {
262 " with allocation: "<< Allocation->getName()<<"\n");
/external/oprofile/events/i386/nehalem/
H A Dunit_masks41 0x01 any Counts the number of Uops issued by the Register Allocation Table to the Reservation Station, i
42 0x01 stalled_cycles Counts the number of cycles no Uops issued by the Register Allocation Table to the Reservation Station, i
43 0x02 fused Counts the number of fused Uops that were issued from the Register Allocation Table to the Reservation Station
319 0x0F any Counts all Register Allocation Table stall cycles due to: Cycles when ROB read port stalls occurred, which did not allow new micro-ops to enter the execution pipe
/external/compiler-rt/lib/asan/
H A Dasan_report.cc55 const char *Allocation() { return Magenta(); } function in class:__asan::Decorator
479 Printf("%sfreed by thread T%d%s here:%s\n", d.Allocation(),
487 d.Allocation(), alloc_thread->tid,
491 Printf("%sallocated by thread T%d%s here:%s\n", d.Allocation(),

Completed in 626 milliseconds

12