Home
last modified time | relevance | path

Searched refs:fep (Results 1 – 5 of 5) sorted by relevance

/frameworks/rs/cpu_ref/
DrsCpuCore.cpp173 if (mtls && mtls->fep.dimY <= 1 && mtls->xEnd <= mtls->xStart + mtls->mSliceSize) { in launchThreads()
357 memcpy(&p, &mtls->fep, sizeof(p)); in wc_xy()
375 p.out = mtls->fep.ptrOut + (mtls->fep.yStrideOut * p.y) + in wc_xy()
376 (mtls->fep.eStrideOut * mtls->xStart); in wc_xy()
377 p.in = mtls->fep.ptrIn + (mtls->fep.yStrideIn * p.y) + in wc_xy()
378 (mtls->fep.eStrideIn * mtls->xStart); in wc_xy()
379 fn(&p, mtls->xStart, mtls->xEnd, mtls->fep.eStrideIn, mtls->fep.eStrideOut); in wc_xy()
387 memcpy(&p, &mtls->fep, sizeof(p)); in wc_x()
404 p.out = mtls->fep.ptrOut + (mtls->fep.eStrideOut * xStart); in wc_x()
405 p.in = mtls->fep.ptrIn + (mtls->fep.eStrideIn * xStart); in wc_x()
[all …]
DrsCpuScript.cpp812 mtls->fep.dimX = inType->getDimX(); in forEachMtlsSetup()
813 mtls->fep.dimY = inType->getDimY(); in forEachMtlsSetup()
814 mtls->fep.dimZ = inType->getDimZ(); in forEachMtlsSetup()
819 mtls->fep.dimX = outType->getDimX(); in forEachMtlsSetup()
820 mtls->fep.dimY = outType->getDimY(); in forEachMtlsSetup()
821 mtls->fep.dimZ = outType->getDimZ(); in forEachMtlsSetup()
838 mtls->xEnd = mtls->fep.dimX; in forEachMtlsSetup()
840 rsAssert(sc->xStart < mtls->fep.dimX); in forEachMtlsSetup()
841 rsAssert(sc->xEnd <= mtls->fep.dimX); in forEachMtlsSetup()
843 mtls->xStart = rsMin(mtls->fep.dimX, sc->xStart); in forEachMtlsSetup()
[all …]
DrsCpuIntrinsic.cpp98 mtls.fep.slot = slot; in invokeForEach()
101 mtls.fep.usr = this; in invokeForEach()
127 mtls.fep.slot = slot; in invokeForEachMulti()
130 mtls.fep.usr = this; in invokeForEachMulti()
142 mtls->fep.slot = slot; in forEachKernelSetup()
144 mtls->fep.usr = this; in forEachKernelSetup()
DrsCpuScriptGroup.cpp201 si->preLaunch(slot, ins[ct], outs[ct], mtls.fep.usr, mtls.fep.usrLen, NULL); in execute()
221 usrPtrs.add(mtls.fep.usr); in execute()
222 sigs.add(mtls.fep.usrLen); in execute()
223 … si->preLaunch(kernels[ct]->mSlot, ins[ct], outs[ct], mtls.fep.usr, mtls.fep.usrLen, NULL); in execute()
236 mtls.fep.usr = &sl; in execute()
DrsCpuCore.h92 RsForEachStubParamStruct fep; member