Searched refs:vtype (Results 1 – 8 of 8) sorted by relevance
/frameworks/rs/ |
D | rs_compat.spec | 3 param RsType vtype
|
D | rsAllocation.cpp | 739 RsAllocation rsi_AllocationCreateTyped(Context *rsc, RsType vtype, in rsi_AllocationCreateTyped() argument 742 …Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mipmaps… in rsi_AllocationCreateTyped() 750 RsAllocation rsi_AllocationCreateStrided(Context *rsc, RsType vtype, in rsi_AllocationCreateStrided() argument 754 …Allocation * alloc = Allocation::createAllocationStrided(rsc, static_cast<Type *>(vtype), usages, … in rsi_AllocationCreateStrided() 763 RsAllocation rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype, in rsi_AllocationCreateFromBitmap() argument 766 Type *t = static_cast<Type *>(vtype); in rsi_AllocationCreateFromBitmap() 768 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmaps, usages, 0); in rsi_AllocationCreateFromBitmap() 785 RsAllocation rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype, in rsi_AllocationCubeCreateFromBitmap() argument 788 Type *t = static_cast<Type *>(vtype); in rsi_AllocationCubeCreateFromBitmap() 793 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmaps, usages, 0); in rsi_AllocationCubeCreateFromBitmap()
|
D | rs.spec | 58 param RsType vtype 67 param RsType vtype 76 param RsType vtype 109 param RsType vtype
|
D | rsApiStubs.cpp | 332 extern "C" RsAllocation rsAllocationCreateTyped (RsContext ctxWrapper, RsType vtype, RsAllocationMi… in rsAllocationCreateTyped() argument 335 return RS_DISPATCH(ctxWrapper, AllocationCreateTyped, vtype, mipmaps, usages, ptr); in rsAllocationCreateTyped() 338 extern "C" RsAllocation rsAllocationCreateFromBitmap (RsContext ctxWrapper, RsType vtype, RsAllocat… in rsAllocationCreateFromBitmap() argument 341 …return RS_DISPATCH(ctxWrapper, AllocationCreateFromBitmap, vtype, mipmaps, data, data_length, usag… in rsAllocationCreateFromBitmap() 344 extern "C" RsAllocation rsAllocationCubeCreateFromBitmap (RsContext ctxWrapper, RsType vtype, RsAll… in rsAllocationCubeCreateFromBitmap() argument 347 …return RS_DISPATCH(ctxWrapper, AllocationCubeCreateFromBitmap, vtype, mipmaps, data, data_length, … in rsAllocationCubeCreateFromBitmap() 350 extern "C" RsAllocation rsAllocationAdapterCreate (RsContext ctxWrapper, RsType vtype, RsAllocation… in rsAllocationAdapterCreate() argument 352 return RS_DISPATCH(ctxWrapper, AllocationAdapterCreate, vtype, baseAlloc); in rsAllocationAdapterCreate()
|
D | rsApiStubs.h | 59 extern "C" RsAllocation rsAllocationCreateTyped (RsContext rsc, RsType vtype, RsAllocationMipmapCon… 60 extern "C" RsAllocation rsAllocationCreateFromBitmap (RsContext rsc, RsType vtype, RsAllocationMipm… 61 extern "C" RsAllocation rsAllocationCubeCreateFromBitmap (RsContext rsc, RsType vtype, RsAllocation… 62 extern "C" RsAllocation rsAllocationAdapterCreate (RsContext rsc, RsType vtype, RsAllocation baseAl…
|
D | rsHidlAdaptation.h | 104 … static RsAllocation AllocationAdapterCreate(RsContext rsc, RsType vtype, RsAllocation baseAlloc);
|
D | rsHidlAdaptation.cpp | 1078 RsAllocation RsHidlAdaptation::AllocationAdapterCreate (RsContext context, RsType vtype, RsAllocati… in AllocationAdapterCreate() argument 1080 uint64_t _vtype = (uint64_t)(uintptr_t)vtype; in AllocationAdapterCreate()
|
/frameworks/rs/cpp/ |
D | rsDispatch.h | 105 typedef RsAllocation (*AllocationAdapterCreateFnPtr) (RsContext rsc, RsType vtype, RsAllocation bas…
|