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

1 2

  /frameworks/base/libs/hwui/utils/
FatVector.h 57 explicit InlineStdAllocator(Allocation& allocation) : mAllocation(allocation) {}
58 InlineStdAllocator(const InlineStdAllocator& other) : mAllocation(other.mAllocation) {}
62 if (!mAllocation.inUse && num <= SIZE) {
63 mAllocation.inUse = true;
64 return (T*)mAllocation.array;
71 if (p == (T*)mAllocation.array) {
72 mAllocation.inUse = false;
78 Allocation& mAllocation;
92 InlineStdAllocator<T, SIZE>(mAllocation)) {
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
BlockingInputAllocation.java 40 private final Allocation mAllocation;
77 return mAllocation;
96 mAllocation.ioReceive();
119 mAllocation.ioReceive();
139 mAllocation.ioReceive();
160 mAllocation.setOnBufferAvailableListener(/*callback*/null);
180 mAllocation = allocation;
183 mAllocation.setOnBufferAvailableListener(mListener);
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
FakeExtensionController.java 42 private final Object mAllocation;
45 mAllocation = o;
90 return new FakeExtension(mAllocation);
95 private final Object mAllocation;
98 mAllocation = allocation;
119 mTracker.getLeakInfo(mAllocation).clearAllocations();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
Buffer.java 30 private Allocation mAllocation;
42 mAllocation = Allocation.createFromBitmap(rs, mBitmap,
69 return mAllocation;
74 mAllocation.copyTo(mBitmap);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/f32/
RefocusFilterF32.java 100 Allocation mAllocation = Allocation.createFromBitmap(renderScript, mBitmap);
101 scriptC.forEach_PackSharpImage(mAllocation);
103 mAllocation.copyTo(mBitmap);
104 mAllocation.destroy();
106 mAllocation.destroy();
115 Allocation mAllocation = Allocation.createFromBitmap(renderScript, mBitmap);
116 scriptC.forEach_PackFuzzyImage(mAllocation);
118 mAllocation.copyTo(mBitmap);
119 mAllocation.destroy();
121 mAllocation.destroy()
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/d1new/
RefocusFilterd1new.java 100 Allocation mAllocation = Allocation.createFromBitmap(renderScript, mBitmap);
101 scriptC.forEach_PackSharpImage(mAllocation);
103 mAllocation.copyTo(mBitmap);
104 mAllocation.destroy();
114 Allocation mAllocation = Allocation.createFromBitmap(renderScript, mBitmap);
115 scriptC.forEach_PackFuzzyImage(mAllocation);
117 mAllocation.copyTo(mBitmap);
118 mAllocation.destroy();
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/d1new/
RefocusFilterd1new.java 85 Allocation mAllocation = Allocation.createFromBitmap(renderScript, mBitmap);
86 scriptC.forEach_PackSharpImage(mAllocation);
88 mAllocation.copyTo(mBitmap);
98 Allocation mAllocation = Allocation.createFromBitmap(renderScript, mBitmap);
99 scriptC.forEach_PackFuzzyImage(mAllocation);
101 mAllocation.copyTo(mBitmap);
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/f32/
RefocusFilterF32.java 83 Allocation mAllocation = Allocation.createFromBitmap(renderScript, mBitmap);
84 scriptC.forEach_PackSharpImage(mAllocation);
86 mAllocation.copyTo(mBitmap);
96 Allocation mAllocation = Allocation.createFromBitmap(renderScript, mBitmap);
97 scriptC.forEach_PackFuzzyImage(mAllocation);
99 mAllocation.copyTo(mBitmap);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
BackingStore.java 799 private Allocation mAllocation = null;
823 mAllocation = Allocation.createTyped(mRenderScript, imageType);
848 mAllocation.copyFrom(pixels.array());
851 mAllocation.copyFrom(bitmap);
866 mAllocation.copyFromUnchecked(bytes);
876 return mAllocation;
895 if (mAllocation != null) {
896 mAllocation.destroy();
897 mAllocation = null;
  /hardware/google/av/codec2/vndk/bufferpool/
AccessorImpl.cpp 47 const std::shared_ptr<BufferPoolAllocation> mAllocation;
57 mAllocation(alloc), mAllocSize(allocSize), mConfig(allocConfig) {}
60 return mAllocation->handle();
  /frameworks/base/rs/java/android/renderscript/
Script.java 492 protected Allocation mAllocation;
495 mAllocation = Allocation.createSized(rs, mElement, dimx,
500 mAllocation =
513 return mAllocation.getType();
517 return mAllocation;
ScriptGroup.java 48 Allocation mAllocation;
486 mInputs[ct].mAllocation = a;
508 mOutputs[ct].mAllocation = a;
    [all...]
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
Script.java 536 protected Allocation mAllocation;
539 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT);
543 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT | usages);
554 return mAllocation.getType();
558 return mAllocation;
ScriptGroup.java 55 Allocation mAllocation;
79 Allocation mAllocation;
483 mInputs[ct].mAllocation = a;
508 mOutputs[ct].mAllocation = a;
539 if (l.mAllocation !=null) {
548 l.mAllocation = alloc;
551 n.mOutputs.get(ct3).mAllocation = alloc;
563 ain = nodeInput.mAllocation;
569 ain = sgInput.mAllocation;
575 aout = nodeOutput.mAllocation;
    [all...]
  /hardware/google/av/codec2/vndk/
C2Buffer.cpp 124 mAllocation(alloc),
129 mAllocation(other.mAllocation),
139 return mAllocation ? mAllocation->handle() : nullptr;
145 return mAllocation ? mAllocation->getAllocatorId() : C2Allocator::BAD_ID;
149 return mAllocation;
153 std::shared_ptr<C2LinearAllocation> mAllocation;
523 : mAllocation(alloc) {
    [all...]
  /frameworks/rs/cpp/
rsCppStructs.h     [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 

Completed in 279 milliseconds

1 2