Searched refs:typeData (Results 1 – 10 of 10) sorted by relevance
/frameworks/rs/ |
D | rsApiType.cpp | 26 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()
|
D | rs.h | 48 void rsaTypeGetNativeData(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSize);
|
D | rsHidlAdaptation.h | 75 static void TypeGetNativeData(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSize);
|
D | rsApiStubs.cpp | 329 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()
|
D | rsApiStubs.h | 56 extern "C" void rsaTypeGetNativeData(RsContext con, RsType type, uintptr_t *typeData, uint32_t type…
|
/frameworks/rs/support/java/src/android/support/v8/renderscript/ |
D | RenderScript.java | 369 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/ |
D | RenderScript.java | 435 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/ |
D | rsDispatch.h | 25 typedef void (*TypeGetNativeDataFnPtr)(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSiz…
|
/frameworks/base/libs/androidfw/ |
D | ResourceTypes.cpp | 6875 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/ |
D | android_renderscript_RenderScript.cpp | 1204 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()
|