Home | History | Annotate | Download | only in renderscript

Lines Matching refs:ain

67      * @param ain The input image
69 public void forEach(Allocation ain) {
70 forEach(ain, null);
84 * @param ain The input image
87 public void forEach(Allocation ain, Script.LaunchOptions opt) {
88 if (ain.getType().getElement().getVectorSize() <
94 if (!ain.getType().getElement().isCompatible(Element.U8(mRS)) &&
95 !ain.getType().getElement().isCompatible(Element.U8_2(mRS)) &&
96 !ain.getType().getElement().isCompatible(Element.U8_3(mRS)) &&
97 !ain.getType().getElement().isCompatible(Element.U8_4(mRS))) {
101 forEach(0, ain, null, null, opt);
171 * @param ain The input image
173 public void forEach_Dot(Allocation ain) {
174 forEach_Dot(ain, null);
185 * @param ain The input image
188 public void forEach_Dot(Allocation ain, Script.LaunchOptions opt) {
192 if (!ain.getType().getElement().isCompatible(Element.U8(mRS)) &&
193 !ain.getType().getElement().isCompatible(Element.U8_2(mRS)) &&
194 !ain.getType().getElement().isCompatible(Element.U8_3(mRS)) &&
195 !ain.getType().getElement().isCompatible(Element.U8_4(mRS))) {
199 forEach(1, ain, null, null, opt);