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

12 3 4 5 6 7 8 91011>>

  /external/valgrind/memcheck/tests/x86-solaris/
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...]
context_eflags2.stderr.exp 3 Uninitialised value was created by a heap allocation
9 Uninitialised value was created by a heap allocation
  /frameworks/rs/script_api/
rs_allocation_data.spec 18 summary: Allocation Data Access Functions
21 an allocation.
37 arg: rs_allocation dstAlloc, "Allocation to copy cells into."
39 arg: uint32_t dstMip, "Mip level in the destination allocation. 0 if mip mapping is not used."
41 arg: rs_allocation srcAlloc, "Source allocation."
43 arg: uint32_t srcMip, "Mip level in the source allocation. 0 if mip mapping is not used."
46 Copies the specified number of cells from one allocation to another.
49 the same allocation yields undefined results.
52 of either allocation. Be careful!
66 arg: rs_allocation dstAlloc, "Allocation to copy cells into.
    [all...]
  /hardware/interfaces/renderscript/1.0/vts/functional/
VtsCopyTests.cpp 20 * This test creates a 1D Allocation with 128 Float Elements, and two float
22 * the Allocation using allocation1DWrite. Then the Allocation is copied into
40 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, local
43 ASSERT_NE(Allocation(0), allocation);
49 context->allocation1DWrite(allocation, 0, 0, (Size)dataIn.size(), _data);
50 context->allocation1DRead(allocation, 0, 0, (uint32_t)dataOut.size(), (Ptr)dataOut.data(),
56 * This test creates a 2D Allocation with 128 * 128 Float Elements, and tw
76 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, local
113 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, local
154 Allocation allocation = context->allocationCreateFromBitmap(type, local
299 Allocation allocation = context->allocationCreateFromBitmap(type, local
357 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::FULL, local
403 Allocation allocation = context->allocationCubeCreateFromBitmap( local
464 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, local
    [all...]
VtsScriptTests.cpp 87 Allocation allocationIn = context->allocationCreateTyped(type, AllocationMipmapControl::NONE,
90 ASSERT_NE(Allocation(0), allocationIn);
92 Allocation allocationOut = Allocation(0);
96 allocationOut = (Allocation) *((ObjectBase*)_data.data()); });
214 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, local
217 ASSERT_NE(Allocation(0), allocation);
219 Allocation vout = context->allocationCreateTyped(type, AllocationMipmapControl::NONE
262 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, local
306 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, local
438 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, local
515 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, local
    [all...]
  /external/valgrind/memcheck/tests/amd64-solaris/
context_rflags2.stderr.exp 3 Uninitialised value was created by a heap allocation
9 Uninitialised value was created by a heap allocation
  /hardware/interfaces/renderscript/1.0/
IContext.hal 37 * "adapted allocation" that's returned.
39 * Creates an arbitrary window into the base allocation. The type describes
41 * equal to or smaller than the dimensions in the source allocation. A
42 * dimension present in the allocation that is not present in the type must
44 * both the type and allocation, one of two things must happen. If the type
45 * is smaller than the allocation, a window must be created, the selected
48 * If the type and allocation dimension are of the same size, then setting
52 * @param baseAlloc Allocation
56 allocationAdapterCreate(Type type, Allocation baseAlloc)
67 * Sets the offsets for an Allocation Adapter
    [all...]
  /frameworks/rs/
rsProgramVertex.cpp 45 "Unable to set fixed function emulation matrices because allocation is missing");
48 float *f = static_cast<float *>(rsc->mHal.funcs.allocation.lock1D(
58 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]);
74 "Unable to set fixed function emulation matrix projection because allocation is missing");
77 float *f = static_cast<float *>(rsc->mHal.funcs.allocation.lock1D(
81 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]);
92 "Unable to set fixed function emulation matrix modelview because allocation is missing");
95 float *f = static_cast<float *>(rsc->mHal.funcs.allocation.lock1D(
99 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]);
110 "Unable to set fixed function emulation matrix texture because allocation is missing")
    [all...]
rsAllocation.cpp 28 Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages,
42 Allocation::Allocation(Context *rsc, const Allocation *alloc, const Type *type)
54 void Allocation::operator delete(void* ptr) {
56 Allocation *a = (Allocation*) ptr;
61 Allocation * Allocation::createAllocationStrided(Context *rsc, const Type *type, uint32_t usages
    [all...]
rsHidlAdaptation.cpp 28 using ::android::hardware::renderscript::V1_0::Allocation;
214 const void* RsHidlAdaptation::AllocationGetType(RsContext context, RsAllocation allocation)
217 uint64_t _allocation = (uint64_t)(uintptr_t)allocation;
426 uint64_t allocation = GetIContextHandle(context)->allocationCreateTyped(_type, local
428 return (RsAllocation) allocation;
441 uint64_t allocation = GetIContextHandle(context)->allocationCreateFromBitmap(_type, local
443 return (RsAllocation) allocation;
455 uint64_t allocation = GetIContextHandle(context)->allocationCubeCreateFromBitmap(_type, (AllocationMipmapControl)mipmaps, _bitmap, usages); local
456 return (RsAllocation) allocation;
459 RsNativeWindow RsHidlAdaptation::AllocationGetSurface (RsContext context, RsAllocation allocation)
    [all...]
  /external/valgrind/massif/tests/
basic2.post.exp 39 00.00% (0B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
45 98.04% (3,600B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
52 98.04% (7,600B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
59 98.04% (10,800B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
66 98.04% (14,400B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
73 98.04% (11,200B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
80 98.04% (8,000B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
87 98.04% (4,800B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
94 98.04% (1,600B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
  /system/core/libmemunreachable/
Allocator.cpp 19 // For minimum allocation size (8 bytes), bitmap can store used allocations for
390 MapAllocation* allocation = reinterpret_cast<MapAllocation*>(AllocLocked(sizeof(MapAllocation))); local
393 FreeLocked(allocation);
396 allocation->ptr = ptr;
397 allocation->size = size;
398 allocation->next = map_allocation_list_;
399 map_allocation_list_ = allocation;
405 MapAllocation** allocation = &map_allocation_list_; local
406 while (*allocation && (*allocation)->ptr != ptr) allocation = &(*allocation)->next
    [all...]
  /external/valgrind/memcheck/tests/
origin1-yes.stderr.exp 5 Uninitialised value was created by a stack allocation
12 Uninitialised value was created by a stack allocation
19 Uninitialised value was created by a stack allocation
26 Uninitialised value was created by a heap allocation
34 Uninitialised value was created by a heap allocation
42 Uninitialised value was created by a heap allocation
  /external/swiftshader/src/Common/
Memory.cpp 60 struct Allocation
68 unsigned char *block = new unsigned char[bytes + sizeof(Allocation) + alignment];
73 aligned = (unsigned char*)((uintptr_t)(block + sizeof(Allocation) + alignment - 1) & -(intptr_t)alignment);
74 Allocation *allocation = (Allocation*)(aligned - sizeof(Allocation)); local
76 // allocation->bytes = bytes;
77 allocation->block = block;
100 Allocation *allocation = (Allocation*)(aligned - sizeof(Allocation)) local
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
single_source_ref_count.rs 78 rs_allocation allocation = tests[i].fp();
79 if (!rsIsObject(allocation)) {
  /frameworks/base/libs/hwui/utils/
FatVector.h 44 struct Allocation {
45 PREVENT_COPY_AND_ASSIGN(Allocation);
47 Allocation() {};
56 explicit InlineStdAllocator(Allocation& allocation)
57 : mAllocation(allocation) {}
79 Allocation& mAllocation;
101 typename InlineStdAllocator<T, SIZE>::Allocation mAllocation;
  /prebuilts/go/darwin-x86/test/
compos.go 7 // Test that returning &T{} from a function causes an allocation.
  /prebuilts/go/linux-x86/test/
compos.go 7 // Test that returning &T{} from a function causes an allocation.
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
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);
61 allocation.destroy();
78 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
98 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum)
    [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);
62 allocation.destroy();
79 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
99 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum)
    [all...]
  /hardware/interfaces/renderscript/1.0/default/
Context.h 40 Return<Allocation> allocationAdapterCreate(Type type, Allocation baseAlloc) override;
41 Return<void> allocationAdapterOffset(Allocation alloc, const hidl_vec<uint32_t>& offsets) override;
42 Return<Type> allocationGetType(Allocation allocation) override;
43 Return<Allocation> allocationCreateTyped(Type type, AllocationMipmapControl amips, int32_t usage, Ptr ptr) override;
44 Return<Allocation> allocationCreateFromBitmap(Type type, AllocationMipmapControl amips, const hidl_vec<uint8_t>& bitmap, int32_t usage) override;
45 Return<Allocation> allocationCubeCreateFromBitmap(Type type, AllocationMipmapControl amips, const hidl_vec<uint8_t>& bitmap, int32_t usage) override;
46 Return<NativeWindow> allocationGetNativeWindow(Allocation allocation) override
    [all...]
  /external/clang/test/Sema/
warn-unused-function.c 50 static void cleanupMalloc(char * const * const allocation) { }
  /packages/apps/Camera2/src/com/android/camera/one/v2/core/
RequestBuilder.java 54 .Allocation {
80 private static interface Allocation {
88 private final List<Allocation> mAllocations;
91 public RequestImpl(CaptureRequestBuilderProxy builder, List<Allocation> allocations,
101 for (Allocation allocation : mAllocations) {
102 allocation.allocate();
114 for (Allocation allocation : mAllocations) {
115 allocation.abort()
    [all...]
  /bionic/libc/bionic/
pthread_exit.cpp 96 void* allocation = reinterpret_cast<char*>(thread->bionic_tls) - PAGE_SIZE; local
97 munmap(allocation, BIONIC_TLS_SIZE + 2 * PAGE_SIZE);
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
Allocation.java 28 * Data about a particular allocation performed by a benchmark. This tracks a human readable
29 * description of the allocation (e.g. 'int[23]', 'java.lang.Integer', or 'java.util.ArrayList'),
30 * the total size of the allocation in bytes and the location, which is a stringified stack trace of
31 * the allocation.
33 final class Allocation {
42 static long getTotalSize(Collection<Allocation> allocations) {
44 for (Allocation allocation : allocations) {
45 totalSize += allocation.size;
54 Allocation(String description, long size, List<StackTraceElement> location)
    [all...]

Completed in 706 milliseconds

12 3 4 5 6 7 8 91011>>