Home | History | Annotate | Download | only in renderscript

Lines Matching defs:cl

188                 final ConnectLine cl = target.mOutputs.get(ct);
189 if (cl.mToK != null) {
190 Node tn = findNode(cl.mToK.mScript);
196 if (cl.mToF != null) {
197 Node tn = findNode(cl.mToF.mScript);
222 final ConnectLine cl = n.mOutputs.get(ct);
223 if (cl.mToK != null) {
224 Node tn = findNode(cl.mToK.mScript);
227 if (cl.mToF != null) {
228 Node tn = findNode(cl.mToF.mScript);
328 ConnectLine cl = new ConnectLine(t, from, to);
331 nf.mOutputs.add(cl);
332 nt.mInputs.add(cl);
363 ConnectLine cl = new ConnectLine(t, from, to);
366 nf.mOutputs.add(cl);
367 nt.mInputs.add(cl);
435 ConnectLine cl = mLines.get(ct);
436 src[ct] = cl.mFrom.getID(mRS);
437 if (cl.mToK != null) {
438 dstk[ct] = cl.mToK.getID(mRS);
440 if (cl.mToF != null) {
441 dstf[ct] = cl.mToF.getID(mRS);
443 types[ct] = cl.mAllocationType.getID(mRS);