/frameworks/rs/ |
D | rsGrallocConsumer.cpp | 25 GrallocConsumer::GrallocConsumer (const Context *rsc, Allocation *a, uint32_t numAlloc) in GrallocConsumer() argument 28 mAlloc = new Allocation *[numAlloc]; in GrallocConsumer() 29 mAcquiredBuffer = new AcquiredBuffer[numAlloc]; in GrallocConsumer() 30 isIdxUsed = new bool[numAlloc]; in GrallocConsumer() 34 mNumAlloc = numAlloc; in GrallocConsumer() 63 for (uint32_t i = 1; i < numAlloc; i++) { in GrallocConsumer()
|
D | rsGrallocConsumer.h | 40 GrallocConsumer(const Context *, Allocation *, uint32_t numAlloc);
|
D | rsAllocation.cpp | 579 void Allocation::setupGrallocConsumer(const Context *rsc, uint32_t numAlloc) { in setupGrallocConsumer() argument 582 if (numAlloc > MAX_NUM_ALLOC || numAlloc <= 0) { in setupGrallocConsumer() 586 mGrallocConsumer = new GrallocConsumer(rsc, this, numAlloc); in setupGrallocConsumer() 855 void rsi_AllocationSetupBufferQueue(Context *rsc, RsAllocation valloc, uint32_t numAlloc) { in rsi_AllocationSetupBufferQueue() argument 857 alloc->setupGrallocConsumer(rsc, numAlloc); in rsi_AllocationSetupBufferQueue()
|
D | rsHidlAdaptation.h | 102 … static void AllocationSetupBufferQueue(RsContext context, RsAllocation valloc, uint32_t numAlloc);
|
D | rsAllocation.h | 181 void setupGrallocConsumer(const Context *rsc, uint32_t numAlloc);
|
D | rs.spec | 85 param uint32_t numAlloc
|
D | rsApiStubs.cpp | 365 …"C" void rsAllocationSetupBufferQueue (RsContext ctxWrapper, RsAllocation alloc, uint32_t numAlloc) in rsAllocationSetupBufferQueue() argument 367 RS_DISPATCH(ctxWrapper, AllocationSetupBufferQueue, alloc, numAlloc); in rsAllocationSetupBufferQueue()
|
D | rsApiStubs.h | 65 extern "C" void rsAllocationSetupBufferQueue (RsContext rsc, RsAllocation alloc, uint32_t numAlloc);
|
D | rsHidlAdaptation.cpp | 1063 …ptation::AllocationSetupBufferQueue (RsContext context, RsAllocation allocation, uint32_t numAlloc) in AllocationSetupBufferQueue() argument 1067 GetIContextHandle(context)->allocationSetupBufferQueue(_allocation, numAlloc); in AllocationSetupBufferQueue()
|
/frameworks/base/rs/java/android/renderscript/ |
D | Allocation.java | 2886 public static Allocation[] createAllocations(RenderScript rs, Type t, int usage, int numAlloc) { in createAllocations() argument 2894 Allocation[] mAllocationArray = new Allocation[numAlloc]; in createAllocations() 2897 if (numAlloc > MAX_NUMBER_IO_INPUT_ALLOC) { in createAllocations() 2902 mAllocationArray[0].setupBufferQueue(numAlloc);; in createAllocations() 2905 for (int i=1; i<numAlloc; i++) { in createAllocations() 2953 void setupBufferQueue(int numAlloc) { in setupBufferQueue() argument 2958 mRS.nAllocationSetupBufferQueue(getID(mRS), numAlloc); in setupBufferQueue() local
|
D | RenderScript.java | 504 native void rsnAllocationSetupBufferQueue(long con, long alloc, int numAlloc); in rsnAllocationSetupBufferQueue() argument 505 synchronized void nAllocationSetupBufferQueue(long alloc, int numAlloc) { in nAllocationSetupBufferQueue() argument 507 rsnAllocationSetupBufferQueue(mContext, alloc, numAlloc); in nAllocationSetupBufferQueue()
|
/frameworks/rs/cpp/ |
D | rsDispatch.h | 74 …oid (*AllocationSetupBufferQueueFnPtr) (RsContext context, RsAllocation valloc, uint32_t numAlloc);
|
/frameworks/base/rs/jni/ |
D | android_renderscript_RenderScript.cpp | 1241 nAllocationSetupBufferQueue(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jint numAlloc) in nAllocationSetupBufferQueue() argument 1245 (RsAllocation)alloc, numAlloc); in nAllocationSetupBufferQueue() 1247 rsAllocationSetupBufferQueue((RsContext)con, (RsAllocation)alloc, (uint32_t)numAlloc); in nAllocationSetupBufferQueue()
|