HomeSort by relevance Sort by last modified time
    Searched full:rsallocation (Results 1 - 25 of 35) sorted by null

1 2

  /frameworks/rs/
rs_compat.spec 8 ret RsAllocation
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...]
rsg.spec 25 param RsAllocation constants
32 param RsAllocation a
73 param RsAllocation *vtx
74 param RsAllocation *idx
rsApiAllocation.cpp 18 #include "rsAllocation.h"
23 extern "C" const void * rsaAllocationGetType(RsContext con, RsAllocation va) {
rsEnv.h 4 typedef void * RsAllocation;
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);
rsAllocation.cpp 18 #include "rsAllocation.h"
705 void rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) {
711 void rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) {
716 void rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) {
723 void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod,
729 void rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x,
735 void rsi_AllocationElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t z,
741 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
747 void rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
754 void rsi_AllocationRead(Context *rsc, RsAllocation va, void *data, size_t sizeBytes)
    [all...]
rsScript.cpp 170 void rsi_ScriptBindAllocation(Context * rsc, RsScript vs, RsAllocation va, uint32_t slot) {
196 RsAllocation *vains, size_t inLen,
197 RsAllocation vaout, const void *params,
211 RsAllocation vain, RsAllocation vaout,
219 RsAllocation ains[1] = {vain};
222 sizeof(ains) / sizeof(RsAllocation), vaout,
228 RsAllocation *vains, size_t inLen,
229 RsAllocation vaout, const RsScriptCall *sc,
rsApiMesh.cpp 33 void rsaMeshGetVertices(RsContext con, RsMesh mv, RsAllocation *vtxData, uint32_t vtxDataCount) {
43 void rsaMeshGetIndices(RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType, uint32_t idxDataCount) {
rsFBOCache.cpp 20 #include "rsAllocation.h"
rsSampler.h 20 #include "rsAllocation.h"
rsScriptGroup.cpp 370 sizeof(ains) / sizeof(RsAllocation),
407 RsAllocation alloc) {
414 RsAllocation alloc) {
rsClosure.cpp 12 RsAllocation returnValue,
rsScript.h 20 #include "rsAllocation.h"
rsMesh.cpp 270 RsAllocation * vtx, size_t vtxCount,
271 RsAllocation * idx, size_t idxCount,
rsProgram.cpp 215 void rsi_ProgramBindConstants(Context *rsc, RsProgram vp, uint32_t slot, RsAllocation constants) {
220 void rsi_ProgramBindTexture(Context *rsc, RsProgram vpf, uint32_t slot, RsAllocation a) {
Android.mk 132 rsAllocation.cpp \
304 rsAllocation.cpp \
rsRuntime.h 173 RsAllocation rsrAllocationCreateTyped(Context *, const RsType type,
  /frameworks/rs/cpp/
rsDispatch.h 24 typedef const void* (*AllocationGetTypeFnPtr)(RsContext con, RsAllocation va);
33 typedef RsClosure (*ClosureCreateFnPtr)(RsContext, RsScriptKernelID, RsAllocation, RsScriptFieldID*, size_t, int64_t*, size_t, int*, size_t, RsClosure*, size_t, RsScriptFieldID*, size_t);
44 typedef RsAllocation (*AllocationCreateTypedFnPtr) (RsContext, RsType, RsAllocationMipmapControl, uint32_t, uintptr_t);
45 typedef RsAllocation (*AllocationCreateStridedFnPtr) (RsContext, RsType, RsAllocationMipmapControl, uint32_t, uintptr_t, size_t);
46 typedef RsAllocation (*AllocationCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t);
47 typedef RsAllocation (*AllocationCubeCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t);
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 void*, size_t)
    [all...]
ScriptIntrinsicBLAS.cpp 101 float alpha, RsAllocation A, RsAllocation B,
102 float beta, RsAllocation C, int incX, int incY, int KL, int KU) {
106 RsAllocation in_allocs[3] = {A, B, C};
115 double alpha, RsAllocation A, RsAllocation B,
116 double beta, RsAllocation C, int incX, int incY, int KL, int KU) {
120 RsAllocation in_allocs[3] = {A, B, C};
128 float alphaX, float alphaY, RsAllocation A, RsAllocation B
    [all...]
  /frameworks/support/v8/renderscript/jni/
android_rscompat_usage_io.cpp 9 extern "C" void AllocationSetSurface(JNIEnv *_env, jobject _this, RsContext con, RsAllocation alloc, jobject sur, dispatchTable dispatchTab)
android_renderscript_RenderScript.cpp 430 (RsContext)con, (RsScriptKernelID)kernelID, (RsAllocation)returnValue,
592 RsAllocation in_allocs[3];
593 in_allocs[0] = (RsAllocation)A;
594 in_allocs[1] = (RsAllocation)B;
595 in_allocs[2] = (RsAllocation)C;
632 RsAllocation in_allocs[3];
633 in_allocs[0] = (RsAllocation)A;
634 in_allocs[1] = (RsAllocation)B;
635 in_allocs[2] = (RsAllocation)C;
674 RsAllocation in_allocs[3]
    [all...]
android_rscompat_usage_io_driver.cpp 8 #include "rsAllocation.h"
33 extern "C" void rscAllocationSetSurface(RsContext rscR, RsAllocation allocR, ANativeWindow *nw) {
  /frameworks/base/rs/jni/
android_renderscript_RenderScript.cpp 452 (RsContext)con, (RsScriptKernelID)kernelID, (RsAllocation)returnValue,
629 RsAllocation in_allocs[3];
630 in_allocs[0] = (RsAllocation)A;
631 in_allocs[1] = (RsAllocation)B;
632 in_allocs[2] = (RsAllocation)C;
662 RsAllocation in_allocs[3];
663 in_allocs[0] = (RsAllocation)A;
664 in_allocs[1] = (RsAllocation)B;
665 in_allocs[2] = (RsAllocation)C;
    [all...]
  /frameworks/rs/cpu_ref/
rsd_cpu.h 20 #include "rsAllocation.h"

Completed in 6579 milliseconds

1 2