Home | History | Annotate | Download | only in renderscript

Lines Matching refs:aout

222      * @param aout Output allocation
224 public void forEach(Allocation ain, Allocation aout) {
225 forEach(ain, aout, null);
241 * @param aout Output allocation
244 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
257 if (!aout.getElement().isCompatible(Element.U8(mRS)) &&
258 !aout.getElement().isCompatible(Element.U8_2(mRS)) &&
259 !aout.getElement().isCompatible(Element.U8_3(mRS)) &&
260 !aout.getElement().isCompatible(Element.U8_4(mRS)) &&
261 !aout.getElement().isCompatible(Element.F32(mRS)) &&
262 !aout.getElement().isCompatible(Element.F32_2(mRS)) &&
263 !aout.getElement().isCompatible(Element.F32_3(mRS)) &&
264 !aout.getElement().isCompatible(Element.F32_4(mRS))) {
269 forEach(0, ain, aout, null, opt);