Home
last modified time | relevance | path

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

/frameworks/rs/
DrsType.cpp340 extern "C" void rsaTypeGetNativeData(RsContext con, RsType type, uintptr_t *typeData, uint32_t type… in rsaTypeGetNativeData() argument
346 (*typeData++) = t->getDimX(); in rsaTypeGetNativeData()
347 (*typeData++) = t->getDimY(); in rsaTypeGetNativeData()
348 (*typeData++) = t->getDimZ(); in rsaTypeGetNativeData()
349 (*typeData++) = t->getDimLOD() ? 1 : 0; in rsaTypeGetNativeData()
350 (*typeData++) = t->getDimFaces() ? 1 : 0; in rsaTypeGetNativeData()
351 (*typeData++) = (uintptr_t)t->getElement(); in rsaTypeGetNativeData()
Drs.h48 void rsaTypeGetNativeData(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSize);
/frameworks/rs/cpp/
DrsDispatch.h23 typedef void (*TypeGetNativeDataFnPtr)(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSiz…
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
DRenderScript.java300 native void rsnTypeGetNativeData(int con, int id, int[] typeData); in rsnTypeGetNativeData() argument
301 synchronized void nTypeGetNativeData(int id, int[] typeData) { in nTypeGetNativeData() argument
303 rsnTypeGetNativeData(mContext, id, typeData); in nTypeGetNativeData()
/frameworks/base/rs/java/android/renderscript/
DRenderScript.java354 native void rsnTypeGetNativeData(long con, long id, long[] typeData); in rsnTypeGetNativeData() argument
355 synchronized void nTypeGetNativeData(long id, long[] typeData) { in nTypeGetNativeData() argument
357 rsnTypeGetNativeData(mContext, id, typeData); in nTypeGetNativeData()
/frameworks/base/libs/androidfw/
DResourceTypes.cpp6165 uint16_t* typeData = reinterpret_cast<uint16_t*>(data); in createIdmap() local
6166 *typeData++ = htods(pg->id); in createIdmap()
6167 *typeData++ = htods(mapSize); in createIdmap()
6171 *typeData++ = htods(targetTypeId + 1); in createIdmap()
6172 *typeData++ = htods(typeMap.overlayTypeId); in createIdmap()
6173 *typeData++ = htods(typeMap.entryMap.size()); in createIdmap()
6174 *typeData++ = htods(typeMap.entryOffset); in createIdmap()
6177 uint32_t* entries = reinterpret_cast<uint32_t*>(typeData); in createIdmap()
6181 typeData += entryCount * 2; in createIdmap()
/frameworks/base/rs/jni/
Dandroid_renderscript_RenderScript.cpp520 uintptr_t typeData[6]; in nTypeGetNativeData() local
521 rsaTypeGetNativeData((RsContext)con, (RsType)id, typeData, 6); in nTypeGetNativeData()
524 const jlong data = (jlong)(uintptr_t)typeData[i]; in nTypeGetNativeData()