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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
greg-2.s 1 # Have another GREG register allocation.
greg-1.s 1 # Have a single GREG register allocation.
greg-3.s 1 # Have yet another GREG register allocation.
bpo-5.s 1 # A section with a symbol and a BPO allocation.
bpo-6.s 1 # A section with a symbol and a BPO allocation.
  /system/bt/osi/src/
allocation_tracker.cc 46 // Memory allocation statistics
87 allocation_t* allocation = entry.second; local
88 if (!allocation->freed) {
90 allocation->size; // Report back the unfreed byte count
92 "%s found unfreed allocation. address: 0x%zx size: %zd bytes",
93 __func__, (uintptr_t)allocation->ptr, allocation->size);
114 allocation_t* allocation; local
116 allocation = map_entry->second;
117 CHECK(allocation->freed); // Must have been freed befor
144 allocation_t* allocation = map_entry->second; local
    [all...]
  /system/chre/util/tests/
memory_pool_test.cc 56 size_t *allocation; member in struct:AllocationExpectedValuePair
72 AllocationExpectedValuePair allocation = { local
73 .allocation = memoryPool.allocate(),
77 *allocation.allocation = j;
78 allocations.push_back(allocation);
91 // Verify the expected value and free the allocation.
92 ASSERT_EQ(*allocations[deallocateIndex].allocation,
94 memoryPool.deallocate(allocations[deallocateIndex].allocation);
96 // Remove the freed allocation from the allocation list
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiComputeInstanceResultBuffer.cpp 61 de::MovePtr<Allocation> *outAllocation,
79 de::MovePtr<Allocation> allocation = allocator.allocate(requirements, MemoryRequirement::HostVisible); local
81 VK_CHECK(vki.bindBufferMemory(device, *buffer, allocation->getMemory(), allocation->getOffset()));
84 void* mapPtr = allocation->getHostPtr();
89 flushMappedMemoryRange(vki, device, allocation->getMemory(), allocation->getOffset(), (VkDeviceSize) DATA_SIZE);
91 *outAllocation = allocation;
vktApiBufferComputeInstance.cpp 42 de::MovePtr<Allocation>* outAllocation)
65 de::MovePtr<Allocation> allocation = allocator.allocate(requirements, MemoryRequirement::HostVisible); local
67 VK_CHECK(vki.bindBufferMemory(device, *buffer, allocation->getMemory(), allocation->getOffset()));
69 void* const mapPtr = allocation->getHostPtr();
78 flushMappedMemoryRange(vki, device, allocation->getMemory(), allocation->getOffset(), bufferSize);
80 *outAllocation = allocation;
88 de::MovePtr<Allocation>* outAllocation
112 de::MovePtr<Allocation> allocation = allocator.allocate(requirements, MemoryRequirement::HostVisible); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawBufferObjectUtil.cpp 42 void Buffer::bindMemory (de::MovePtr<vk::Allocation> allocation)
44 DE_ASSERT(allocation);
45 VK_CHECK(m_vk.bindBufferMemory(m_device, *m_object, allocation->getMemory(), allocation->getOffset()));
48 m_allocation = allocation;
  /external/webrtc/webrtc/call/
bitrate_allocator.cc 43 ObserverBitrateMap allocation = AllocateBitrates(); local
44 for (const auto& kv : allocation) {
88 ObserverBitrateMap allocation = AllocateBitrates(); local
90 for (auto& kv : allocation) {
150 ObserverBitrateMap allocation; local
163 allocation[max_it->second.observer] = max_it->first;
165 allocation[max_it->second.observer] = observer_allowance;
171 return allocation;
176 ObserverBitrateMap allocation; local
180 allocation[observer.first] = observer.second.min_bitrate
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
BlockingInputAllocation.java 22 import android.renderscript.Allocation;
28 * An {@link Allocation} wrapper that can be used to block until new buffers are available.
30 * <p>Can only be used only with {@link Allocation#USAGE_IO_INPUT} usage Allocations.</p>
40 private final Allocation mAllocation;
45 * Wrap an existing Allocation with this {@link BlockingInputAllocation}.
50 * @param allocation A non-{@code null} {@link Allocation allocation}
54 * If {@code allocation} was {@code null}
56 * If {@code allocation}'s usage did not have one of USAGE_IO_INPUT or USAGE_IO_OUTPU
    [all...]
AllocationCache.java 20 import android.renderscript.Allocation;
33 * Cache {@link Allocation} objects based on their type and usage.
35 * <p>This avoids expensive re-allocation of objects when they are used over and over again
46 private final HashMap<AllocationKey, List<Allocation>> mAllocationMap =
47 new HashMap<AllocationKey, List<Allocation>>();
71 * Try to lookup a compatible Allocation from the cache, create one if none exist.
77 public Allocation getOrCreateTyped(Type type, int usage) {
83 List<Allocation> list = mAllocationMap.get(key);
86 Allocation alloc = list.remove(list.size() - 1);
100 return Allocation.createTyped(mRS, type, usage)
    [all...]
Script.java 22 import android.renderscript.Allocation;
31 * <p>Each script has exactly one input and one output allocation, and is able to execute
34 * <p>Each script owns it's input allocation, but not the output allocation.</p>
187 protected Allocation mOutputAllocation;
188 protected Allocation mInputAllocation;
225 void setInput(Allocation allocation) {
227 checkNotNull("allocation", allocation);
    [all...]
  /external/caliper/scripts/
caliper 7 export ALLOCATION_JAR=$base/lib/allocation.jar
  /prebuilts/go/darwin-x86/test/
notinheap2.go 25 // Heap allocation is not okay.
31 y = new(nih) // ERROR "heap allocation disallowed"
32 z = make([]nih, 1) // ERROR "heap allocation disallowed"
33 z = append(z, x) // ERROR "heap allocation disallowed"
  /prebuilts/go/linux-x86/test/
notinheap2.go 25 // Heap allocation is not okay.
31 y = new(nih) // ERROR "heap allocation disallowed"
32 z = make([]nih, 1) // ERROR "heap allocation disallowed"
33 z = append(z, x) // ERROR "heap allocation disallowed"
  /frameworks/rs/
rsDriverLoader.cpp 77 ret &= fn(RS_HAL_ALLOCATION_INIT, (void **)&rsc->mHal.funcs.allocation.init);
78 ret &= fn(RS_HAL_ALLOCATION_INIT_OEM, (void **)&rsc->mHal.funcs.allocation.initOem);
79 ret &= fn(RS_HAL_ALLOCATION_INIT_ADAPTER, (void **)&rsc->mHal.funcs.allocation.initAdapter);
80 ret &= fn(RS_HAL_ALLOCATION_DESTROY, (void **)&rsc->mHal.funcs.allocation.destroy);
81 ret &= fn(RS_HAL_ALLOCATION_GET_GRALLOC_BITS, (void **)&rsc->mHal.funcs.allocation.grallocBits);
82 ret &= fn(RS_HAL_ALLOCATION_RESIZE, (void **)&rsc->mHal.funcs.allocation.resize);
83 ret &= fn(RS_HAL_ALLOCATION_SYNC_ALL, (void **)&rsc->mHal.funcs.allocation.syncAll);
84 ret &= fn(RS_HAL_ALLOCATION_MARK_DIRTY, (void **)&rsc->mHal.funcs.allocation.markDirty);
85 ret &= fn(RS_HAL_ALLOCATION_SET_SURFACE, (void **)&rsc->mHal.funcs.allocation.setSurface);
86 ret &= fn(RS_HAL_ALLOCATION_IO_SEND, (void **)&rsc->mHal.funcs.allocation.ioSend)
    [all...]
  /external/valgrind/memcheck/tests/
origin4-many.stderr.exp 3 Uninitialised value was created by a heap allocation
9 Uninitialised value was created by a heap allocation
15 Uninitialised value was created by a heap allocation
21 Uninitialised value was created by a heap allocation
27 Uninitialised value was created by a heap allocation
33 Uninitialised value was created by a heap allocation
39 Uninitialised value was created by a heap allocation
45 Uninitialised value was created by a heap allocation
51 Uninitialised value was created by a heap allocation
  /external/valgrind/memcheck/tests/amd64-solaris/
context_gpr.stderr.exp 3 Uninitialised value was created by a heap allocation
9 Uninitialised value was created by a heap allocation
15 Uninitialised value was created by a heap allocation
context_fpu.stderr.exp 3 Uninitialised value was created by a heap allocation
9 Uninitialised value was created by a heap allocation
15 Uninitialised value was created by a heap allocation
21 Uninitialised value was created by a heap allocation
27 Uninitialised value was created by a heap allocation
33 Uninitialised value was created by a heap allocation
39 Uninitialised value was created by a heap allocation
45 Uninitialised value was created by a heap allocation
51 Uninitialised value was created by a heap allocation
57 Uninitialised value was created by a heap allocation
    [all...]
context_sse.stderr.exp 3 Uninitialised value was created by a heap allocation
9 Uninitialised value was created by a heap allocation
15 Uninitialised value was created by a heap allocation
21 Uninitialised value was created by a heap allocation
27 Uninitialised value was created by a heap allocation
33 Uninitialised value was created by a heap allocation
39 Uninitialised value was created by a heap allocation
45 Uninitialised value was created by a heap allocation
51 Uninitialised value was created by a heap allocation
57 Uninitialised value was created by a heap allocation
    [all...]
  /external/valgrind/memcheck/tests/x86-solaris/
context_gpr.stderr.exp 3 Uninitialised value was created by a heap allocation
9 Uninitialised value was created by a heap allocation
15 Uninitialised value was created by a heap allocation
context_fpu.stderr.exp 3 Uninitialised value was created by a heap allocation
9 Uninitialised value was created by a heap allocation
15 Uninitialised value was created by a heap allocation
21 Uninitialised value was created by a heap allocation
27 Uninitialised value was created by a heap allocation
33 Uninitialised value was created by a heap allocation
39 Uninitialised value was created by a heap allocation
45 Uninitialised value was created by a heap allocation
51 Uninitialised value was created by a heap allocation
57 Uninitialised value was created by a heap allocation
    [all...]
  /external/fio/
gcompat.c 41 return w->allocation.width;
46 return w->allocation.height;

Completed in 235 milliseconds

1 2 3 4 5 6 7 8 91011>>