Searched defs:vtype (Results 1 - 3 of 3) sorted by relevance

/frameworks/rs/
H A DrsAllocation.cpp739 RsAllocation rsi_AllocationCreateTyped(Context *rsc, RsType vtype, argument
742 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mipmaps, (void*)ptr);
750 RsAllocation rsi_AllocationCreateStrided(Context *rsc, RsType vtype, argument
754 Allocation * alloc = Allocation::createAllocationStrided(rsc, static_cast<Type *>(vtype), usages, mipmaps,
763 RsAllocation rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype, argument
766 Type *t = static_cast<Type *>(vtype);
768 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmaps, usages, 0);
785 RsAllocation rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype, argument
788 Type *t = static_cast<Type *>(vtype);
793 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmap
[all...]
H A DrsHidlAdaptation.cpp1078 RsAllocation RsHidlAdaptation::AllocationAdapterCreate (RsContext context, RsType vtype, RsAllocation baseAlloc) argument
1080 uint64_t _vtype = (uint64_t)(uintptr_t)vtype;
H A DrsApiStubs.cpp337 extern "C" RsAllocation rsAllocationCreateTyped (RsContext ctxWrapper, RsType vtype, RsAllocationMipmapControl mipmaps, argument
340 return RS_DISPATCH(ctxWrapper, AllocationCreateTyped, vtype, mipmaps, usages, ptr);
343 extern "C" RsAllocation rsAllocationCreateFromBitmap (RsContext ctxWrapper, RsType vtype, RsAllocationMipmapControl mipmaps, argument
346 return RS_DISPATCH(ctxWrapper, AllocationCreateFromBitmap, vtype, mipmaps, data, data_length, usages);
349 extern "C" RsAllocation rsAllocationCubeCreateFromBitmap (RsContext ctxWrapper, RsType vtype, RsAllocationMipmapControl mipmaps, argument
352 return RS_DISPATCH(ctxWrapper, AllocationCubeCreateFromBitmap, vtype, mipmaps, data, data_length, usages);
355 extern "C" RsAllocation rsAllocationAdapterCreate (RsContext ctxWrapper, RsType vtype, RsAllocation baseAlloc) argument
357 return RS_DISPATCH(ctxWrapper, AllocationAdapterCreate, vtype, baseAlloc);

Completed in 65 milliseconds