Home | History | Annotate | Download | only in cpu_ref

Lines Matching full:mtls

93     MTLaunchStruct mtls;
96 forEachMtlsSetup(ain, aout, usr, usrLen, sc, &mtls);
97 mtls.script = this;
98 mtls.fep.slot = slot;
100 mtls.kernel = (void (*)())mRootPtr;
101 mtls.fep.usr = this;
104 mCtx->launchThreads(ain, aout, sc, &mtls);
118 MTLaunchStruct mtls;
125 forEachMtlsSetup(ains, inLen, aout, usr, usrLen, sc, &mtls);
126 mtls.script = this;
127 mtls.fep.slot = slot;
129 mtls.kernel = (void (*)())mRootPtr;
130 mtls.fep.usr = this;
133 mCtx->launchThreads(ains, inLen, aout, sc, &mtls);
139 void RsdCpuScriptIntrinsic::forEachKernelSetup(uint32_t slot, MTLaunchStruct *mtls) {
141 mtls->script = this;
142 mtls->fep.slot = slot;
143 mtls->kernel = (void (*)())mRootPtr;
144 mtls->fep.usr = this;