/cts/tests/camera/src/android/hardware/camera2/cts/rs/ |
ScriptYuvMeans1d.java | 27 * Average a {@code Hx1} {@link ElementInfo#U8_3 U8_3} {@link Allocation allocation} into a 1x1 41 return AllocationInfo.newInstance(Element.U8_3(getRS()), UNIT_SQUARE); 50 if (!inputInfo.isElementEqualTo(ElementInfo.U8_3)) {
|
ScriptYuvMeans2dTo1d.java | 30 * {@link ElementInfo#U8_3 U8_3} {@link Allocation allocations} into a 1D Hx1 31 * {@link ElementInfo#U8_3 U8_3} {@link Allocation allocation}. 53 // YUV_420_888 and U8_3 is the only supported format here 55 !inputInfo.isElementEqualTo(ElementInfo.U8_3)) { 68 } else if (mInputInfo.isElementEqualTo(ElementInfo.U8_3)) {
|
AllocationInfo.java | 290 U8_3, 309 } else if (element.equals(Element.U8_3(RenderScriptSingleton.getRS()))) { 310 return U8_3; 339 case U8_3: 340 comparison = Element.U8_3(mRS);
|
ScriptYuvCrop.java | 31 * a {@link ElementInfo#U8_3 U8_3} {@link Allocation allocation}. 72 * Output U8_3 CropW x CropH 74 return AllocationInfo.newInstance(Element.U8_3(getRS()), outputSize);
|
/frameworks/base/rs/java/android/renderscript/ |
ScriptIntrinsicHistogram.java | 36 * {@link Element#U8_4}, {@link Element#U8_3}, 46 (!e.isCompatible(Element.U8_3(rs))) && 96 !ain.getType().getElement().isCompatible(Element.U8_3(mRS)) && 194 !ain.getType().getElement().isCompatible(Element.U8_3(mRS)) &&
|
ScriptIntrinsicConvolve5x5.java | 33 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4}, 54 !e.isCompatible(Element.U8_3(rs)) &&
|
ScriptIntrinsicResize.java | 31 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4} 56 !e.isCompatible(Element.U8_3(mRS)) &&
|
ScriptIntrinsicConvolve3x3.java | 33 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4}, 53 !e.isCompatible(Element.U8_3(rs)) &&
|
ScriptIntrinsicColorMatrix.java | 36 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4}, 247 !ain.getElement().isCompatible(Element.U8_3(mRS)) && 259 !aout.getElement().isCompatible(Element.U8_3(mRS)) &&
|
Element.java | 756 public static Element U8_3(RenderScript rs) { [all...] |
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptIntrinsicHistogram.java | 40 * {@link Element#U8_4}, {@link Element#U8_3}, 50 (!e.isCompatible(Element.U8_3(rs))) && 106 !ain.getType().getElement().isCompatible(Element.U8_3(mRS)) && 204 !ain.getType().getElement().isCompatible(Element.U8_3(mRS)) &&
|
ScriptIntrinsicConvolve3x3.java | 37 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4}, 57 !e.isCompatible(Element.U8_3(rs)) &&
|
ScriptIntrinsicConvolve5x5.java | 37 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4}, 58 !e.isCompatible(Element.U8_3(rs)) &&
|
ScriptIntrinsicResize.java | 35 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4} 66 !e.isCompatible(Element.U8_3(mRS)) &&
|
ScriptIntrinsicColorMatrix.java | 227 !ain.getElement().isCompatible(Element.U8_3(mRS)) && 239 !aout.getElement().isCompatible(Element.U8_3(mRS)) &&
|
Element.java | 535 public static Element U8_3(RenderScript rs) { [all...] |
/cts/tests/tests/rscpp/librscpptest/ |
rs_jni_element.cpp | 132 passed &= (Element::U8_3(mRS) != nullptr); 191 // RGB_888 is in U8_3 199 sp<const Element> U8_3 = Element::RGB_888(mRS); 207 U16, U32, U64, U8, U8_3, U8_4 }; 268 eb->add(Element::U8_3(mRS), "U8_3", arraySize);
|
rs_jni_foreach.cpp | 69 t = Type::create(mRS, Element::U8_3(mRS), x, 0, 0);
|
rs_jni_allocation.cpp | 97 createTypedHelper(rs, Element::U8_3(rs));
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
ElementTest.java | 97 assertTrue(Element.U8_3(mRS) != null); 225 // RGB_888 is in U8_3 236 Element[] U8_3 = { Element.RGB_888(mRS), 254 U16, U32, U64, U8, U8_3, U8_4 }; 314 eb.add(Element.U8_3(mRS), "U8_3", arraySize); 384 assertFalse(Element.U8_3(mRS).isComplex());
|
IntrinsicHistogram.java | 32 case 3: e1 = Element.U8_3(mRS); break;
|
KernelInputTest.java | 407 Allocation ain = Allocation.createSized(mRS, Element.U8_3(mRS), 1); 408 Allocation tmp = Allocation.createSized(mRS, Element.U8_3(mRS), 1);
|
ForEachTest.java | 94 t = new Type.Builder(mRS, Element.U8_3(mRS)).setX(x).create();
|
KernelTest.java | 94 t = new Type.Builder(mRS, Element.U8_3(mRS)).setX(x).create();
|
/frameworks/rs/cpp/ |
ScriptIntrinsics.cpp | 259 !(in->getType()->getElement()->isCompatible(Element::U8_3(mRS))) && 271 !(out->getType()->getElement()->isCompatible(Element::U8_3(mRS))) && 341 !(e->isCompatible(Element::U8_3(rs))) && 382 !(e->isCompatible(Element::U8_3(rs))) && 593 !(ain->getType()->getElement()->isCompatible(Element::U8_3(mRS))) &&
|