• Home
  • Raw
  • Download

Lines Matching refs:ain

48 void ScriptIntrinsic3DLUT::forEach(sp<Allocation> ain, sp<Allocation> aout) {  in forEach()  argument
49 if (ain->getType()->getElement()->isCompatible(mElement) == false || in forEach()
54 Script::forEach(0, ain, aout, nullptr, 0); in forEach()
470 void ScriptIntrinsicHistogram::forEach(sp<Allocation> ain) { in forEach() argument
471 if (ain->getType()->getElement()->getVectorSize() < in forEach()
478 if (!(ain->getType()->getElement()->isCompatible(Element::U8(mRS))) && in forEach()
479 !(ain->getType()->getElement()->isCompatible(Element::U8_4(mRS)))) { in forEach()
485 Script::forEach(0, ain, nullptr, nullptr, 0); in forEach()
489 void ScriptIntrinsicHistogram::forEach_dot(sp<Allocation> ain) { in forEach_dot() argument
496 if (!(ain->getType()->getElement()->isCompatible(Element::U8(mRS))) && in forEach_dot()
497 !(ain->getType()->getElement()->isCompatible(Element::U8_4(mRS)))) { in forEach_dot()
503 Script::forEach(1, ain, nullptr, nullptr, 0); in forEach_dot()
526 void ScriptIntrinsicLUT::forEach(sp<Allocation> ain, sp<Allocation> aout) { in forEach() argument
531 if (!(ain->getType()->getElement()->isCompatible(Element::U8_4(mRS))) || in forEach()
536 Script::forEach(0, ain, aout, nullptr, 0); in forEach()
590 void ScriptIntrinsicResize::setInput(sp<Allocation> ain) { in setInput() argument
591 if (!(ain->getType()->getElement()->isCompatible(Element::U8(mRS))) && in setInput()
592 !(ain->getType()->getElement()->isCompatible(Element::U8_2(mRS))) && in setInput()
593 !(ain->getType()->getElement()->isCompatible(Element::U8_3(mRS))) && in setInput()
594 !(ain->getType()->getElement()->isCompatible(Element::U8_4(mRS))) && in setInput()
595 !(ain->getType()->getElement()->isCompatible(Element::F32(mRS))) && in setInput()
596 !(ain->getType()->getElement()->isCompatible(Element::F32_2(mRS))) && in setInput()
597 !(ain->getType()->getElement()->isCompatible(Element::F32_3(mRS))) && in setInput()
598 !(ain->getType()->getElement()->isCompatible(Element::F32_4(mRS)))) { in setInput()
603 mInput = ain; in setInput()
604 Script::setVar(0, ain); in setInput()