Home
last modified time | relevance | path

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

/frameworks/rs/
DrsApiType.cpp30 extern "C" void rsaTypeGetNativeData(RsContext con, RsType type, uintptr_t *typeData, uint32_t type… in rsaTypeGetNativeData() argument
36 (*typeData++) = t->getDimX(); in rsaTypeGetNativeData()
37 (*typeData++) = t->getDimY(); in rsaTypeGetNativeData()
38 (*typeData++) = t->getDimZ(); in rsaTypeGetNativeData()
39 (*typeData++) = t->getDimLOD() ? 1 : 0; in rsaTypeGetNativeData()
40 (*typeData++) = t->getDimFaces() ? 1 : 0; in rsaTypeGetNativeData()
41 (*typeData++) = (uintptr_t)t->getElement(); in rsaTypeGetNativeData()
Drs.h48 void rsaTypeGetNativeData(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSize);
/frameworks/rs/cpp/
DrsDispatch.h25 typedef void (*TypeGetNativeDataFnPtr)(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSiz…
/frameworks/support/v8/renderscript/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/base/libs/androidfw/
DResourceTypes.cpp6709 uint16_t* typeData = reinterpret_cast<uint16_t*>(data); in createIdmap() local
6710 *typeData++ = htods(pg->id); in createIdmap()
6711 *typeData++ = htods(mapSize); in createIdmap()
6715 *typeData++ = htods(targetTypeId + 1); in createIdmap()
6716 *typeData++ = htods(typeMap.overlayTypeId); in createIdmap()
6717 *typeData++ = htods(typeMap.entryMap.size()); in createIdmap()
6718 *typeData++ = htods(typeMap.entryOffset); in createIdmap()
6721 uint32_t* entries = reinterpret_cast<uint32_t*>(typeData); in createIdmap()
6725 typeData += entryCount * 2; in createIdmap()
/frameworks/base/rs/jni/
Dandroid_renderscript_RenderScript.cpp1193 uintptr_t typeData[6]; in nTypeGetNativeData() local
1194 rsaTypeGetNativeData((RsContext)con, (RsType)id, typeData, 6); in nTypeGetNativeData()
1197 const jlong data = (jlong)(uintptr_t)typeData[i]; in nTypeGetNativeData()