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

1 2

  /external/llvm/tools/lli/
RemoteMemoryManager.h 11 // allocation. Iterators are provided for all data and code allocations.
31 struct Allocation {
32 Allocation() {}
33 Allocation(sys::MemoryBlock mb, unsigned a, bool code)
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;
  /frameworks/base/libs/hwui/utils/
FatVector.h 44 struct Allocation {
45 PREVENT_COPY_AND_ASSIGN(Allocation);
47 Allocation() {};
56 InlineStdAllocator(Allocation& allocation)
57 : mAllocation(allocation) {}
79 Allocation& mAllocation;
101 typename InlineStdAllocator<T, SIZE>::Allocation mAllocation;
  /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...]
  /system/core/libmemunreachable/
HeapWalker.cpp 31 bool HeapWalker::Allocation(uintptr_t begin, uintptr_t end) {
  /external/deqp/external/vulkancts/framework/vulkan/
vkMemUtil.hpp 33 * \brief Memory allocation interface
35 * Allocation represents block of device memory and is allocated by
39 * Allocation doesn't necessarily correspond to a whole VkDeviceMemory, but
40 * instead it may represent sub-allocation. Thus whenever VkDeviceMemory
41 * (getMemory()) managed by Allocation is passed to Vulkan API calls,
46 * pointer, i.e. the pointer is already adjusted in case of sub-allocation.
48 * Memory mappings are managed solely by Allocation, i.e. unmapping or
49 * re-mapping VkDeviceMemory owned by Allocation is not allowed.
51 class Allocation
54 virtual ~Allocation (void)
    [all...]
  /frameworks/native/libs/binder/
MemoryDealer.cpp 112 class Allocation : public MemoryBase {
114 Allocation(const sp<MemoryDealer>& dealer,
116 virtual ~Allocation();
166 Allocation::Allocation(
177 Allocation::~Allocation()
184 * and could alias some real allocation (their offset is zero). */
246 memory = new Allocation(this, heap(), offset, size);
  /frameworks/rs/cpp/
Allocation.cpp 24 void * Allocation::getIDSafe() const {
28 void Allocation::updateCacheInfo(sp<const Type> t) {
41 Allocation::Allocation(void *id, sp<RS> rs, sp<const Type> t, uint32_t usage) :
76 void Allocation::validateIsInt64() {
81 ALOGE("64 bit integer source does not match allocation type %i", dt);
84 void Allocation::validateIsInt32() {
89 ALOGE("32 bit integer source does not match allocation type %i", dt);
92 void Allocation::validateIsInt16() {
97 ALOGE("16 bit integer source does not match allocation type %i", dt)
    [all...]
rsCppStructs.h 27 * Every row in an RS allocation is guaranteed to be aligned by this amount, and
28 * every row in a user-backed allocation must be aligned by this amount.
47 class Allocation;
497 sp<const Element> ALLOCATION;
560 * from RenderScript kernels. An Allocation provides the backing store for a
563 * An Allocation also contains a set of usage flags that denote how the
564 * Allocation could be used. For example, an Allocation may have usage flags
567 * syncAll(int) in order to ensure that different users of the Allocation have
568 * a consistent view of memory. For example, in the case where an Allocation i
    [all...]
  /libcore/luni/src/test/java/libcore/util/
NativeAllocationRegistryTest.java 39 private static class Allocation {
53 Allocation[] saved = new Allocation[numSavedAllocations];
69 final Allocation alloc = new Allocation();
177 // Allocation that returns null should have no effect.
  /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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
avrfsdk.h 43 ULONG64 Allocation;
  /frameworks/rs/
rsAllocation.cpp 29 Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages,
43 Allocation::Allocation(Context *rsc, const Allocation *alloc, const Type *type)
55 void Allocation::operator delete(void* ptr) {
57 Allocation *a = (Allocation*) ptr;
62 Allocation * Allocation::createAllocationStrided(Context *rsc, const Type *type, uint32_t usages
    [all...]
rsAllocation.h 46 class Allocation : public ObjectBase {
47 // The graphics equivalent of malloc. The allocation contains a structure of elements.
77 // Allocation adapter state
78 const Allocation *baseAlloc;
95 } lod[android::renderscript::Allocation::MAX_LOD];
115 static Allocation * createAllocation(Context *rsc, const Type *, uint32_t usages,
118 static Allocation * createAllocationStrided(Context *rsc, const Type *, uint32_t usages,
121 static Allocation * createAdapter(Context *rsc, const Allocation *alloc, const Type *type);
124 virtual ~Allocation();
    [all...]
  /frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
FindRegion.java 26 import android.support.v8.renderscript.Allocation;
86 Allocation border_coords;
87 Allocation border_values;
91 border_coords = Allocation.createTyped(mRs, builderU32_2.create());
93 Allocation border_coords_float;
94 border_coords_float = Allocation.createSized(mRs, Element.F32_2(mRs), mPointsXY.length / 2);
99 findRegion.set_image(Allocation.createFromBitmap(mRs, image));
103 border_values = Allocation.createTyped(mRs, builderF32_3.create());
111 Allocation fit = Allocation.createTyped(mRs, builderF32.create())
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java 20 import android.renderscript.Allocation;
22 import android.renderscript.Allocation.MipmapControl;
48 Allocation.createTyped(mRS, typeBuilder.create());
59 Allocation.createTyped(mRS, typeBuilder.setX(8).create(),
61 Allocation.USAGE_GRAPHICS_TEXTURE);
62 Allocation.createTyped(mRS, typeBuilder.setY(8).create(),
64 Allocation.USAGE_GRAPHICS_TEXTURE);
66 Allocation.createTyped(mRS, typeBuilder.create(),
68 Allocation.USAGE_GRAPHICS_TEXTURE |
69 Allocation.USAGE_SCRIPT)
    [all...]
  /external/llvm/lib/CodeGen/
StackColoring.cpp 258 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot);
259 if (Allocation) {
261 " with allocation: "<< Allocation->getName()<<"\n");
477 assert(To && From && "Invalid allocation object");
  /frameworks/rs/driver/runtime/
rs_structs.h 11 * internal members of the C++ class Allocation owned by librs. Unfortunately,
30 typedef struct Allocation {
52 // Allocation adapter state
69 } lod[16/*android::renderscript::Allocation::MAX_LOD*/];
  /external/compiler-rt/lib/asan/
asan_report.cc 75 const char *Allocation() { return Magenta(); }
557 Printf("%sfreed by thread T%d%s here:%s\n", d.Allocation(),
564 d.Allocation(), alloc_thread->tid,
568 Printf("%sallocated by thread T%d%s here:%s\n", d.Allocation(),
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Allocation.java 32 * and from RenderScript kernels. An Allocation provides the backing store for
35 * <p>An Allocation also contains a set of usage flags that denote how the
36 * Allocation could be used. For example, an Allocation may have usage flags
39 * different usages using {@link android.renderscript.Allocation#syncAll} in
40 * order to ensure that different users of the Allocation have a consistent view
41 * of memory. For example, in the case where an Allocation is used as the output
43 * {@link #syncAll syncAll(Allocation.USAGE_SCRIPT)} prior to launching the
46 * <p>An Allocation can be populated with the {@link #copyFrom} routines. For
57 public class Allocation extends BaseObj
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Allocation.java 31 * and from RenderScript kernels. An Allocation provides the backing store for
34 * <p>An Allocation also contains a set of usage flags that denote how the
35 * Allocation could be used. For example, an Allocation may have usage flags
39 * {@link android.support.v8.renderscript.Allocation#syncAll} in
40 * order to ensure that different users of the Allocation have a consistent view
41 * of memory. For example, in the case where an Allocation is used as the output
43 * {@link #syncAll syncAll(Allocation.USAGE_SCRIPT)} prior to launching the
46 * <p>An Allocation can be populated with the {@link #copyFrom} routines. For
58 public class Allocation extends BaseObj
    [all...]
  /cts/tests/tests/rsblas/src/android/renderscript/cts/
IntrinsicBLAS.java 28 private ArrayList<Allocation> mMatrixS;
32 private ArrayList<Allocation> mMatrixD;
36 private ArrayList<Allocation> mMatrixC;
40 private ArrayList<Allocation> mMatrixZ;
74 mMatrixS = new ArrayList<Allocation>();
75 mMatrixD = new ArrayList<Allocation>();
76 mMatrixC = new ArrayList<Allocation>();
77 mMatrixZ = new ArrayList<Allocation>();
80 mMatrixS.add(Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32(mRS), x, y)));
81 mMatrixD.add(Allocation.createTyped(mRS, Type.createXY(mRS, Element.F64(mRS), x, y)))
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /developers/build/prebuilts/androidtv/sample-inputs/app/libs/
exoplayer_dev-hls_20150123.jar 
  /packages/apps/TV/usbtuner/libs/
exoplayer_1.5.6.jar 
  /prebuilts/sdk/19/
android.jar 

Completed in 1388 milliseconds

1 2