HomeSort by relevance Sort by last modified time
    Searched defs:Allocation (Results 1 - 25 of 35) 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;
  /external/lldb/include/lldb/Expression/
IRMemoryMap.h 44 eAllocationPolicyInvalid = 0, ///< It is an error for an allocation to have this policy.
45 eAllocationPolicyHostOnly, ///< This allocation was created in the host and will never make it into the process.
47 eAllocationPolicyMirror, ///< The intent is that this allocation exist both in the host and the process and have
49 eAllocationPolicyProcessOnly ///< The intent is that this allocation exist only in the process.
80 struct Allocation
82 lldb::addr_t m_process_alloc; ///< The (unaligned) base for the remote allocation
83 lldb::addr_t m_process_start; ///< The base address of the allocation in the process
84 size_t m_size; ///< The size of the requested allocation
86 uint8_t m_alignment; ///< The alignment of the requested allocation
93 Allocation (lldb::addr_t process_alloc
    [all...]
  /frameworks/native/libs/binder/
MemoryDealer.cpp 112 class Allocation : public MemoryBase {
114 Allocation(const sp<MemoryDealer>& dealer,
116 virtual ~Allocation();
164 Allocation::Allocation(
175 Allocation::~Allocation()
182 * and could alias some real allocation (their offset is zero). */
244 memory = new Allocation(this, heap(), offset, size);
  /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...]
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...]
  /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...]
  /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;
224 sp<const Element> ALLOCATION;
287 * from RenderScript kernels. An Allocation provides the backing store for a
290 * An Allocation also contains a set of usage flags that denote how the
291 * Allocation could be used. For example, an Allocation may have usage flags
294 * syncAll(int) in order to ensure that different users of the Allocation have
295 * a consistent view of memory. For example, in the case where an Allocation i
    [all...]
  /frameworks/rs/
rsAllocation.h 46 class Allocation : public ObjectBase {
47 // The graphics equivalent of malloc. The allocation contains a structure of elements.
73 // Allocation adapter state
74 const Allocation *baseAlloc;
91 } lod[android::renderscript::Allocation::MAX_LOD];
111 static Allocation * createAllocation(Context *rsc, const Type *, uint32_t usages,
114 static Allocation * createAdapter(Context *rsc, const Allocation *alloc, const Type *type);
117 virtual ~Allocation();
124 void copyRange1D(Context *rsc, const Allocation *src, int32_t srcOff, int32_t destOff, int32_t len)
    [all...]
rsAllocation.cpp 30 Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages,
44 Allocation::Allocation(Context *rsc, const Allocation *alloc, const Type *type)
56 void Allocation::operator delete(void* ptr) {
58 Allocation *a = (Allocation*) ptr;
63 Allocation * Allocation::createAllocation(Context *rsc, const Type *type, uint32_t usages
    [all...]
  /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;
  /external/llvm/lib/CodeGen/
StackColoring.cpp 259 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot);
260 if (Allocation) {
262 " with allocation: "<< Allocation->getName()<<"\n");
478 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 68 const char *Allocation() { return Magenta(); }
531 Printf("%sfreed by thread T%d%s here:%s\n", d.Allocation(),
538 d.Allocation(), alloc_thread->tid,
542 Printf("%sallocated by thread T%d%s here:%s\n", d.Allocation(),
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Allocation.java 30 * and from RenderScript kernels. An Allocation provides the backing store for
33 * <p>An Allocation also contains a set of usage flags that denote how the
34 * Allocation could be used. For example, an Allocation may have usage flags
37 * different usages using {@link android.renderscript.Allocation#syncAll} in
38 * order to ensure that different users of the Allocation have a consistent view
39 * of memory. For example, in the case where an Allocation is used as the output
41 * {@link #syncAll syncAll(Allocation.USAGE_SCRIPT)} prior to launching the
44 * <p>An Allocation can be populated with the {@link #copyFrom} routines. For
55 public class Allocation extends BaseObj
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Allocation.java 33 * and from RenderScript kernels. An Allocation provides the backing store for
36 * <p>An Allocation also contains a set of usage flags that denote how the
37 * Allocation could be used. For example, an Allocation may have usage flags
41 * {@link android.support.v8.renderscript.Allocation#syncAll} in
42 * order to ensure that different users of the Allocation have a consistent view
43 * of memory. For example, in the case where an Allocation is used as the output
45 * {@link #syncAll syncAll(Allocation.USAGE_SCRIPT)} prior to launching the
48 * <p>An Allocation can be populated with the {@link #copyFrom} routines. For
60 public class Allocation extends BaseObj
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/cpp/
rsCppStructs.h 28 * Every row in an RS allocation is guaranteed to be aligned by this amount, and
29 * every row in a user-backed allocation must be aligned by this amount.
43 class Allocation;
217 sp<const Element> ALLOCATION;
280 * from RenderScript kernels. An Allocation provides the backing store for a
283 * An Allocation also contains a set of usage flags that denote how the
284 * Allocation could be used. For example, an Allocation may have usage flags
287 * syncAll(int) in order to ensure that different users of the Allocation have
288 * a consistent view of memory. For example, in the case where an Allocation i
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/cpp/
rsCppStructs.h 28 * Every row in an RS allocation is guaranteed to be aligned by this amount, and
29 * every row in a user-backed allocation must be aligned by this amount.
43 class Allocation;
217 sp<const Element> ALLOCATION;
280 * from RenderScript kernels. An Allocation provides the backing store for a
283 * An Allocation also contains a set of usage flags that denote how the
284 * Allocation could be used. For example, an Allocation may have usage flags
287 * syncAll(int) in order to ensure that different users of the Allocation have
288 * a consistent view of memory. For example, in the case where an Allocation i
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/cpp/
rsCppStructs.h 28 * Every row in an RS allocation is guaranteed to be aligned by this amount, and
29 * every row in a user-backed allocation must be aligned by this amount.
43 class Allocation;
217 sp<const Element> ALLOCATION;
280 * from RenderScript kernels. An Allocation provides the backing store for a
283 * An Allocation also contains a set of usage flags that denote how the
284 * Allocation could be used. For example, an Allocation may have usage flags
287 * syncAll(int) in order to ensure that different users of the Allocation have
288 * a consistent view of memory. For example, in the case where an Allocation i
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /developers/build/prebuilts/androidtv/sample-inputs/app/libs/
exoplayer_dev-hls_20150123.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/21/
android.jar 

Completed in 3601 milliseconds

1 2