HomeSort by relevance Sort by last modified time
    Searched defs:allocation (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
BitVector.cpp 83 void* allocation = partitionAllocGeneric(Partitions::getBufferPartition(), size); local
84 OutOfLineBits* result = new (NotNull, allocation) OutOfLineBits(numBits);
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioArray.h 52 // It's OK to call allocate() multiple times, but data will *not* be copied from an initial allocation
83 T* allocation = static_cast<T*>(fastMalloc(initialSize + extraAllocationBytes)); local
84 if (!allocation)
86 T* alignedData = alignedAddress(allocation, alignment);
88 if (alignedData == allocation || extraAllocationBytes == alignment) {
89 m_allocation = allocation;
96 fastFree(allocation);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ClearObjectTest.java 19 import android.renderscript.Allocation;
42 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
64 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
65 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
80 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
81 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum)
98 Allocation allocation = Allocation.createTyped(mRS, mIn.getType()); local
    [all...]
IsObjectTest.java 20 import android.renderscript.Allocation;
29 private Allocation mIn;
30 private Allocation mOut;
34 Allocation allocation; field in class:IsObjectTest
47 allocation = Allocation.createTyped(mRS, type);
65 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
85 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
105 mItem.allocation = allocation
    [all...]
SetObjectTest.java 20 import android.renderscript.Allocation;
28 private Allocation mIn;
29 private Allocation mOut;
33 Allocation allocation; field in class:SetObjectTest
46 allocation = Allocation.createTyped(mRS, type);
64 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
84 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
103 mItem.allocation = allocation
    [all...]
  /external/chromium_org/base/memory/
discardable_memory_manager.cc 63 void DiscardableMemoryManager::Register(Allocation* allocation, size_t bytes) {
65 DCHECK(allocations_.Peek(allocation) == allocations_.end());
66 allocations_.Put(allocation, AllocationInfo(bytes));
69 void DiscardableMemoryManager::Unregister(Allocation* allocation) {
71 AllocationMap::iterator it = allocations_.Peek(allocation);
84 bool DiscardableMemoryManager::AcquireLock(Allocation* allocation,
89 AllocationMap::iterator it = allocations_.Get(allocation);
183 Allocation* allocation = it->first; local
    [all...]
discardable_memory_manager_unittest.cc 87 void Register(TestAllocationImpl* allocation, size_t bytes) {
88 manager_.Register(allocation, bytes);
91 void Unregister(TestAllocationImpl* allocation) {
92 manager_.Unregister(allocation);
95 bool IsRegistered(TestAllocationImpl* allocation) const {
96 return manager_.IsRegisteredForTest(allocation);
99 LockStatus Lock(TestAllocationImpl* allocation) {
101 if (!manager_.AcquireLock(allocation, &purged))
106 void Unlock(TestAllocationImpl* allocation) {
107 manager_.ReleaseLock(allocation);
141 TestAllocationImpl allocation; local
154 TestAllocationImpl allocation; local
164 TestAllocationImpl allocation; local
181 TestAllocationImpl allocation; local
202 TestAllocationImpl allocation; local
225 TestAllocationImpl allocation; local
280 TestAllocationImpl* allocation(unsigned position) { function in class:base::__anon6959::DiscardableMemoryManagerPermutationTest
372 TestAllocationImpl allocation; local
382 TestAllocationImpl allocation; local
395 TestAllocationImpl allocation; local
413 TestAllocationImpl allocation[3]; local
465 TestAllocationImpl allocation; local
    [all...]
  /external/chromium_org/content/common/gpu/
gpu_memory_manager.cc 108 // allocation on desktop platforms.
278 // Send that allocation to the clients.
288 // Populate and send the allocation to the client
289 MemoryAllocation allocation; local
290 allocation.bytes_limit_when_visible = client_hard_limit_bytes_;
294 allocation.priority_cutoff_when_visible =
302 allocation.priority_cutoff_when_visible =
306 client_state->client_->SetMemoryAllocation(allocation);
316 MemoryAllocation allocation; local
319 allocation.bytes_limit_when_visible = client_hard_limit_bytes_
    [all...]
gpu_memory_manager_unittest.cc 48 MemoryAllocation allocation; member in struct:content::ClientAssignmentCollector::ClientMemoryStat
60 const MemoryAllocation& allocation) {
62 client_memory_stats_for_last_manage_[client].allocation = allocation;
208 // Expect memory allocation to set suggest_have_frontbuffer/backbuffer
210 // Expect memory allocation to be shared according to share groups for stubs
238 // Expect memory allocation to set suggest_have_frontbuffer/backbuffer
240 // Expect memory allocation to be shared according to share groups for stubs
360 // Expect memory allocation of the stubs without surface to share memory
361 // allocation with the most visible stub in share group
    [all...]
  /external/chromium_org/components/web_cache/browser/
web_cache_manager.cc 90 // Revise our allocation strategy to account for this new renderer.
118 // it is given a fair cache allocation, but we defer this for a bit in
223 NOTREACHED() << "Unknown cache allocation tactic";
265 // We succeeded in computing an allocation strategy.
292 // Record the allocation in our strategy.
293 strategy->push_back(Allocation(*iter, cache_size));
299 // Inform each render process of its cache allocation.
300 AllocationStrategy::const_iterator allocation = strategy.begin(); local
301 while (allocation != strategy.end()) {
303 content::RenderProcessHost::FromID(allocation->first)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/bitrate_controller/
bitrate_controller_impl.cc 358 uint32_t allocation = std::min(remainder, it->second->min_bitrate_); local
359 it->first->OnNetworkChanged(allocation, fraction_loss, rtt);
360 remainder -= allocation;
  /external/chromium_org/v8/test/cctest/
test-spaces.cc 415 { AllocationResult allocation = lo->AllocateRaw(lo_size, NOT_EXECUTABLE); local
416 if (allocation.IsRetry()) break;
test-mark-compact.cc 143 AllocationResult allocation; local
145 allocation = heap->AllocateFixedArray(arraysize);
146 } while (!allocation.IsRetry());
152 allocation = heap->AllocateMap(JS_OBJECT_TYPE, JSObject::kHeaderSize);
153 } while (!allocation.IsRetry());
test-heap.cc 763 // We just initialized the VM, no heap allocation failure yet.
985 // Increase the chance of 'bump-the-pointer' allocation in old space.
3583 v8::internal::AllocationResult allocation = local
3645 AllocationResult allocation = CcTest::heap()->new_space()->AllocateRaw( local
    [all...]
  /external/lldb/source/Expression/
IRMemoryMap.cpp 203 IRMemoryMap::Allocation::Allocation (lldb::addr_t process_alloc,
255 error.SetErrorString("Couldn't malloc: invalid allocation policy");
316 m_allocations[aligned_address] = Allocation(allocation_address,
364 error.SetErrorString("Couldn't leak: allocation doesn't exist");
368 Allocation &allocation = iter->second; local
370 allocation.m_leak = true;
383 error.SetErrorString("Couldn't free: allocation doesn't exist");
387 Allocation &allocation = iter->second local
445 Allocation &allocation = iter->second; local
575 Allocation &allocation = iter->second; local
706 Allocation &allocation = iter->second; local
    [all...]
  /external/chromium_org/v8/src/heap/
heap-inl.h 97 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); local
98 if (!allocation.To(&result)) return allocation;
129 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); local
130 if (!allocation.To(&result)) return allocation;
181 AllocationResult allocation; local
183 allocation = new_space_.AllocateRaw(size_in_bytes);
184 if (always_allocate() && allocation.IsRetry() && retry_space != NEW_SPACE) {
187 if (allocation.To(&object))
    [all...]
mark-compact.cc 1986 AllocationResult allocation = new_space->AllocateRaw(size); local
3077 AllocationResult allocation = target_space->AllocateRaw(object_size); local
3145 AllocationResult allocation = space->AllocateRaw(size); local
    [all...]
heap.cc 257 // Have allocation in OLD and LO failed?
501 // If the scratchpad overflowed, we have to iterate over the allocation
503 // TODO(hpayer): We iterate over the whole list of allocation sites when
505 // allocation sites. We could hold the maybe tenured allocation sites
558 "GC: (mode, #visited allocation sites, #active allocation sites, "
570 // TODO(hpayer): If iterating over the allocation sites list becomes a
572 // allocation sites scratchpad).
595 // Process pretenuring feedback and update allocation sites
929 AllocationResult allocation; local
1960 AllocationResult allocation = local
1999 AllocationResult allocation; local
2269 AllocationResult allocation = AllocateRaw(Map::kSize, MAP_SPACE, MAP_SPACE); local
2294 AllocationResult allocation = AllocateRaw(Map::kSize, MAP_SPACE, MAP_SPACE); local
2328 AllocationResult allocation = AllocateRaw(size, space, space); local
2370 AllocationResult allocation = AllocatePartialMap(MAP_TYPE, Map::kSize); local
2397 AllocationResult allocation = AllocateEmptyFixedArray(); local
2403 AllocationResult allocation = Allocate(null_map(), OLD_POINTER_SPACE); local
2410 AllocationResult allocation = Allocate(undefined_map(), OLD_POINTER_SPACE); local
2422 AllocationResult allocation = AllocateEmptyFixedArray(); local
2429 AllocationResult allocation = AllocateEmptyConstantPoolArray(); local
2510 AllocationResult allocation = AllocateMap(entry.type, entry.size); local
2630 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); local
2647 AllocationResult allocation = AllocateRaw(size, CELL_SPACE, CELL_SPACE); local
2661 AllocationResult allocation = local
3191 AllocationResult allocation = Allocate(foreign_map(), space); local
3206 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); local
3365 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); local
3411 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); local
3428 AllocationResult allocation = local
3461 AllocationResult allocation; local
3501 AllocationResult allocation = local
3510 AllocationResult allocation = CopyConstantPoolArray(code->constant_pool()); local
3526 AllocationResult allocation = local
3582 AllocationResult allocation = AllocateRaw(size, space, retry_space); local
3644 AllocationResult allocation = AllocateFixedArray(prop_size, pretenure); local
3655 AllocationResult allocation = Allocate(map, space, allocation_site); local
3672 AllocationResult allocation = AllocateJSObjectFromMap( local
3701 AllocationResult allocation = local
3716 AllocationResult allocation = local
3740 AllocationResult allocation; local
3756 AllocationResult allocation = CopyFixedArray(properties); local
3834 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); local
3876 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); local
3900 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); local
3917 AllocationResult allocation = local
3942 AllocationResult allocation = AllocateRawFixedArray(len, TENURED); local
3972 AllocationResult allocation = AllocateRawFixedArray(len, NOT_TENURED); local
3998 AllocationResult allocation = AllocateRawFixedDoubleArray(len, NOT_TENURED); local
4017 AllocationResult allocation = local
4023 AllocationResult allocation = AllocateConstantPoolArray(small); local
4056 AllocationResult allocation = AllocateRawFixedArray(length, pretenure); local
4078 AllocationResult allocation = AllocateRawFixedArray(length, NOT_TENURED); local
4093 AllocationResult allocation = AllocateRawFixedDoubleArray(length, pretenure); local
4115 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); local
4134 AllocationResult allocation = AllocateRaw(size, space, OLD_POINTER_SPACE); local
4160 AllocationResult allocation = AllocateRaw(size, space, OLD_POINTER_SPACE); local
4178 AllocationResult allocation = local
4193 AllocationResult allocation = local
4235 AllocationResult allocation = Allocate(map, space); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnserver.cc 65 // IDs used for posted messages for TurnServer::Allocation.
70 // Encapsulates a TURN allocation.
71 // The object is created when an allocation request is received, and then
73 // (via HandleChannelData) for this allocation when received by the server.
75 class TurnServer::Allocation : public rtc::MessageHandler,
78 Allocation(TurnServer* server_,
82 virtual ~Allocation();
96 sigslot::signal1<Allocation*> SignalDestroyed;
145 // allocation, and self-deletes when its lifetime timer expires.
165 // allocation, and self-deletes when its lifetime timer expires
298 Allocation* allocation = FindAllocation(&conn); local
331 Allocation* allocation = FindAllocation(conn); local
424 Allocation* allocation = FindAllocation(conn); local
534 Allocation* allocation = new Allocation(this, local
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 626 // Don't allow allocation of fewer elements than we have initializers.
648 // allocation fails.
1262 llvm::Value *allocation = RV.getScalarVal(); local
    [all...]
  /external/chromium_org/v8/src/
parser.cc 3790 CallRuntime* allocation = factory()->NewCallRuntime( local
    [all...]
  /external/chromium_org/v8/src/arm64/
lithium-codegen-arm64.cc 3819 Label allocation; member in class:v8::internal::DeferredMathAbsTagged
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
org.apache.jasper_5.5.17.v201004212143.jar 

Completed in 381 milliseconds