/device/linaro/bootloader/edk2/MdePkg/Library/UefiMemoryAllocationLib/ |
MemoryAllocationLib.c | 2 Support routines for memory allocation routines based
35 @return A pointer to the allocated buffer or NULL if allocation fails.
68 @return A pointer to the allocated buffer or NULL if allocation fails.
90 @return A pointer to the allocated buffer or NULL if allocation fails.
112 @return A pointer to the allocated buffer or NULL if allocation fails.
125 Frees one or more 4KB pages that were previously allocated with one of the page allocation
126 functions in the Memory Allocation Library.
129 must have been allocated on a previous call to the page allocation services of the Memory
130 Allocation Library. If it is not possible to free allocated pages, then this function will
133 If Buffer was not allocated with a page allocation function in the Memory Allocation Library, [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
IntrinsicBase.java | 21 import android.renderscript.Allocation; 29 protected Allocation mAllocSrc; 30 protected Allocation mAllocRef; 31 protected Allocation mAllocDst; 75 protected Allocation makeAllocation(int w, int h, Element e, boolean clear) { 80 Allocation a = Allocation.createTyped(mRS, t); 91 protected Allocation makeAllocation(int w, int h, Element e) {
|
is_object.rs | 5 rs_allocation allocation; 10 *out = rsIsObject(in->allocation)==false ? 0 : 1;
|
ReduceTest.java | 90 // Create a zero-initialized Allocation. 94 private Allocation createInputAllocation(Element elt, int xlen, int ylen, int zlen) { 98 Allocation alloc; 101 alloc = Allocation.createTyped(mRS, Type.createXYZ(mRS, elt, xlen, ylen, zlen)); 103 alloc = Allocation.createTyped(mRS, Type.createXY(mRS, elt, xlen, ylen)); 105 alloc = Allocation.createSized(mRS, elt, xlen); 117 private Allocation[] createInputAllocations(Element elt, int max) { 122 Allocation alloc[] = new Allocation[numAllocs]; 196 Allocation inputAllocation = Allocation.createTyped(mRS, typeBuilder.create()) [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/ |
TestNan.java | 21 import android.renderscript.Allocation; 53 Allocation inV = createRandomAllocation(mRS, Element.DataType.UNSIGNED_32, 1, 0xbc42cb366a8a10d2l, false); 55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); 63 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); 73 private void verifyResultsNanUintFloat(Allocation inV, Allocation out, boolean relaxed) {
|
/external/compiler-rt/test/msan/ |
report-demangling.cc | 1 // Test that function name is mangled in the "created by an allocation" line, 17 // CHECK: Uninitialized value was created by an allocation of 'x' in the stack frame of function '_Z1fv'
|
/external/fio/ |
gcompat.c | 41 return w->allocation.width; 46 return w->allocation.height;
|
/external/google-breakpad/src/client/mac/handler/ |
protected_memory_allocator.h | 32 // A very simple allocator class which allows allocation, but not deallocation. 34 // This class is NOT useful as a general-purpose memory allocation system, 52 // Returns a pointer to an allocation of size n within the pool. 58 // Returns the base address of the allocation pool. 61 // Returns the size of the allocation pool, including allocated 68 // Returns the number of bytes available for allocation. 71 // Makes the entire allocation pool read-only including, of course, 75 // Makes the entire allocation pool read/write.
|
/external/skia/include/core/ |
SkYUVSizeInfo.h | 29 * Skia). "rowBytes" allow the last row of the allocation to not 31 * the allocation must be at least "widthBytes".
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
AllocationOrder.cpp | 1 //===-- llvm/CodeGen/AllocationOrder.cpp - Allocation Order ---------------===// 10 // This file implements an allocation order for virtual registers. 12 // The preferred allocation order for a virtual register depends on allocation 43 // The remaining allocation order may depend on the hint. 50 // Copy the allocation order with reserved registers removed. 63 // If there is no hint or just a normal hint, use the cached allocation 70 // The hint must be a valid physreg for allocation.
|
/external/valgrind/massif/tests/ |
ignoring.c | 12 // The peak is from the first allocation. 16 // Now do an allocation to provide the post-peak baseline.
|
/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
|
/external/valgrind/memcheck/tests/x86-solaris/ |
context_eflags2.stderr.exp | 3 Uninitialised value was created by a heap allocation 9 Uninitialised value was created by a heap 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;
|
/frameworks/rs/ |
rsApiAllocation.cpp | 24 Allocation *a = static_cast<Allocation *>(va);
|
/frameworks/rs/support/java/src/android/support/v8/renderscript/ |
ScriptIntrinsic3DLUT.java | 25 * allocation. The 8 nearest values are sampled and linearly interpolated. The 30 private Allocation mLUT; 66 * Sets the {@link android.support.v8.renderscript.Allocation} to be used as 74 public void setLUT(Allocation lut) { 94 * @param ain Input allocation 95 * @param aout Output allocation 97 public void forEach(Allocation ain, Allocation aout) {
|
/frameworks/rs/tests/java_api/LivePreview/src/com/android/rs/livepreview/ |
RsYuv.java | 25 import android.renderscript.Allocation; 43 private Allocation mAllocationOut; 44 private Allocation mAllocationIn; 82 mAllocationOut = Allocation.createTyped(mRS, t, Allocation.USAGE_SCRIPT | 83 Allocation.USAGE_IO_OUTPUT); 90 mAllocationIn = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT);
|
/pdk/apps/TestingCamera/src/com/android/testingcamera/ |
CallbackProcessor.java | 8 import android.renderscript.Allocation; 27 * into an Allocation that's backed by a SurfaceView 36 private Allocation mAllocationIn; 37 private Allocation mAllocationOut; 63 mAllocationIn = Allocation.createSized(mRS, Element.U8(mRS), inputSize); 70 mAllocationOut = Allocation.createTyped(mRS, outType, 71 Allocation.USAGE_IO_OUTPUT | Allocation.USAGE_SCRIPT);
|
/cts/tests/camera/src/android/hardware/camera2/cts/rs/ |
ScriptYuvMeans1d.java | 27 * Average a {@code Hx1} {@link ElementInfo#U8_3 U8_3} {@link Allocation allocation} into a 1x1 28 * {@code U8x3} {@link Allocation allocation}.
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/ |
Alloc.h | 1 /* Alloc.h -- Memory allocation functions
|
/external/caliper/caliper/src/main/java/com/google/caliper/worker/ |
AllocationRecorder.java | 42 String.format("The allocation recording infrastructure appears to be broken. " 43 + "Expected to find exactly one allocation of a java/lang/Object instead found %s", 55 * Stops recording allocations and saves all the allocation data recorded since the previous call 58 * @param reps The number of reps that the previous set of allocation represents.
|
/external/clang/test/CXX/expr/expr.unary/expr.new/ |
p20-0x.cpp | 5 // Placement allocation function:
|
/external/llvm/test/MC/COFF/ |
seh-stackalloc-zero.s | 3 // CHECK: Allocation size must be non-zero!
|
/external/syslinux/gpxe/src/include/ |
alloca.h | 7 * Temporary memory allocation
|
/external/valgrind/drd/tests/ |
std_thread2.stderr.exp | 5 Allocation context: BSS section of std_thread2
|