/frameworks/rs/cpp/ |
Element.cpp | 319 void * id = RS::dispatch->ElementCreate(rs->getContext(), dt, RS_KIND_USER, false, 1); 328 void *id = RS::dispatch->ElementCreate(rs->getContext(), dt, RS_KIND_USER, false, size); 386 void * id = RS::dispatch->ElementCreate(rs->getContext(), dt, dk, true, size);
|
rsDispatch.cpp | 83 dispatchTab.ElementCreate = (ElementCreateFnPtr)dlsym(handle, "rsElementCreate"); 259 if (dispatchTab.ElementCreate == nullptr) { 260 LOG_ERR("Couldn't initialize dispatchTab.ElementCreate");
|
rsDispatch.h | 195 ElementCreateFnPtr ElementCreate;
|
/hardware/interfaces/renderscript/1.0/default/ |
Device.cpp | 165 .ElementCreate = (ElementCreateFnPtr)dlsym(handle, "rsElementCreate"),
|
Context.cpp | 370 Return<Element> Context::elementCreate(DataType dt, DataKind dk, bool norm, uint32_t size) { 375 RsElement _element = Device::getHal().ElementCreate(mContext, _dt, _dk, _norm, _size); [all...] |
/frameworks/rs/ |
rsHidlAdaptation.h | 69 static RsElement ElementCreate(RsContext, RsDataType, RsDataKind, bool, uint32_t);
|
rs.spec | 145 ElementCreate {
|
rsHidlAdaptation.cpp | 133 mEntryFuncs.ElementCreate = ElementCreate; 509 RsElement RsHidlAdaptation::ElementCreate (RsContext context, 515 uint64_t element = GetIContextHandle(context)->elementCreate((DataType) dt, [all...] |
rsApiStubs.cpp | 287 return RS_DISPATCH(ctxWrapper, ElementCreate, mType, mKind, mNormalized, mVectorSize); [all...] |
/hardware/interfaces/renderscript/1.0/vts/functional/ |
VtsMiscellaneousTests.cpp | 33 * Calls: elementCreate 35 TEST_F(RenderscriptHidlTest, ElementCreate) { 36 Element element = context->elementCreate(DataType::FLOAT_32, DataKind::USER, false, 1); 44 * Calls: elementCreate, typeCreate, allocationCreateTyped, allocationGetType 48 Element element = context->elementCreate(DataType::FLOAT_32, DataKind::USER, false, 1); 71 * Calls: elementCreate, typeCreate, elementGetNativeMetadata, 76 Element element = context->elementCreate(DataType::FLOAT_32, DataKind::USER, false, 1); 107 * Calls: elementCreate, typeCreate, allocationCreateTyped, 112 Element element = context->elementCreate(DataType::FLOAT_32, DataKind::USER, false, 1); 144 * Calls: elementCreate, typeCreate, allocationCreateTyped, allocation2DWrite [all...] |
/frameworks/rs/support/jni/ |
android_renderscript_RenderScript.cpp | [all...] |