Lines Matching refs:con
343 nContextFinish(JNIEnv *_env, jobject _this, jlong con) in nContextFinish() argument
346 ALOGD("nContextFinish, con(%p)", (RsContext)con); in nContextFinish()
348 rsContextFinish((RsContext)con); in nContextFinish()
352 nClosureCreate(JNIEnv *_env, jobject _this, jlong con, jlong kernelID, in nClosureCreate() argument
464 (RsContext)con, (RsScriptKernelID)kernelID, (RsAllocation)returnValue, in nClosureCreate()
482 nInvokeClosureCreate(JNIEnv *_env, jobject _this, jlong con, jlong invokeID, in nInvokeClosureCreate() argument
540 (RsContext)con, (RsScriptInvokeID)invokeID, jParams, jParamLength, in nInvokeClosureCreate()
555 nClosureSetArg(JNIEnv *_env, jobject _this, jlong con, jlong closureID, in nClosureSetArg() argument
558 rsClosureSetArg((RsContext)con, (RsClosure)closureID, (uint32_t)index, in nClosureSetArg()
563 nClosureSetGlobal(JNIEnv *_env, jobject _this, jlong con, jlong closureID, in nClosureSetGlobal() argument
566 rsClosureSetGlobal((RsContext)con, (RsClosure)closureID, in nClosureSetGlobal()
571 nScriptGroup2Create(JNIEnv *_env, jobject _this, jlong con, jstring name, in nScriptGroup2Create() argument
602 (RsContext)con, nameUTF.c_str(), nameUTF.length(), in nScriptGroup2Create()
614 nScriptGroup2Execute(JNIEnv *_env, jobject _this, jlong con, jlong groupID) { in nScriptGroup2Execute() argument
615 rsScriptGroupExecute((RsContext)con, (RsScriptGroup2)groupID); in nScriptGroup2Execute()
619 nScriptIntrinsicBLAS_Single(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint Trans… in nScriptIntrinsicBLAS_Single() argument
646 rsScriptForEachMulti((RsContext)con, (RsScript)id, 0, in nScriptIntrinsicBLAS_Single()
652 nScriptIntrinsicBLAS_Double(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint Trans… in nScriptIntrinsicBLAS_Double() argument
679 rsScriptForEachMulti((RsContext)con, (RsScript)id, 0, in nScriptIntrinsicBLAS_Double()
685 nScriptIntrinsicBLAS_Complex(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint Tran… in nScriptIntrinsicBLAS_Complex() argument
714 rsScriptForEachMulti((RsContext)con, (RsScript)id, 0, in nScriptIntrinsicBLAS_Complex()
720 nScriptIntrinsicBLAS_Z(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint TransA, in nScriptIntrinsicBLAS_Z() argument
749 rsScriptForEachMulti((RsContext)con, (RsScript)id, 0, in nScriptIntrinsicBLAS_Z()
756 nScriptIntrinsicBLAS_BNNM(JNIEnv *_env, jobject _this, jlong con, jlong id, jint M, jint N, jint K, in nScriptIntrinsicBLAS_BNNM() argument
775 rsScriptForEachMulti((RsContext)con, (RsScript)id, 0, in nScriptIntrinsicBLAS_BNNM()
782 nAssignName(JNIEnv *_env, jobject _this, jlong con, jlong obj, jbyteArray str) in nAssignName() argument
785 ALOGD("nAssignName, con(%p), obj(%p)", (RsContext)con, (void *)obj); in nAssignName()
794 rsAssignName((RsContext)con, (void *)obj, (const char *)cptr, len); in nAssignName()
799 nGetName(JNIEnv *_env, jobject _this, jlong con, jlong obj) in nGetName() argument
802 ALOGD("nGetName, con(%p), obj(%p)", (RsContext)con, (void *)obj); in nGetName()
805 rsaGetName((RsContext)con, (void *)obj, &name); in nGetName()
813 nObjDestroy(JNIEnv *_env, jobject _this, jlong con, jlong obj) in nObjDestroy() argument
816 ALOGD("nObjDestroy, con(%p) obj(%p)", (RsContext)con, (void *)obj); in nObjDestroy()
818 rsObjDestroy((RsContext)con, (void *)obj); in nObjDestroy()
886 nContextSetPriority(JNIEnv *_env, jobject _this, jlong con, jint p) in nContextSetPriority() argument
889 ALOGD("ContextSetPriority, con(%p), priority(%i)", (RsContext)con, p); in nContextSetPriority()
891 rsContextSetPriority((RsContext)con, p); in nContextSetPriority()
895 nContextSetCacheDir(JNIEnv *_env, jobject _this, jlong con, jstring cacheDir) in nContextSetCacheDir() argument
900 ALOGD("ContextSetCacheDir, con(%p), cacheDir(%s)", (RsContext)con, cacheDirUTF.c_str()); in nContextSetCacheDir()
902 rsContextSetCacheDir((RsContext)con, cacheDirUTF.c_str(), cacheDirUTF.length()); in nContextSetCacheDir()
908 nContextSetSurface(JNIEnv *_env, jobject _this, jlong con, jint width, jint height, jobject wnd) in nContextSetSurface() argument
911 ALOGD("nContextSetSurface, con(%p), width(%i), height(%i), surface(%p)", (RsContext)con, in nContextSetSurface()
922 rsContextSetSurface((RsContext)con, width, height, window); in nContextSetSurface()
926 nContextDestroy(JNIEnv *_env, jobject _this, jlong con) in nContextDestroy() argument
929 ALOGD("nContextDestroy, con(%p)", (RsContext)con); in nContextDestroy()
931 rsContextDestroy((RsContext)con); in nContextDestroy()
935 nContextDump(JNIEnv *_env, jobject _this, jlong con, jint bits) in nContextDump() argument
938 ALOGD("nContextDump, con(%p) bits(%i)", (RsContext)con, bits); in nContextDump()
940 rsContextDump((RsContext)con, bits); in nContextDump()
944 nContextPause(JNIEnv *_env, jobject _this, jlong con) in nContextPause() argument
947 ALOGD("nContextPause, con(%p)", (RsContext)con); in nContextPause()
949 rsContextPause((RsContext)con); in nContextPause()
953 nContextResume(JNIEnv *_env, jobject _this, jlong con) in nContextResume() argument
956 ALOGD("nContextResume, con(%p)", (RsContext)con); in nContextResume()
958 rsContextResume((RsContext)con); in nContextResume()
963 nContextGetErrorMessage(JNIEnv *_env, jobject _this, jlong con) in nContextGetErrorMessage() argument
966 ALOGD("nContextGetErrorMessage, con(%p)", (RsContext)con); in nContextGetErrorMessage()
972 int id = rsContextGetMessage((RsContext)con, in nContextGetErrorMessage()
983 nContextGetUserMessage(JNIEnv *_env, jobject _this, jlong con, jintArray data) in nContextGetUserMessage() argument
987 ALOGD("nContextGetMessage, con(%p), len(%i)", (RsContext)con, len); in nContextGetUserMessage()
996 int id = rsContextGetMessage((RsContext)con, in nContextGetUserMessage()
1008 nContextPeekMessage(JNIEnv *_env, jobject _this, jlong con, jintArray auxData) in nContextPeekMessage() argument
1011 ALOGD("nContextPeekMessage, con(%p)", (RsContext)con); in nContextPeekMessage()
1020 int id = rsContextPeekMessage((RsContext)con, &receiveLen, sizeof(receiveLen), in nContextPeekMessage()
1028 static void nContextInitToClient(JNIEnv *_env, jobject _this, jlong con) in nContextInitToClient() argument
1031 ALOGD("nContextInitToClient, con(%p)", (RsContext)con); in nContextInitToClient()
1033 rsContextInitToClient((RsContext)con); in nContextInitToClient()
1036 static void nContextDeinitToClient(JNIEnv *_env, jobject _this, jlong con) in nContextDeinitToClient() argument
1039 ALOGD("nContextDeinitToClient, con(%p)", (RsContext)con); in nContextDeinitToClient()
1041 rsContextDeinitToClient((RsContext)con); in nContextDeinitToClient()
1045 nContextSendMessage(JNIEnv *_env, jobject _this, jlong con, jint id, jintArray data) in nContextSendMessage() argument
1058 ALOGD("nContextSendMessage, con(%p), id(%i), len(%i)", (RsContext)con, id, len); in nContextSendMessage()
1060 rsContextSendMessage((RsContext)con, id, (const uint8_t *)ptr, len * sizeof(int)); in nContextSendMessage()
1069 nElementCreate(JNIEnv *_env, jobject _this, jlong con, jlong type, jint kind, jboolean norm, in nElementCreate() argument
1073 … ALOGD("nElementCreate, con(%p), type(%" PRId64 "), kind(%i), norm(%i), size(%i)", (RsContext)con, in nElementCreate()
1076 return (jlong)(uintptr_t)rsElementCreate((RsContext)con, (RsDataType)type, (RsDataKind)kind, in nElementCreate()
1081 nElementCreate2(JNIEnv *_env, jobject _this, jlong con, in nElementCreate2() argument
1086 ALOGD("nElementCreate2, con(%p)", (RsContext)con); in nElementCreate2()
1113 jlong id = (jlong)(uintptr_t)rsElementCreate2((RsContext)con, in nElementCreate2()
1127 nElementGetNativeData(JNIEnv *_env, jobject _this, jlong con, jlong id, jintArray _elementData) in nElementGetNativeData() argument
1131 ALOGD("nElementGetNativeData, con(%p)", (RsContext)con); in nElementGetNativeData()
1138 rsaElementGetNativeData((RsContext)con, (RsElement)id, elementData, dataSize); in nElementGetNativeData()
1148 nElementGetSubElements(JNIEnv *_env, jobject _this, jlong con, jlong id, in nElementGetSubElements() argument
1155 ALOGD("nElementGetSubElements, con(%p)", (RsContext)con); in nElementGetSubElements()
1162 rsaElementGetSubElements((RsContext)con, (RsElement)id, ids, names, arraySizes, in nElementGetSubElements()
1181 nTypeCreate(JNIEnv *_env, jobject _this, jlong con, jlong eid, in nTypeCreate() argument
1186 (RsContext)con, (void*)eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate()
1189 return (jlong)(uintptr_t)rsTypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, dimz, mips, in nTypeCreate()
1194 nTypeGetNativeData(JNIEnv *_env, jobject _this, jlong con, jlong id, jlongArray _typeData) in nTypeGetNativeData() argument
1202 ALOGD("nTypeGetNativeData, con(%p)", (RsContext)con); in nTypeGetNativeData()
1206 rsaTypeGetNativeData((RsContext)con, (RsType)id, typeData, 6); in nTypeGetNativeData()
1217 nAllocationCreateTyped(JNIEnv *_env, jobject _this, jlong con, jlong type, jint mips, jint usage, in nAllocationCreateTyped() argument
1222 (RsContext)con, (RsElement)type, mips, usage, (void *)pointer); in nAllocationCreateTyped()
1224 return (jlong)(uintptr_t) rsAllocationCreateTyped((RsContext)con, (RsType)type, in nAllocationCreateTyped()
1230 nAllocationSyncAll(JNIEnv *_env, jobject _this, jlong con, jlong a, jint bits) in nAllocationSyncAll() argument
1233 ALOGD("nAllocationSyncAll, con(%p), a(%p), bits(0x%08x)", (RsContext)con, (RsAllocation)a, in nAllocationSyncAll()
1236 rsAllocationSyncAll((RsContext)con, (RsAllocation)a, (RsAllocationUsageType)bits); in nAllocationSyncAll()
1240 nAllocationSetupBufferQueue(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jint numAlloc) in nAllocationSetupBufferQueue() argument
1243 ALOGD("nAllocationSetupBufferQueue, con(%p), alloc(%p), numAlloc(%d)", (RsContext)con, in nAllocationSetupBufferQueue()
1246 rsAllocationSetupBufferQueue((RsContext)con, (RsAllocation)alloc, (uint32_t)numAlloc); in nAllocationSetupBufferQueue()
1250 nAllocationShareBufferQueue(JNIEnv *_env, jobject _this, jlong con, jlong alloc1, jlong alloc2) in nAllocationShareBufferQueue() argument
1253 ALOGD("nAllocationShareBufferQueue, con(%p), alloc1(%p), alloc2(%p)", (RsContext)con, in nAllocationShareBufferQueue()
1257 rsAllocationShareBufferQueue((RsContext)con, (RsAllocation)alloc1, (RsAllocation)alloc2); in nAllocationShareBufferQueue()
1261 nAllocationGetSurface(JNIEnv *_env, jobject _this, jlong con, jlong a) in nAllocationGetSurface() argument
1264 ALOGD("nAllocationGetSurface, con(%p), a(%p)", (RsContext)con, (RsAllocation)a); in nAllocationGetSurface()
1267 ANativeWindow *anw = (ANativeWindow *)rsAllocationGetSurface((RsContext)con, (RsAllocation)a); in nAllocationGetSurface()
1277 nAllocationSetSurface(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jobject sur) in nAllocationSetSurface() argument
1280 ALOGD("nAllocationSetSurface, con(%p), alloc(%p), surface(%p)", (RsContext)con, in nAllocationSetSurface()
1291 rsAllocationSetSurface((RsContext)con, (RsAllocation)alloc, anw); in nAllocationSetSurface()
1295 nAllocationIoSend(JNIEnv *_env, jobject _this, jlong con, jlong alloc) in nAllocationIoSend() argument
1298 ALOGD("nAllocationIoSend, con(%p), alloc(%p)", (RsContext)con, (RsAllocation)alloc); in nAllocationIoSend()
1300 rsAllocationIoSend((RsContext)con, (RsAllocation)alloc); in nAllocationIoSend()
1304 nAllocationIoReceive(JNIEnv *_env, jobject _this, jlong con, jlong alloc) in nAllocationIoReceive() argument
1307 ALOGD("nAllocationIoReceive, con(%p), alloc(%p)", (RsContext)con, (RsAllocation)alloc); in nAllocationIoReceive()
1309 return (jlong) rsAllocationIoReceive((RsContext)con, (RsAllocation)alloc); in nAllocationIoReceive()
1313 nAllocationGenerateMipmaps(JNIEnv *_env, jobject _this, jlong con, jlong alloc) in nAllocationGenerateMipmaps() argument
1316 ALOGD("nAllocationGenerateMipmaps, con(%p), a(%p)", (RsContext)con, (RsAllocation)alloc); in nAllocationGenerateMipmaps()
1318 rsAllocationGenerateMipmaps((RsContext)con, (RsAllocation)alloc); in nAllocationGenerateMipmaps()
1327 nAllocationCreateFromBitmap(JNIEnv *_env, jobject _this, jlong con, jlong type, jint mip, in nAllocationCreateFromBitmap() argument
1332 jlong id = (jlong)(uintptr_t)rsAllocationCreateFromBitmap((RsContext)con, in nAllocationCreateFromBitmap()
1339 nAllocationCreateBitmapBackedAllocation(JNIEnv *_env, jobject _this, jlong con, jlong type, in nAllocationCreateBitmapBackedAllocation() argument
1344 jlong id = (jlong)(uintptr_t)rsAllocationCreateTyped((RsContext)con, in nAllocationCreateBitmapBackedAllocation()
1351 nAllocationCubeCreateFromBitmap(JNIEnv *_env, jobject _this, jlong con, jlong type, jint mip, in nAllocationCubeCreateFromBitmap() argument
1356 jlong id = (jlong)(uintptr_t)rsAllocationCubeCreateFromBitmap((RsContext)con, in nAllocationCubeCreateFromBitmap()
1363 nAllocationCopyFromBitmap(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jobject jbitmap) in nAllocationCopyFromBitmap() argument
1370 rsAllocation2DData((RsContext)con, (RsAllocation)alloc, 0, 0, in nAllocationCopyFromBitmap()
1376 nAllocationCopyToBitmap(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jobject jbitmap) in nAllocationCopyToBitmap() argument
1380 rsAllocationCopyToBitmap((RsContext)con, (RsAllocation)alloc, ptr, computeByteSize(bitmap)); in nAllocationCopyToBitmap()
1386 nAllocationData1D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint offset, jint lod, in nAllocationData1D() argument
1393 "dataType(%i)", (RsContext)con, (RsAllocation)alloc, offset, count, sizeBytes, in nAllocationData1D()
1397 (RsContext)con, alloc, offset, lod, count, ptr, sizeBytes); in nAllocationData1D()
1401 nAllocationElementData(JNIEnv *_env, jobject _this, jlong con, jlong alloc, in nAllocationElementData() argument
1408 "sizeBytes(%i)", (RsContext)con, (RsAllocation)alloc, xoff, yoff, zoff, compIdx, len, in nAllocationElementData()
1416 rsAllocationElementData((RsContext)con, (RsAllocation)alloc, in nAllocationElementData()
1425 nAllocationData2D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint xoff, jint yoff, jint … in nAllocationData2D() argument
1433 "type(%i)", (RsContext)con, alloc, xoff, yoff, w, h, sizeBytes, dataType); in nAllocationData2D()
1437 (RsContext)con, alloc, xoff, yoff, lod, face, w, h, ptr, sizeBytes, 0); in nAllocationData2D()
1443 nAllocationData2D_alloc(JNIEnv *_env, jobject _this, jlong con, in nAllocationData2D_alloc() argument
1454 (RsContext)con, (RsAllocation)dstAlloc, dstXoff, dstYoff, dstMip, dstFace, in nAllocationData2D_alloc()
1458 rsAllocationCopy2DRange((RsContext)con, in nAllocationData2D_alloc()
1470 nAllocationData3D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint xoff, jint yoff, jint … in nAllocationData3D() argument
1477 " h(%i), d(%i), sizeBytes(%i)", (RsContext)con, (RsAllocation)alloc, xoff, yoff, zoff, in nAllocationData3D()
1482 (RsContext)con, alloc, xoff, yoff, zoff, lod, w, h, d, ptr, sizeBytes, 0); in nAllocationData3D()
1488 nAllocationData3D_alloc(JNIEnv *_env, jobject _this, jlong con, in nAllocationData3D_alloc() argument
1499 (RsContext)con, (RsAllocation)dstAlloc, dstXoff, dstYoff, dstMip, in nAllocationData3D_alloc()
1503 rsAllocationCopy3DRange((RsContext)con, in nAllocationData3D_alloc()
1514 nAllocationRead(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jobject data, jint dataType, in nAllocationRead() argument
1519 ALOGD("nAllocationRead, con(%p), alloc(%p)", (RsContext)con, (RsAllocation)alloc); in nAllocationRead()
1523 (RsContext)con, alloc, ptr, len * typeBytes); in nAllocationRead()
1528 nAllocationRead1D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint offset, jint lod, in nAllocationRead1D() argument
1535 "dataType(%i)", (RsContext)con, alloc, offset, count, sizeBytes, dataType); in nAllocationRead1D()
1538 (RsContext)con, alloc, offset, lod, count, ptr, sizeBytes); in nAllocationRead1D()
1543 nAllocationElementRead(JNIEnv *_env, jobject _this, jlong con, jlong alloc, in nAllocationElementRead() argument
1550 "sizeBytes(%i)", (RsContext)con, (RsAllocation)alloc, xoff, yoff, zoff, compIdx, len, in nAllocationElementRead()
1558 rsAllocationElementRead((RsContext)con, (RsAllocation)alloc, in nAllocationElementRead()
1566 nAllocationRead2D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint xoff, jint yoff, jint … in nAllocationRead2D() argument
1574 "type(%i)", (RsContext)con, alloc, xoff, yoff, w, h, sizeBytes, dataType); in nAllocationRead2D()
1578 (RsContext)con, alloc, xoff, yoff, lod, face, w, h, ptr, sizeBytes, 0); in nAllocationRead2D()
1583 nAllocationRead3D(JNIEnv *_env, jobject _this, jlong con, jlong _alloc, jint xoff, jint yoff, jint … in nAllocationRead3D() argument
1590 " h(%i), d(%i), sizeBytes(%i)", (RsContext)con, (RsAllocation)alloc, xoff, yoff, zoff, in nAllocationRead3D()
1595 (RsContext)con, alloc, xoff, yoff, zoff, lod, w, h, d, ptr, sizeBytes, 0); in nAllocationRead3D()
1599 nAllocationGetType(JNIEnv *_env, jobject _this, jlong con, jlong a) in nAllocationGetType() argument
1602 ALOGD("nAllocationGetType, con(%p), a(%p)", (RsContext)con, (RsAllocation)a); in nAllocationGetType()
1604 return (jlong)(uintptr_t) rsaAllocationGetType((RsContext)con, (RsAllocation)a); in nAllocationGetType()
1608 nAllocationResize1D(JNIEnv *_env, jobject _this, jlong con, jlong alloc, jint dimX) in nAllocationResize1D() argument
1611 ALOGD("nAllocationResize1D, con(%p), alloc(%p), sizeX(%i)", (RsContext)con, in nAllocationResize1D()
1614 rsAllocationResize1D((RsContext)con, (RsAllocation)alloc, dimX); in nAllocationResize1D()
1619 nAllocationAdapterCreate(JNIEnv *_env, jobject _this, jlong con, jlong basealloc, jlong type) in nAllocationAdapterCreate() argument
1623 (RsContext)con, (RsAllocation)basealloc, (RsElement)type); in nAllocationAdapterCreate()
1625 return (jlong)(uintptr_t) rsAllocationAdapterCreate((RsContext)con, (RsType)type, in nAllocationAdapterCreate()
1631 nAllocationAdapterOffset(JNIEnv *_env, jobject _this, jlong con, jlong alloc, in nAllocationAdapterOffset() argument
1641 (RsContext)con, (RsAllocation)alloc, x, y, z, face, lod, a1, a2, a3, a4); in nAllocationAdapterOffset()
1643 rsAllocationAdapterOffset((RsContext)con, (RsAllocation)alloc, in nAllocationAdapterOffset()
1651 nFileA3DCreateFromAssetStream(JNIEnv *_env, jobject _this, jlong con, jlong native_asset) in nFileA3DCreateFromAssetStream() argument
1656 …jlong id = (jlong)(uintptr_t)rsaFileA3DCreateFromMemory((RsContext)con, asset->getBuffer(false), a… in nFileA3DCreateFromAssetStream()
1661 nFileA3DCreateFromAsset(JNIEnv *_env, jobject _this, jlong con, jobject _assetMgr, jstring _path) in nFileA3DCreateFromAsset() argument
1678 jlong id = (jlong)(uintptr_t)rsaFileA3DCreateFromAsset((RsContext)con, asset.release()); in nFileA3DCreateFromAsset()
1683 nFileA3DCreateFromFile(JNIEnv *_env, jobject _this, jlong con, jstring fileName) in nFileA3DCreateFromFile() argument
1686 jlong id = (jlong)(uintptr_t)rsaFileA3DCreateFromFile((RsContext)con, fileNameUTF.c_str()); in nFileA3DCreateFromFile()
1692 nFileA3DGetNumIndexEntries(JNIEnv *_env, jobject _this, jlong con, jlong fileA3D) in nFileA3DGetNumIndexEntries() argument
1695 rsaFileA3DGetNumIndexEntries((RsContext)con, &numEntries, (RsFile)fileA3D); in nFileA3DGetNumIndexEntries()
1700 nFileA3DGetIndexEntries(JNIEnv *_env, jobject _this, jlong con, jlong fileA3D, jint numEntries, jin… in nFileA3DGetIndexEntries() argument
1705 rsaFileA3DGetIndexEntries((RsContext)con, fileEntries, (uint32_t)numEntries, (RsFile)fileA3D); in nFileA3DGetIndexEntries()
1716 nFileA3DGetEntryByIndex(JNIEnv *_env, jobject _this, jlong con, jlong fileA3D, jint index) in nFileA3DGetEntryByIndex() argument
1719 …jlong id = (jlong)(uintptr_t)rsaFileA3DGetEntryByIndex((RsContext)con, (uint32_t)index, (RsFile)fi… in nFileA3DGetEntryByIndex()
1726 nFontCreateFromFile(JNIEnv *_env, jobject _this, jlong con, in nFontCreateFromFile() argument
1730 jlong id = (jlong)(uintptr_t)rsFontCreateFromFile((RsContext)con, in nFontCreateFromFile()
1738 nFontCreateFromAssetStream(JNIEnv *_env, jobject _this, jlong con, in nFontCreateFromAssetStream() argument
1744 jlong id = (jlong)(uintptr_t)rsFontCreateFromMemory((RsContext)con, in nFontCreateFromAssetStream()
1752 nFontCreateFromAsset(JNIEnv *_env, jobject _this, jlong con, jobject _assetMgr, jstring _path, in nFontCreateFromAsset() argument
1770 jlong id = (jlong)(uintptr_t)rsFontCreateFromMemory((RsContext)con, in nFontCreateFromAsset()
1780 nScriptBindAllocation(JNIEnv *_env, jobject _this, jlong con, jlong script, jlong alloc, jint slot) in nScriptBindAllocation() argument
1783 ALOGD("nScriptBindAllocation, con(%p), script(%p), alloc(%p), slot(%i)", (RsContext)con, in nScriptBindAllocation()
1786 rsScriptBindAllocation((RsContext)con, (RsScript)script, (RsAllocation)alloc, slot); in nScriptBindAllocation()
1790 nScriptSetVarI(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jint val) in nScriptSetVarI() argument
1793 ALOGD("nScriptSetVarI, con(%p), s(%p), slot(%i), val(%i)", (RsContext)con, (void *)script, in nScriptSetVarI()
1796 rsScriptSetVarI((RsContext)con, (RsScript)script, slot, val); in nScriptSetVarI()
1800 nScriptGetVarI(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot) in nScriptGetVarI() argument
1803 ALOGD("nScriptGetVarI, con(%p), s(%p), slot(%i)", (RsContext)con, (void *)script, slot); in nScriptGetVarI()
1806 rsScriptGetVarV((RsContext)con, (RsScript)script, slot, &value, sizeof(value)); in nScriptGetVarI()
1811 nScriptSetVarObj(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jlong val) in nScriptSetVarObj() argument
1814 …ALOGD("nScriptSetVarObj, con(%p), s(%p), slot(%i), val(%" PRId64 ")", (RsContext)con, (void *)scri… in nScriptSetVarObj()
1817 rsScriptSetVarObj((RsContext)con, (RsScript)script, slot, (RsObjectBase)val); in nScriptSetVarObj()
1821 nScriptSetVarJ(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jlong val) in nScriptSetVarJ() argument
1824 …ALOGD("nScriptSetVarJ, con(%p), s(%p), slot(%i), val(%" PRId64 ")", (RsContext)con, (void *)script, in nScriptSetVarJ()
1827 rsScriptSetVarJ((RsContext)con, (RsScript)script, slot, val); in nScriptSetVarJ()
1831 nScriptGetVarJ(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot) in nScriptGetVarJ() argument
1834 ALOGD("nScriptGetVarJ, con(%p), s(%p), slot(%i)", (RsContext)con, (void *)script, slot); in nScriptGetVarJ()
1837 rsScriptGetVarV((RsContext)con, (RsScript)script, slot, &value, sizeof(value)); in nScriptGetVarJ()
1842 nScriptSetVarF(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, float val) in nScriptSetVarF() argument
1845 ALOGD("nScriptSetVarF, con(%p), s(%p), slot(%i), val(%f)", (RsContext)con, (void *)script, in nScriptSetVarF()
1848 rsScriptSetVarF((RsContext)con, (RsScript)script, slot, val); in nScriptSetVarF()
1852 nScriptGetVarF(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot) in nScriptGetVarF() argument
1855 ALOGD("nScriptGetVarF, con(%p), s(%p), slot(%i)", (RsContext)con, (void *)script, slot); in nScriptGetVarF()
1858 rsScriptGetVarV((RsContext)con, (RsScript)script, slot, &value, sizeof(value)); in nScriptGetVarF()
1863 nScriptSetVarD(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, double val) in nScriptSetVarD() argument
1866 ALOGD("nScriptSetVarD, con(%p), s(%p), slot(%i), val(%lf)", (RsContext)con, (void *)script, in nScriptSetVarD()
1869 rsScriptSetVarD((RsContext)con, (RsScript)script, slot, val); in nScriptSetVarD()
1873 nScriptGetVarD(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot) in nScriptGetVarD() argument
1876 ALOGD("nScriptGetVarD, con(%p), s(%p), slot(%i)", (RsContext)con, (void *)script, slot); in nScriptGetVarD()
1879 rsScriptGetVarV((RsContext)con, (RsScript)script, slot, &value, sizeof(value)); in nScriptGetVarD()
1884 nScriptSetVarV(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jbyteArray data) in nScriptSetVarV() argument
1887 ALOGD("nScriptSetVarV, con(%p), s(%p), slot(%i)", (RsContext)con, (void *)script, slot); in nScriptSetVarV()
1895 rsScriptSetVarV((RsContext)con, (RsScript)script, slot, ptr, len); in nScriptSetVarV()
1900 nScriptGetVarV(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jbyteArray data) in nScriptGetVarV() argument
1903 ALOGD("nScriptSetVarV, con(%p), s(%p), slot(%i)", (RsContext)con, (void *)script, slot); in nScriptGetVarV()
1911 rsScriptGetVarV((RsContext)con, (RsScript)script, slot, ptr, len); in nScriptGetVarV()
1916 nScriptSetVarVE(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jbyteArray data, in nScriptSetVarVE() argument
1920 ALOGD("nScriptSetVarVE, con(%p), s(%p), slot(%i)", (RsContext)con, (void *)script, slot); in nScriptSetVarVE()
1934 rsScriptSetVarVE((RsContext)con, (RsScript)script, slot, ptr, len, (RsElement)elem, in nScriptSetVarVE()
1942 nScriptSetTimeZone(JNIEnv *_env, jobject _this, jlong con, jlong script, jbyteArray timeZone) in nScriptSetTimeZone() argument
1945 ALOGD("nScriptCSetTimeZone, con(%p), s(%p)", (RsContext)con, (void *)script); in nScriptSetTimeZone()
1956 rsScriptSetTimeZone((RsContext)con, (RsScript)script, (const char *)timeZone_ptr, length); in nScriptSetTimeZone()
1964 nScriptInvoke(JNIEnv *_env, jobject _this, jlong con, jlong obj, jint slot) in nScriptInvoke() argument
1967 ALOGD("nScriptInvoke, con(%p), script(%p)", (RsContext)con, (void *)obj); in nScriptInvoke()
1969 rsScriptInvoke((RsContext)con, (RsScript)obj, slot); in nScriptInvoke()
1973 nScriptInvokeV(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jbyteArray data) in nScriptInvokeV() argument
1976 ALOGD("nScriptInvokeV, con(%p), s(%p), slot(%i)", (RsContext)con, (void *)script, slot); in nScriptInvokeV()
1984 rsScriptInvokeV((RsContext)con, (RsScript)script, slot, ptr, len); in nScriptInvokeV()
1989 nScriptForEach(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, in nScriptForEach() argument
1994 …ALOGD("nScriptForEach, con(%p), s(%p), slot(%i) ains(%p) aout(%" PRId64 ")", (RsContext)con, (void… in nScriptForEach()
2084 rsScriptForEachMulti((RsContext)con, (RsScript)script, slot, in nScriptForEach()
2102 nScriptReduce(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, in nScriptReduce() argument
2106 …ALOGD("nScriptReduce, con(%p), s(%p), slot(%i) ains(%p) aout(%" PRId64 ")", (RsContext)con, (void … in nScriptReduce()
2185 rsScriptReduce((RsContext)con, (RsScript)script, slot, in nScriptReduce()
2199 nScriptCCreate(JNIEnv *_env, jobject _this, jlong con, in nScriptCCreate() argument
2204 ALOGD("nScriptCCreate, con(%p)", (RsContext)con); in nScriptCCreate()
2239 ret = (jlong)(uintptr_t)rsScriptCCreate((RsContext)con, in nScriptCCreate()
2254 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, jlong con, jint id, jlong eid) in nScriptIntrinsicCreate() argument
2257 ALOGD("nScriptIntrinsicCreate, con(%p) id(%i) element(%p)", (RsContext)con, id, in nScriptIntrinsicCreate()
2260 return (jlong)(uintptr_t)rsScriptIntrinsicCreate((RsContext)con, id, (RsElement)eid); in nScriptIntrinsicCreate()
2264 nScriptKernelIDCreate(JNIEnv *_env, jobject _this, jlong con, jlong sid, jint slot, jint sig) in nScriptKernelIDCreate() argument
2267 ALOGD("nScriptKernelIDCreate, con(%p) script(%p), slot(%i), sig(%i)", (RsContext)con, in nScriptKernelIDCreate()
2270 return (jlong)(uintptr_t)rsScriptKernelIDCreate((RsContext)con, (RsScript)sid, slot, sig); in nScriptKernelIDCreate()
2274 nScriptInvokeIDCreate(JNIEnv *_env, jobject _this, jlong con, jlong sid, jint slot) in nScriptInvokeIDCreate() argument
2277 ALOGD("nScriptInvokeIDCreate, con(%p) script(%p), slot(%i)", (RsContext)con, in nScriptInvokeIDCreate()
2280 return (jlong)(uintptr_t)rsScriptInvokeIDCreate((RsContext)con, (RsScript)sid, slot); in nScriptInvokeIDCreate()
2284 nScriptFieldIDCreate(JNIEnv *_env, jobject _this, jlong con, jlong sid, jint slot) in nScriptFieldIDCreate() argument
2287 ALOGD("nScriptFieldIDCreate, con(%p) script(%p), slot(%i)", (RsContext)con, (void *)sid, in nScriptFieldIDCreate()
2290 return (jlong)(uintptr_t)rsScriptFieldIDCreate((RsContext)con, (RsScript)sid, slot); in nScriptFieldIDCreate()
2294 nScriptGroupCreate(JNIEnv *_env, jobject _this, jlong con, jlongArray _kernels, jlongArray _src, in nScriptGroupCreate() argument
2298 ALOGD("nScriptGroupCreate, con(%p)", (RsContext)con); in nScriptGroupCreate()
2369 id = (jlong)(uintptr_t)rsScriptGroupCreate((RsContext)con, in nScriptGroupCreate()
2403 nScriptGroupSetInput(JNIEnv *_env, jobject _this, jlong con, jlong gid, jlong kid, jlong alloc) in nScriptGroupSetInput() argument
2406 ALOGD("nScriptGroupSetInput, con(%p) group(%p), kernelId(%p), alloc(%p)", (RsContext)con, in nScriptGroupSetInput()
2409 …rsScriptGroupSetInput((RsContext)con, (RsScriptGroup)gid, (RsScriptKernelID)kid, (RsAllocation)all… in nScriptGroupSetInput()
2413 nScriptGroupSetOutput(JNIEnv *_env, jobject _this, jlong con, jlong gid, jlong kid, jlong alloc) in nScriptGroupSetOutput() argument
2416 ALOGD("nScriptGroupSetOutput, con(%p) group(%p), kernelId(%p), alloc(%p)", (RsContext)con, in nScriptGroupSetOutput()
2419 …rsScriptGroupSetOutput((RsContext)con, (RsScriptGroup)gid, (RsScriptKernelID)kid, (RsAllocation)al… in nScriptGroupSetOutput()
2423 nScriptGroupExecute(JNIEnv *_env, jobject _this, jlong con, jlong gid) in nScriptGroupExecute() argument
2426 ALOGD("nScriptGroupSetOutput, con(%p) group(%p)", (RsContext)con, (void *)gid); in nScriptGroupExecute()
2428 rsScriptGroupExecute((RsContext)con, (RsScriptGroup)gid); in nScriptGroupExecute()
2434 nProgramStoreCreate(JNIEnv *_env, jobject _this, jlong con, in nProgramStoreCreate() argument
2441 ALOGD("nProgramStoreCreate, con(%p)", (RsContext)con); in nProgramStoreCreate()
2443 …return (jlong)(uintptr_t)rsProgramStoreCreate((RsContext)con, colorMaskR, colorMaskG, colorMaskB, … in nProgramStoreCreate()
2451 nProgramBindConstants(JNIEnv *_env, jobject _this, jlong con, jlong vpv, jint slot, jlong a) in nProgramBindConstants() argument
2454 ALOGD("nProgramBindConstants, con(%p), vpf(%p), sloat(%i), a(%p)", (RsContext)con, in nProgramBindConstants()
2457 rsProgramBindConstants((RsContext)con, (RsProgram)vpv, slot, (RsAllocation)a); in nProgramBindConstants()
2461 nProgramBindTexture(JNIEnv *_env, jobject _this, jlong con, jlong vpf, jint slot, jlong a) in nProgramBindTexture() argument
2464 ALOGD("nProgramBindTexture, con(%p), vpf(%p), slot(%i), a(%p)", (RsContext)con, in nProgramBindTexture()
2467 rsProgramBindTexture((RsContext)con, (RsProgramFragment)vpf, slot, (RsAllocation)a); in nProgramBindTexture()
2471 nProgramBindSampler(JNIEnv *_env, jobject _this, jlong con, jlong vpf, jint slot, jlong a) in nProgramBindSampler() argument
2474 ALOGD("nProgramBindSampler, con(%p), vpf(%p), slot(%i), a(%p)", (RsContext)con, in nProgramBindSampler()
2477 rsProgramBindSampler((RsContext)con, (RsProgramFragment)vpf, slot, (RsSampler)a); in nProgramBindSampler()
2483 nProgramFragmentCreate(JNIEnv *_env, jobject _this, jlong con, jstring shader, in nProgramFragmentCreate() argument
2500 ALOGD("nProgramFragmentCreate, con(%p), paramLen(%i)", (RsContext)con, paramLen); in nProgramFragmentCreate()
2507 …jlong ret = (jlong)(uintptr_t)rsProgramFragmentCreate((RsContext)con, shaderUTF.c_str(), shaderUTF… in nProgramFragmentCreate()
2520 nProgramVertexCreate(JNIEnv *_env, jobject _this, jlong con, jstring shader, in nProgramVertexCreate() argument
2532 ALOGD("nProgramVertexCreate, con(%p), paramLen(%i)", (RsContext)con, paramLen); in nProgramVertexCreate()
2545 …jlong ret = (jlong)(uintptr_t)rsProgramVertexCreate((RsContext)con, shaderUTF.c_str(), shaderUTF.l… in nProgramVertexCreate()
2557 nProgramRasterCreate(JNIEnv *_env, jobject _this, jlong con, jboolean pointSprite, jint cull) in nProgramRasterCreate() argument
2560 ALOGD("nProgramRasterCreate, con(%p), pointSprite(%i), cull(%i)", (RsContext)con, in nProgramRasterCreate()
2563 return (jlong)(uintptr_t)rsProgramRasterCreate((RsContext)con, pointSprite, (RsCullMode)cull); in nProgramRasterCreate()
2570 nContextBindRootScript(JNIEnv *_env, jobject _this, jlong con, jlong script) in nContextBindRootScript() argument
2573 ALOGD("nContextBindRootScript, con(%p), script(%p)", (RsContext)con, (RsScript)script); in nContextBindRootScript()
2575 rsContextBindRootScript((RsContext)con, (RsScript)script); in nContextBindRootScript()
2579 nContextBindProgramStore(JNIEnv *_env, jobject _this, jlong con, jlong pfs) in nContextBindProgramStore() argument
2582 ALOGD("nContextBindProgramStore, con(%p), pfs(%p)", (RsContext)con, (RsProgramStore)pfs); in nContextBindProgramStore()
2584 rsContextBindProgramStore((RsContext)con, (RsProgramStore)pfs); in nContextBindProgramStore()
2588 nContextBindProgramFragment(JNIEnv *_env, jobject _this, jlong con, jlong pf) in nContextBindProgramFragment() argument
2591 ALOGD("nContextBindProgramFragment, con(%p), pf(%p)", (RsContext)con, in nContextBindProgramFragment()
2594 rsContextBindProgramFragment((RsContext)con, (RsProgramFragment)pf); in nContextBindProgramFragment()
2598 nContextBindProgramVertex(JNIEnv *_env, jobject _this, jlong con, jlong pf) in nContextBindProgramVertex() argument
2601 ALOGD("nContextBindProgramVertex, con(%p), pf(%p)", (RsContext)con, (RsProgramVertex)pf); in nContextBindProgramVertex()
2603 rsContextBindProgramVertex((RsContext)con, (RsProgramVertex)pf); in nContextBindProgramVertex()
2607 nContextBindProgramRaster(JNIEnv *_env, jobject _this, jlong con, jlong pf) in nContextBindProgramRaster() argument
2610 ALOGD("nContextBindProgramRaster, con(%p), pf(%p)", (RsContext)con, (RsProgramRaster)pf); in nContextBindProgramRaster()
2612 rsContextBindProgramRaster((RsContext)con, (RsProgramRaster)pf); in nContextBindProgramRaster()
2619 nSamplerCreate(JNIEnv *_env, jobject _this, jlong con, jint magFilter, jint minFilter, in nSamplerCreate() argument
2623 ALOGD("nSamplerCreate, con(%p)", (RsContext)con); in nSamplerCreate()
2625 return (jlong)(uintptr_t)rsSamplerCreate((RsContext)con, in nSamplerCreate()
2637 nMeshCreate(JNIEnv *_env, jobject _this, jlong con, jlongArray _vtx, jlongArray _idx, jintArray _pr… in nMeshCreate() argument
2640 ALOGD("nMeshCreate, con(%p)", (RsContext)con); in nMeshCreate()
2679 id = (jlong)(uintptr_t)rsMeshCreate((RsContext)con, in nMeshCreate()
2702 nMeshGetVertexBufferCount(JNIEnv *_env, jobject _this, jlong con, jlong mesh) in nMeshGetVertexBufferCount() argument
2705 ALOGD("nMeshGetVertexBufferCount, con(%p), Mesh(%p)", (RsContext)con, (RsMesh)mesh); in nMeshGetVertexBufferCount()
2708 rsaMeshGetVertexBufferCount((RsContext)con, (RsMesh)mesh, &vtxCount); in nMeshGetVertexBufferCount()
2713 nMeshGetIndexCount(JNIEnv *_env, jobject _this, jlong con, jlong mesh) in nMeshGetIndexCount() argument
2716 ALOGD("nMeshGetIndexCount, con(%p), Mesh(%p)", (RsContext)con, (RsMesh)mesh); in nMeshGetIndexCount()
2719 rsaMeshGetIndexCount((RsContext)con, (RsMesh)mesh, &idxCount); in nMeshGetIndexCount()
2724 nMeshGetVertices(JNIEnv *_env, jobject _this, jlong con, jlong mesh, jlongArray _ids, jint numVtxID… in nMeshGetVertices() argument
2727 ALOGD("nMeshGetVertices, con(%p), Mesh(%p)", (RsContext)con, (RsMesh)mesh); in nMeshGetVertices()
2731 rsaMeshGetVertices((RsContext)con, (RsMesh)mesh, allocs, (uint32_t)numVtxIDs); in nMeshGetVertices()
2742 nMeshGetIndices(JNIEnv *_env, jobject _this, jlong con, jlong mesh, jlongArray _idxIds, jintArray _… in nMeshGetIndices() argument
2745 ALOGD("nMeshGetVertices, con(%p), Mesh(%p)", (RsContext)con, (RsMesh)mesh); in nMeshGetIndices()
2751 rsaMeshGetIndices((RsContext)con, (RsMesh)mesh, allocs, prims, (uint32_t)numIndices); in nMeshGetIndices()
2770 nAllocationGetByteBuffer(JNIEnv *_env, jobject _this, jlong con, jlong alloc, in nAllocationGetByteBuffer() argument
2774 ALOGD("nAllocationGetByteBuffer, con(%p), alloc(%p)", (RsContext)con, (RsAllocation)alloc); in nAllocationGetByteBuffer()
2786 ptr = rsAllocationGetPointer((RsContext)con, (RsAllocation)alloc, 0, in nAllocationGetByteBuffer()