Home
last modified time | relevance | path

Searched refs:typeData (Results 1 – 10 of 10) sorted by relevance

/frameworks/rs/
DrsApiType.cpp26 extern "C" void rsaTypeGetNativeData(RsContext con, RsType type, uintptr_t *typeData, uint32_t type… in rsaTypeGetNativeData() argument
32 (*typeData++) = t->getDimX(); in rsaTypeGetNativeData()
33 (*typeData++) = t->getDimY(); in rsaTypeGetNativeData()
34 (*typeData++) = t->getDimZ(); in rsaTypeGetNativeData()
35 (*typeData++) = t->getDimLOD() ? 1 : 0; in rsaTypeGetNativeData()
36 (*typeData++) = t->getDimFaces() ? 1 : 0; in rsaTypeGetNativeData()
37 (*typeData++) = (uintptr_t)t->getElement(); in rsaTypeGetNativeData()
Drs.h48 void rsaTypeGetNativeData(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSize);
DrsHidlAdaptation.h75 static void TypeGetNativeData(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSize);
DrsApiStubs.cpp329 extern "C" void rsaTypeGetNativeData(RsContext ctxWrapper, RsType type, uintptr_t *typeData, uint32… in rsaTypeGetNativeData() argument
331 RS_DISPATCH(ctxWrapper, TypeGetNativeData, type, typeData, typeDataSize); in rsaTypeGetNativeData()
DrsApiStubs.h56 extern "C" void rsaTypeGetNativeData(RsContext con, RsType type, uintptr_t *typeData, uint32_t type…
/frameworks/rs/support/java/src/android/support/v8/renderscript/
DRenderScript.java369 native void rsnTypeGetNativeData(long con, long id, long[] typeData); in rsnTypeGetNativeData() argument
370 synchronized void nTypeGetNativeData(long id, long[] typeData) { in nTypeGetNativeData() argument
372 rsnTypeGetNativeData(mContext, id, typeData); in nTypeGetNativeData()
/frameworks/base/rs/java/android/renderscript/
DRenderScript.java435 native void rsnTypeGetNativeData(long con, long id, long[] typeData); in rsnTypeGetNativeData() argument
436 synchronized void nTypeGetNativeData(long id, long[] typeData) { in nTypeGetNativeData() argument
438 rsnTypeGetNativeData(mContext, id, typeData); in nTypeGetNativeData()
/frameworks/rs/cpp/
DrsDispatch.h25 typedef void (*TypeGetNativeDataFnPtr)(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSiz…
/frameworks/base/libs/androidfw/
DResourceTypes.cpp6875 uint16_t* typeData = reinterpret_cast<uint16_t*>(data); in createIdmap() local
6876 *typeData++ = htods(pg->id); in createIdmap()
6877 *typeData++ = htods(mapSize); in createIdmap()
6881 *typeData++ = htods(targetTypeId + 1); in createIdmap()
6882 *typeData++ = htods(typeMap.overlayTypeId); in createIdmap()
6883 *typeData++ = htods(typeMap.entryMap.size()); in createIdmap()
6884 *typeData++ = htods(typeMap.entryOffset); in createIdmap()
6887 uint32_t* entries = reinterpret_cast<uint32_t*>(typeData); in createIdmap()
6891 typeData += entryCount * 2; in createIdmap()
/frameworks/base/rs/jni/
Dandroid_renderscript_RenderScript.cpp1204 uintptr_t typeData[6]; in nTypeGetNativeData() local
1205 rsaTypeGetNativeData((RsContext)con, (RsType)id, typeData, 6); in nTypeGetNativeData()
1208 const jlong data = (jlong)(uintptr_t)typeData[i]; in nTypeGetNativeData()