Lines Matching refs:RsAllocation
541 …LOG_API("nAllocationSyncAll, con(%p), a(%p), bits(0x%08x)", (RsContext)con, (RsAllocation)a, bits); in nAllocationSyncAll()
542 rsAllocationSyncAll((RsContext)con, (RsAllocation)a, (RsAllocationUsageType)bits); in nAllocationSyncAll()
548 LOG_API("nAllocationGetSurface, con(%p), a(%p)", (RsContext)con, (RsAllocation)a); in nAllocationGetSurface()
550 …ferProducer *v = (IGraphicBufferProducer *)rsAllocationGetSurface((RsContext)con, (RsAllocation)a); in nAllocationGetSurface()
562 (RsContext)con, (RsAllocation)alloc, (Surface *)sur); in nAllocationSetSurface()
569 …rsAllocationSetSurface((RsContext)con, (RsAllocation)alloc, static_cast<ANativeWindow *>(s.get())); in nAllocationSetSurface()
576 rsAllocationIoSend((RsContext)con, (RsAllocation)alloc); in nAllocationIoSend()
583 rsAllocationIoReceive((RsContext)con, (RsAllocation)alloc); in nAllocationIoReceive()
590 LOG_API("nAllocationGenerateMipmaps, con(%p), a(%p)", (RsContext)con, (RsAllocation)alloc); in nAllocationGenerateMipmaps()
591 rsAllocationGenerateMipmaps((RsContext)con, (RsAllocation)alloc); in nAllocationGenerateMipmaps()
653 rsAllocation2DData((RsContext)con, (RsAllocation)alloc, 0, 0, in nAllocationCopyFromBitmap()
668 rsAllocationCopyToBitmap((RsContext)con, (RsAllocation)alloc, ptr, bitmap.getSize()); in nAllocationCopyToBitmap()
685 RsAllocation *alloc = (RsAllocation *)_alloc; in nAllocationData1D()
687 (RsContext)con, (RsAllocation)alloc, offset, count, sizeBytes, dataType); in nAllocationData1D()
697 …(%p), offset(%i), comp(%i), len(%i), sizeBytes(%i)", (RsContext)con, (RsAllocation)alloc, offset, … in nAllocationElementData1D()
699 …rsAllocation1DElementData((RsContext)con, (RsAllocation)alloc, offset, lod, ptr, sizeBytes, compId… in nAllocationElementData1D()
708 RsAllocation *alloc = (RsAllocation *)_alloc; in nAllocationData2D()
728 (RsContext)con, (RsAllocation)dstAlloc, dstXoff, dstYoff, dstMip, dstFace, in nAllocationData2D_alloc()
729 width, height, (RsAllocation)srcAlloc, srcXoff, srcYoff, srcMip, srcFace); in nAllocationData2D_alloc()
732 (RsAllocation)dstAlloc, in nAllocationData2D_alloc()
736 (RsAllocation)srcAlloc, in nAllocationData2D_alloc()
746 RsAllocation *alloc = (RsAllocation *)_alloc; in nAllocationData3D()
748 (RsContext)con, (RsAllocation)alloc, xoff, yoff, zoff, lod, w, h, d, sizeBytes); in nAllocationData3D()
765 (RsContext)con, (RsAllocation)dstAlloc, dstXoff, dstYoff, dstMip, in nAllocationData3D_alloc()
766 width, height, (RsAllocation)srcAlloc, srcXoff, srcYoff, srcMip); in nAllocationData3D_alloc()
769 (RsAllocation)dstAlloc, in nAllocationData3D_alloc()
772 (RsAllocation)srcAlloc, in nAllocationData3D_alloc()
781 RsAllocation *alloc = (RsAllocation *)_alloc; in nAllocationRead()
782 LOG_API("nAllocationRead, con(%p), alloc(%p)", (RsContext)con, (RsAllocation)alloc); in nAllocationRead()
791 RsAllocation *alloc = (RsAllocation *)_alloc; in nAllocationRead1D()
802 RsAllocation *alloc = (RsAllocation *)_alloc; in nAllocationRead2D()
812 LOG_API("nAllocationGetType, con(%p), a(%p)", (RsContext)con, (RsAllocation)a); in nAllocationGetType()
813 return (jlong)(uintptr_t) rsaAllocationGetType((RsContext)con, (RsAllocation)a); in nAllocationGetType()
819 …LOG_API("nAllocationResize1D, con(%p), alloc(%p), sizeX(%i)", (RsContext)con, (RsAllocation)alloc,… in nAllocationResize1D()
820 rsAllocationResize1D((RsContext)con, (RsAllocation)alloc, dimX); in nAllocationResize1D()
950 …p), script(%p), alloc(%p), slot(%i)", (RsContext)con, (RsScript)script, (RsAllocation)alloc, slot); in nScriptBindAllocation()
951 rsScriptBindAllocation((RsContext)con, (RsScript)script, (RsAllocation)alloc, slot); in nScriptBindAllocation()
1098 …rsScriptForEach((RsContext)con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, NUL… in nScriptForEach()
1107 …rsScriptForEach((RsContext)con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, ptr… in nScriptForEachV()
1128 …rsScriptForEach((RsContext)con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, NUL… in nScriptForEachClipped()
1150 …rsScriptForEach((RsContext)con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, ptr… in nScriptForEachClippedV()
1165 RsAllocation *in_allocs = NULL; in nScriptForEachMultiClipped()
1167 if (sizeof(RsAllocation) == sizeof(jlong)) { in nScriptForEachMultiClipped()
1168 in_allocs = (RsAllocation*)in_ptr; in nScriptForEachMultiClipped()
1173 in_allocs = new RsAllocation[in_len]; in nScriptForEachMultiClipped()
1176 in_allocs[index] = (RsAllocation)in_ptr[index]; in nScriptForEachMultiClipped()
1191 …rsScriptForEachMulti((RsContext)con, (RsScript)script, slot, in_allocs, in_len, (RsAllocation)aout… in nScriptForEachMultiClipped()
1193 if (sizeof(RsAllocation) != sizeof(jlong)) { in nScriptForEachMultiClipped()
1211 RsAllocation *in_allocs = NULL; in nScriptForEachMultiClippedV()
1213 if (sizeof(RsAllocation) == sizeof(jlong)) { in nScriptForEachMultiClippedV()
1214 in_allocs = (RsAllocation*)in_ptr; in nScriptForEachMultiClippedV()
1219 in_allocs = new RsAllocation[in_len]; in nScriptForEachMultiClippedV()
1222 in_allocs[index] = (RsAllocation)in_ptr[index]; in nScriptForEachMultiClippedV()
1239 …rsScriptForEachMulti((RsContext)con, (RsScript)script, slot, in_allocs, in_len, (RsAllocation)aout… in nScriptForEachMultiClippedV()
1241 if (sizeof(RsAllocation) != sizeof(jlong)) { in nScriptForEachMultiClippedV()
1387 …rsScriptGroupSetInput((RsContext)con, (RsScriptGroup)gid, (RsScriptKernelID)kid, (RsAllocation)all… in nScriptGroupSetInput()
1395 …rsScriptGroupSetOutput((RsContext)con, (RsScriptGroup)gid, (RsScriptKernelID)kid, (RsAllocation)al… in nScriptGroupSetOutput()
1425 … con(%p), vpf(%p), sloat(%i), a(%p)", (RsContext)con, (RsProgramVertex)vpv, slot, (RsAllocation)a); in nProgramBindConstants()
1426 rsProgramBindConstants((RsContext)con, (RsProgram)vpv, slot, (RsAllocation)a); in nProgramBindConstants()
1432 …con(%p), vpf(%p), slot(%i), a(%p)", (RsContext)con, (RsProgramFragment)vpf, slot, (RsAllocation)a); in nProgramBindTexture()
1433 rsProgramBindTexture((RsContext)con, (RsProgramFragment)vpf, slot, (RsAllocation)a); in nProgramBindTexture()
1576 (RsAllocation)_vtx, in nPathCreate()
1577 (RsAllocation)_loop, q); in nPathCreate()
1588 RsAllocation* vtxPtr = (RsAllocation*) malloc(sizeof(RsAllocation) * vtxLen); in nMeshCreate()
1590 vtxPtr[i] = (RsAllocation)(uintptr_t)jVtxPtr[i]; in nMeshCreate()
1595 RsAllocation* idxPtr = (RsAllocation*) malloc(sizeof(RsAllocation) * idxLen); in nMeshCreate()
1597 idxPtr[i] = (RsAllocation)(uintptr_t)jIdxPtr[i]; in nMeshCreate()
1604 (RsAllocation *)vtxPtr, vtxLen, in nMeshCreate()
1605 (RsAllocation *)idxPtr, idxLen, in nMeshCreate()
1639 RsAllocation *allocs = (RsAllocation*)malloc((uint32_t)numVtxIDs * sizeof(RsAllocation)); in nMeshGetVertices()
1655 RsAllocation *allocs = (RsAllocation*)malloc((uint32_t)numIndices * sizeof(RsAllocation)); in nMeshGetIndices()