/cts/tests/tests/rscpp/src/android/cts/rscpp/ |
RSBlurTest.java | 36 int[] baseAlloc = new int[X * Y]; 37 RSUtils.genRandom(0x1DEFF, 255, 1, -128, baseAlloc); 40 byteAlloc[i] = (byte)baseAlloc[i]; 65 int[] baseAlloc = new int[X * Y * 4]; 66 RSUtils.genRandom(0xFAFADE10, 255, 1, -128, baseAlloc); 69 byteAlloc[i] = (byte)baseAlloc[i];
|
RSColorMatrixTest.java | 36 int[] baseAlloc = new int[X * Y * 4]; 37 RSUtils.genRandom(0x251107, 255, 1, -128, baseAlloc); 40 byteAlloc[i] = (byte)baseAlloc[i]; 76 int[] baseAlloc = new int[X * Y * 4]; 77 RSUtils.genRandom(0x251106, 255, 1, -128, baseAlloc); 80 byteAlloc[i] = (byte)baseAlloc[i]; 107 int[] baseAlloc = new int[X * Y * 4]; 108 RSUtils.genRandom(0x251105, 255, 1, -128, baseAlloc); 111 byteAlloc[i] = (byte)baseAlloc[i]; 142 int[] baseAlloc = new int[X * Y * 4] [all...] |
RSConvolveTest.java | 36 int[] baseAlloc = new int[X * Y]; 48 RSUtils.genRandom(0x1DEFFD0, 255, 1, -128, baseAlloc); 51 byteAlloc[i] = (byte)baseAlloc[i]; 75 int[] baseAlloc = new int[X * Y]; 104 RSUtils.genRandom(0x1DEFFD0, 255, 1, -128, baseAlloc); 108 byteAlloc[i] = (byte)baseAlloc[i];
|
RSLUTTest.java | 36 int[] baseAlloc = new int[X * Y * 4]; 37 RSUtils.genRandom(0x72727272, 255, 1, -128, baseAlloc); 40 byteAlloc[i] = (byte)baseAlloc[i];
|
RS3DLUTTest.java | 38 int[] baseAlloc = new int[X * Y * 4]; 39 RSUtils.genRandom(0x419144, 255, 1, -128, baseAlloc); 45 byteAlloc[i] = (byte)baseAlloc[i];
|
RSBlendTest.java | 37 int[] baseAlloc = new int[X * Y * 4]; 38 RSUtils.genRandom(0x789321, 255, 1, -128, baseAlloc); 41 byteAlloc[i] = (byte)baseAlloc[i];
|
RSResizeTest.java | 48 int[] baseAlloc = new int[arrSize]; 52 RSUtils.genRandom(0x72727272, 255, 1, -128, baseAlloc); 56 byteAlloc[i] = (byte)baseAlloc[i]; 63 floatAlloc[i] = (float)baseAlloc[i];
|
/frameworks/rs/driver/runtime/ |
rs_structs.h | 53 const void *baseAlloc;
|
/hardware/interfaces/renderscript/1.0/ |
IContext.hal | 52 * @param baseAlloc Allocation 56 allocationAdapterCreate(Type type, Allocation baseAlloc) 172 * TODO: clearly define baseAlloc vs subAlloc 177 * @param baseAlloc Base Allocation 182 allocationShareBufferQueue(Allocation baseAlloc, Allocation subAlloc); [all...] |
/hardware/interfaces/renderscript/1.0/default/ |
Context.h | 40 Return<Allocation> allocationAdapterCreate(Type type, Allocation baseAlloc) override; 49 Return<void> allocationShareBufferQueue(Allocation baseAlloc, Allocation subAlloc) override;
|
Context.cpp | 68 Return<Allocation> Context::allocationAdapterCreate(Type type, Allocation baseAlloc) { 70 RsAllocation _baseAlloc = hidl_to_rs<RsAllocation>(baseAlloc); 135 Return<void> Context::allocationShareBufferQueue(Allocation baseAlloc, Allocation subAlloc) { 136 RsAllocation _baseAlloc = hidl_to_rs<RsAllocation>(baseAlloc); [all...] |
/frameworks/rs/ |
rsAllocation.h | 74 const Allocation *baseAlloc;
|
rsHidlAdaptation.h | 104 static RsAllocation AllocationAdapterCreate(RsContext rsc, RsType vtype, RsAllocation baseAlloc);
|
rs.spec | 110 param RsAllocation baseAlloc
|
rsApiStubs.h | 62 extern "C" RsAllocation rsAllocationAdapterCreate (RsContext rsc, RsType vtype, RsAllocation baseAlloc);
|
rsApiStubs.cpp | 355 extern "C" RsAllocation rsAllocationAdapterCreate (RsContext ctxWrapper, RsType vtype, RsAllocation baseAlloc) 357 return RS_DISPATCH(ctxWrapper, AllocationAdapterCreate, vtype, baseAlloc); [all...] |
rsHidlAdaptation.cpp | [all...] |
rsAllocation.cpp | 46 mHal.state.baseAlloc = alloc; [all...] |
/frameworks/rs/cpp/ |
rsDispatch.h | 106 typedef RsAllocation (*AllocationAdapterCreateFnPtr) (RsContext rsc, RsType vtype, RsAllocation baseAlloc);
|
/frameworks/rs/driver/ |
rsdAllocation.cpp | 500 const Allocation *base = alloc->mHal.state.baseAlloc; 535 if (alloc->mHal.state.baseAlloc == nullptr) { [all...] |
/frameworks/rs/rsov/driver/ |
rsovAllocation.cpp | 571 const Allocation *base = alloc->mHal.state.baseAlloc;
|