HomeSort by relevance Sort by last modified time
    Searched refs:RsAllocation (Results 1 - 25 of 27) sorted by null

1 2

  /frameworks/rs/
rsHidlAdaptation.h 77 static RsAllocation AllocationCreateTyped(RsContext, RsType, RsAllocationMipmapControl, uint32_t, uintptr_t);
78 static RsAllocation AllocationCreateFromBitmap(RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t);
79 static RsAllocation AllocationCubeCreateFromBitmap(RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t);
80 static const void* AllocationGetType(RsContext con, RsAllocation va);
81 static RsNativeWindow AllocationGetSurface(RsContext, RsAllocation);
82 static void AllocationSetSurface(RsContext, RsAllocation, RsNativeWindow);
83 static void AllocationCopyToBitmap(RsContext, RsAllocation, void*, size_t);
84 static void Allocation1DData(RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, const void*, size_t);
85 static void Allocation1DElementData(RsContext, RsAllocation, uint32_t, uint32_t, const void*, size_t, size_t);
86 static void AllocationElementData(RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, const void*, size_t, size_t)
    [all...]
rsApiAllocation.cpp 18 #include "rsAllocation.h"
23 extern "C" const void * rsaAllocationGetType(RsContext con, RsAllocation va) {
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...]
rsApiStubs.h 59 extern "C" RsAllocation rsAllocationCreateTyped (RsContext rsc, RsType vtype, RsAllocationMipmapControl mipmaps, uint32_t usages, uintptr_t ptr);
60 extern "C" RsAllocation rsAllocationCreateFromBitmap (RsContext rsc, RsType vtype, RsAllocationMipmapControl mipmaps, const void * data, size_t data_length, uint32_t usages);
61 extern "C" RsAllocation rsAllocationCubeCreateFromBitmap (RsContext rsc, RsType vtype, RsAllocationMipmapControl mipmaps, const void * data, size_t data_length, uint32_t usages);
62 extern "C" RsAllocation rsAllocationAdapterCreate (RsContext rsc, RsType vtype, RsAllocation baseAlloc);
63 extern "C" const void * rsaAllocationGetType(RsContext con, RsAllocation va);
64 extern "C" RsNativeWindow rsAllocationGetSurface (RsContext rsc, RsAllocation alloc);
65 extern "C" void rsAllocationSetupBufferQueue (RsContext rsc, RsAllocation alloc, uint32_t numAlloc);
66 extern "C" void rsAllocationShareBufferQueue (RsContext rsc, RsAllocation alloc1, RsAllocation alloc2)
    [all...]
rsEnv.h 4 typedef void * RsAllocation;
rsg.spec 25 param RsAllocation constants
32 param RsAllocation a
73 param RsAllocation *vtx
74 param RsAllocation *idx
rsApiStubs.cpp 332 extern "C" RsAllocation rsAllocationCreateTyped (RsContext ctxWrapper, RsType vtype, RsAllocationMipmapControl mipmaps,
338 extern "C" RsAllocation rsAllocationCreateFromBitmap (RsContext ctxWrapper, RsType vtype, RsAllocationMipmapControl mipmaps,
344 extern "C" RsAllocation rsAllocationCubeCreateFromBitmap (RsContext ctxWrapper, RsType vtype, RsAllocationMipmapControl mipmaps,
350 extern "C" RsAllocation rsAllocationAdapterCreate (RsContext ctxWrapper, RsType vtype, RsAllocation baseAlloc)
355 extern "C" const void * rsaAllocationGetType(RsContext ctxWrapper, RsAllocation va)
360 extern "C" RsNativeWindow rsAllocationGetSurface (RsContext ctxWrapper, RsAllocation alloc)
365 extern "C" void rsAllocationSetupBufferQueue (RsContext ctxWrapper, RsAllocation alloc, uint32_t numAlloc)
370 extern "C" void rsAllocationShareBufferQueue (RsContext ctxWrapper, RsAllocation alloc1, RsAllocation alloc2
    [all...]
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);
rsApiMesh.cpp 32 void rsaMeshGetVertices(RsContext con, RsMesh mv, RsAllocation *vtxData, uint32_t vtxDataCount) {
42 void rsaMeshGetIndices(RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType, uint32_t idxDataCount) {
rsAllocation.cpp 18 #include "rsAllocation.h"
665 void rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) {
671 void rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) {
676 void rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) {
683 void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod,
689 void rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x,
695 void rsi_AllocationElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t z,
701 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
707 void rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
714 void rsi_AllocationRead(Context *rsc, RsAllocation va, void *data, size_t sizeBytes)
    [all...]
rsHidlAdaptation.cpp 214 const void* RsHidlAdaptation::AllocationGetType(RsContext context, RsAllocation allocation)
273 RsAllocation returnValue,
419 RsAllocation RsHidlAdaptation::AllocationCreateTyped (RsContext context, RsType type,
428 return (RsAllocation) allocation;
432 RsAllocation RsHidlAdaptation::AllocationCreateFromBitmap (RsContext context, RsType type,
443 return (RsAllocation) allocation;
446 RsAllocation RsHidlAdaptation::AllocationCubeCreateFromBitmap(RsContext context, RsType type,
456 return (RsAllocation) allocation;
459 RsNativeWindow RsHidlAdaptation::AllocationGetSurface (RsContext context, RsAllocation allocation)
466 void RsHidlAdaptation::AllocationSetSurface (RsContext context, RsAllocation allocation, RsNativeWindow window
    [all...]
rsScript.cpp 167 void rsi_ScriptBindAllocation(Context * rsc, RsScript vs, RsAllocation va, uint32_t slot) {
193 RsAllocation *vains, size_t inLen,
194 RsAllocation vaout, const void *params,
208 RsAllocation vain, RsAllocation vaout,
216 RsAllocation ains[1] = {vain};
219 sizeof(ains) / sizeof(RsAllocation), vaout,
225 RsAllocation *vains, size_t inLen,
226 RsAllocation vaout, const RsScriptCall *sc,
rsProgram.cpp 212 void rsi_ProgramBindConstants(Context *rsc, RsProgram vp, uint32_t slot, RsAllocation constants) {
217 void rsi_ProgramBindTexture(Context *rsc, RsProgram vpf, uint32_t slot, RsAllocation a) {
rsScriptGroup.cpp 350 sizeof(ains) / sizeof(RsAllocation),
384 RsAllocation alloc) {
391 RsAllocation alloc) {
rsMesh.cpp 267 RsAllocation * vtx, size_t vtxCount,
268 RsAllocation * idx, size_t idxCount,
rsClosure.cpp 12 RsAllocation returnValue,
rsDefines.h 32 typedef void * RsAllocation;
  /frameworks/rs/cpp/
rsDispatch.h 23 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);
45 typedef RsAllocation (*AllocationCreateTypedFnPtr) (RsContext, RsType, RsAllocationMipmapControl, uint32_t, uintptr_t);
46 typedef RsAllocation (*AllocationCreateStridedFnPtr) (RsContext, RsType, RsAllocationMipmapControl, uint32_t, uintptr_t, size_t);
47 typedef RsAllocation (*AllocationCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t);
48 typedef RsAllocation (*AllocationCubeCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t);
49 typedef RsNativeWindow (*AllocationGetSurfaceFnPtr) (RsContext, RsAllocation);
50 typedef void (*AllocationSetSurfaceFnPtr) (RsContext, RsAllocation, RsNativeWindow);
58 typedef void (*AllocationCopyToBitmapFnPtr) (RsContext, RsAllocation, void*, size_t);
59 typedef void (*Allocation1DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, const void*, size_t)
    [all...]
ScriptIntrinsicBLAS.cpp 109 float alpha, RsAllocation A, RsAllocation B,
110 float beta, RsAllocation C, int incX, int incY, int KL, int KU) {
114 RsAllocation in_allocs[3] = {A, B, C};
123 double alpha, RsAllocation A, RsAllocation B,
124 double beta, RsAllocation C, int incX, int incY, int KL, int KU) {
128 RsAllocation in_allocs[3] = {A, B, C};
136 float alphaX, float alphaY, RsAllocation A, RsAllocation B
    [all...]
  /hardware/interfaces/renderscript/1.0/default/
Context.cpp 70 RsAllocation _baseAlloc = hidl_to_rs<RsAllocation>(baseAlloc);
71 RsAllocation _subAlloc = Device::getHal().AllocationAdapterCreate(mContext, _type, _baseAlloc);
76 RsAllocation _alloc = hidl_to_rs<RsAllocation>(alloc);
83 RsAllocation _allocation = hidl_to_rs<RsAllocation>(allocation);
93 RsAllocation _allocation = Device::getHal().AllocationCreateTyped(mContext, _type, _amips, _usage, _ptr);
102 RsAllocation _allocation = Device::getHal().AllocationCreateFromBitmap(mContext, _type, _amips, _bitmap.data(), _bitmap.size(), _usage);
111 RsAllocation _allocation = Device::getHal().AllocationCubeCreateFromBitmap(mContext, _type, _amips, _bitmap.dat (…)
    [all...]
  /frameworks/rs/support/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 443 (RsContext)con, (RsScriptKernelID)kernelID, (RsAllocation)returnValue,
605 RsAllocation in_allocs[3];
606 in_allocs[0] = (RsAllocation)A;
607 in_allocs[1] = (RsAllocation)B;
608 in_allocs[2] = (RsAllocation)C;
645 RsAllocation in_allocs[3];
646 in_allocs[0] = (RsAllocation)A;
647 in_allocs[1] = (RsAllocation)B;
648 in_allocs[2] = (RsAllocation)C;
    [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 464 (RsContext)con, (RsScriptKernelID)kernelID, (RsAllocation)returnValue,
641 RsAllocation in_allocs[3];
642 in_allocs[0] = (RsAllocation)A;
643 in_allocs[1] = (RsAllocation)B;
644 in_allocs[2] = (RsAllocation)C;
674 RsAllocation in_allocs[3]
    [all...]

Completed in 165 milliseconds

1 2