/frameworks/rs/cpp/ |
D | rsDispatch.h | 24 typedef const void* (*AllocationGetTypeFnPtr)(RsContext con, RsAllocation va); 33 typedef RsClosure (*ClosureCreateFnPtr)(RsContext, RsScriptKernelID, RsAllocation, RsScriptFieldID*… 44 typedef RsAllocation (*AllocationCreateTypedFnPtr) (RsContext, RsType, RsAllocationMipmapControl, u… 45 typedef RsAllocation (*AllocationCreateStridedFnPtr) (RsContext, RsType, RsAllocationMipmapControl,… 46 typedef RsAllocation (*AllocationCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapContr… 47 typedef RsAllocation (*AllocationCubeCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapC… 48 typedef RsNativeWindow (*AllocationGetSurfaceFnPtr) (RsContext, RsAllocation); 49 typedef void (*AllocationSetSurfaceFnPtr) (RsContext, RsAllocation, RsNativeWindow); 57 typedef void (*AllocationCopyToBitmapFnPtr) (RsContext, RsAllocation, void*, size_t); 58 typedef void (*Allocation1DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, const… [all …]
|
D | ScriptIntrinsicBLAS.cpp | 101 float alpha, RsAllocation A, RsAllocation B, in nScriptIntrinsicBLAS_Single() 102 float beta, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Single() 106 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_Single() 115 double alpha, RsAllocation A, RsAllocation B, in nScriptIntrinsicBLAS_Double() 116 double beta, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Double() 120 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_Double() 128 float alphaX, float alphaY, RsAllocation A, RsAllocation B, in nScriptIntrinsicBLAS_Complex() 129 … float betaX, float betaY, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Complex() 133 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_Complex() 141 double alphaX, double alphaY, RsAllocation A, RsAllocation B, in nScriptIntrinsicBLAS_Z() [all …]
|
/frameworks/rs/ |
D | rs.spec | 62 ret RsAllocation 71 ret RsAllocation 80 ret RsAllocation 84 param RsAllocation alloc 90 param RsAllocation alloc1 91 param RsAllocation alloc2 96 param RsAllocation alloc 102 param RsAllocation alloc 110 param RsAllocation baseAlloc 111 ret RsAllocation [all …]
|
D | rsAllocation.cpp | 705 void rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) { in rsi_AllocationSyncAll() 711 void rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) { in rsi_AllocationGenerateMipmaps() 716 void rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) { in rsi_AllocationCopyToBitmap() 723 void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, in rsi_Allocation1DData() 729 void rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x, in rsi_Allocation1DElementData() 735 void rsi_AllocationElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t z, in rsi_AllocationElementData() 741 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod… in rsi_Allocation2DData() 747 void rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zof… in rsi_Allocation3DData() 754 void rsi_AllocationRead(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) { in rsi_AllocationRead() 769 void rsi_AllocationResize1D(Context *rsc, RsAllocation va, uint32_t dimX) { in rsi_AllocationResize1D() [all …]
|
D | rsg.spec | 25 param RsAllocation constants 32 param RsAllocation a 73 param RsAllocation *vtx 74 param RsAllocation *idx
|
D | rsScript.cpp | 170 void rsi_ScriptBindAllocation(Context * rsc, RsScript vs, RsAllocation va, uint32_t slot) { in rsi_ScriptBindAllocation() 196 RsAllocation *vains, size_t inLen, in rsi_ScriptForEachMulti() 197 RsAllocation vaout, const void *params, in rsi_ScriptForEachMulti() 211 RsAllocation vain, RsAllocation vaout, in rsi_ScriptForEach() 219 RsAllocation ains[1] = {vain}; in rsi_ScriptForEach() 222 sizeof(ains) / sizeof(RsAllocation), vaout, in rsi_ScriptForEach() 228 RsAllocation *vains, size_t inLen, in rsi_ScriptReduce() 229 RsAllocation vaout, const RsScriptCall *sc, in rsi_ScriptReduce()
|
D | rs.h | 37 void rsaMeshGetVertices(RsContext, RsMesh, RsAllocation *vtxData, uint32_t vtxDataCount); 38 void rsaMeshGetIndices(RsContext, RsMesh, RsAllocation *va, 46 const void* rsaAllocationGetType(RsContext con, RsAllocation va);
|
D | rsApiMesh.cpp | 33 void rsaMeshGetVertices(RsContext con, RsMesh mv, RsAllocation *vtxData, uint32_t vtxDataCount) { in rsaMeshGetVertices() 43 void rsaMeshGetIndices(RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType, uint32_t idx… in rsaMeshGetIndices()
|
D | rsApiAllocation.cpp | 23 extern "C" const void * rsaAllocationGetType(RsContext con, RsAllocation va) { in rsaAllocationGetType()
|
D | rs_compat.spec | 8 ret RsAllocation
|
D | rsEnv.h | 4 typedef void * RsAllocation; typedef
|
D | rsScriptGroup.cpp | 370 sizeof(ains) / sizeof(RsAllocation), in execute() 407 RsAllocation alloc) { in rsi_ScriptGroupSetInput() 414 RsAllocation alloc) { in rsi_ScriptGroupSetOutput()
|
D | rsProgram.cpp | 215 void rsi_ProgramBindConstants(Context *rsc, RsProgram vp, uint32_t slot, RsAllocation constants) { in rsi_ProgramBindConstants() 220 void rsi_ProgramBindTexture(Context *rsc, RsProgram vpf, uint32_t slot, RsAllocation a) { in rsi_ProgramBindTexture()
|
D | rsMesh.cpp | 270 RsAllocation * vtx, size_t vtxCount, in rsi_MeshCreate() 271 RsAllocation * idx, size_t idxCount, in rsi_MeshCreate()
|
D | rsClosure.cpp | 12 RsAllocation returnValue, in rsi_ClosureCreate()
|
D | rsDefines.h | 32 typedef void * RsAllocation; typedef
|
D | rsScriptC_Lib.cpp | 290 RsAllocation rsrAllocationCreateTyped(Context *rsc, const RsType type, in rsrAllocationCreateTyped()
|
D | rsRuntime.h | 173 RsAllocation rsrAllocationCreateTyped(Context *, const RsType type,
|
/frameworks/base/rs/jni/ |
D | android_renderscript_RenderScript.cpp | 452 (RsContext)con, (RsScriptKernelID)kernelID, (RsAllocation)returnValue, in nClosureCreate() 629 RsAllocation in_allocs[3]; in nScriptIntrinsicBLAS_Single() 630 in_allocs[0] = (RsAllocation)A; in nScriptIntrinsicBLAS_Single() 631 in_allocs[1] = (RsAllocation)B; in nScriptIntrinsicBLAS_Single() 632 in_allocs[2] = (RsAllocation)C; in nScriptIntrinsicBLAS_Single() 662 RsAllocation in_allocs[3]; in nScriptIntrinsicBLAS_Double() 663 in_allocs[0] = (RsAllocation)A; in nScriptIntrinsicBLAS_Double() 664 in_allocs[1] = (RsAllocation)B; in nScriptIntrinsicBLAS_Double() 665 in_allocs[2] = (RsAllocation)C; in nScriptIntrinsicBLAS_Double() 697 RsAllocation in_allocs[3]; in nScriptIntrinsicBLAS_Complex() [all …]
|
/frameworks/support/v8/renderscript/jni/ |
D | android_renderscript_RenderScript.cpp | 443 (RsContext)con, (RsScriptKernelID)kernelID, (RsAllocation)returnValue, in nClosureCreate() 605 RsAllocation in_allocs[3]; in nScriptIntrinsicBLAS_Single() 606 in_allocs[0] = (RsAllocation)A; in nScriptIntrinsicBLAS_Single() 607 in_allocs[1] = (RsAllocation)B; in nScriptIntrinsicBLAS_Single() 608 in_allocs[2] = (RsAllocation)C; in nScriptIntrinsicBLAS_Single() 645 RsAllocation in_allocs[3]; in nScriptIntrinsicBLAS_Double() 646 in_allocs[0] = (RsAllocation)A; in nScriptIntrinsicBLAS_Double() 647 in_allocs[1] = (RsAllocation)B; in nScriptIntrinsicBLAS_Double() 648 in_allocs[2] = (RsAllocation)C; in nScriptIntrinsicBLAS_Double() 687 RsAllocation in_allocs[3]; in nScriptIntrinsicBLAS_Complex() [all …]
|
D | android_rscompat_usage_io.cpp | 9 extern "C" void AllocationSetSurface(JNIEnv *_env, jobject _this, RsContext con, RsAllocation alloc… in AllocationSetSurface()
|
D | android_rscompat_usage_io_driver.cpp | 33 extern "C" void rscAllocationSetSurface(RsContext rscR, RsAllocation allocR, ANativeWindow *nw) { in rscAllocationSetSurface()
|