Searched refs:Element (Results 151 - 175 of 365) sorted by relevance

1234567891011>>

/frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_script_group2_float.java48 Allocation input = Allocation.createSized(pRS, Element.F32(pRS), ARRAY_SIZE);
60 Type.createX(pRS, Element.F64(pRS), ARRAY_SIZE),
69 Type.createX(pRS, Element.F64(pRS), ARRAY_SIZE),
/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
H A DViewfinderProcessor.java23 import android.renderscript.Element;
44 Type.Builder yuvTypeBuilder = new Type.Builder(rs, Element.YUV(rs));
52 Type.Builder rgbTypeBuilder = new Type.Builder(rs, Element.RGBA_8888(rs));
/frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/
H A DUT_alloc.java21 import android.renderscript.Element;
39 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
52 typeBuilder = new Type.Builder(RS, Element.I32(RS));
H A DUT_foreach_multi.java21 import android.renderscript.Element;
41 Type.Builder type32Builder = new Type.Builder(RS, Element.U32(RS));
42 Type.Builder type16Builder = new Type.Builder(RS, Element.U16(RS));
H A DUT_script_group2_float.java19 import android.renderscript.Element;
46 Allocation input = Allocation.createSized(pRS, Element.F32(pRS), ARRAY_SIZE);
56 final Type T = Type.createX(pRS, Element.F64(pRS), ARRAY_SIZE);
H A DUT_script_group2_gatherscatter.java19 import android.renderscript.Element;
68 Allocation input = Allocation.createSized(pRS, Element.I32_4(pRS), ARRAY_SIZE);
86 Type.createX(pRS, Element.I32_4(pRS), stride),
H A DUT_script_group2_nochain.java19 import android.renderscript.Element;
47 Allocation input = Allocation.createSized(pRS, Element.I32_4(pRS), ARRAY_SIZE);
54 Type T = Type.createX(pRS, Element.I32_4(pRS), ARRAY_SIZE);
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
H A DRsBrickedBitMask.java59 Type.Builder b = new Type.Builder(state.mRs, android.renderscript.Element.U32(state.mRs));
83 Type.Builder b = new Type.Builder(rs, android.renderscript.Element.U32(rs));
91 Type.Builder b = new Type.Builder(rs, android.renderscript.Element.U8(rs));
/frameworks/base/tools/aapt2/java/
H A DManifestClassGenerator.cpp66 xml::Element* el, ClassDefinition* class_def) {
90 xml::Element* el = xml::FindRootElement(res->root.get());
108 std::vector<xml::Element*> children = el->GetChildElements();
109 for (xml::Element* child_el : children) {
/frameworks/compile/slang/tests/P_reduce_general_examples_explicit/
H A DScriptC_reduce_general_examples_explicit.java.expect39 __I32 = Element.I32(rs);
40 __F32 = Element.F32(rs);
41 __U32 = Element.U32(rs);
42 __U8 = Element.U8(rs);
45 private Element __F32;
46 private Element __I32;
47 private Element __U32;
48 private Element __U8;
/frameworks/rs/driver/
H A DrsdShader.h27 class Element;
94 void initAddUserElement(const android::renderscript::Element *e,
126 void logUniform(const android::renderscript::Element *field,
129 const android::renderscript::Element *field,
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicYuvToRGB.java39 * Supported elements types are {@link Element#U8_4}
42 * @param e Element type for output
46 public static ScriptIntrinsicYuvToRGB create(RenderScript rs, Element e) {
61 * Set the input yuv allocation, must be {@link Element#U8}.
/frameworks/rs/tests/java_api/ComputePerf/src/com/example/android/rs/computeperf/
H A DMandelbrot.java31 Type.Builder tb = new Type.Builder(rs, Element.U8_4(rs));
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
H A DArtistic1.java33 ScriptIntrinsicBlur blur = ScriptIntrinsicBlur.create(mRS, Element.U8_4(mRS));
H A DMirror.java22 import android.renderscript.Element;
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A DArtistic1.java33 ScriptIntrinsicBlur blur = ScriptIntrinsicBlur.create(mRS, Element.U8_4(mRS));
/frameworks/rs/tests/lldb/cpp/InfiniteLoop/
H A DInfiniteLoop.cpp31 auto e = Element::RGBA_8888(rs);
/frameworks/rs/tests/lldb/cpp/MultipleRSFiles/
H A DMultipleRSFiles.cpp29 auto e = Element::RGBA_8888(rs);
/frameworks/rs/tests/lldb/cpp/WaitAttach/
H A DWaitAttach.cpp28 auto e = Element::RGBA_8888(rs);
/frameworks/rs/tests/lldb/jni/NoDebugWaitAttach/jninodebugwaitattach/
H A Djninodebugwaitattach.cpp37 auto e = Element::RGBA_8888(rs);
/frameworks/av/media/libstagefright/filters/
H A DIntrinsicBlurFilter.cpp54 RSC::sp<const RSC::Element> e = RSC::Element::U8_4(mRS);
H A DRSFilter.cpp63 RSC::sp<const RSC::Element> e = RSC::Element::U8_4(mRS);
H A DSaturationFilter.cpp54 RSC::sp<const RSC::Element> e = RSC::Element::U8_4(mRS);
/frameworks/base/rs/java/android/renderscript/
H A DProgramVertex.java23 * <li>Element describing its varying inputs or attributes</li>
33 * and texture coordinates are matched by name between the input Element and the Mesh object being drawn.
69 public Element getInput(int slot) {
105 public Builder addInput(Element e) throws IllegalStateException {
H A DScriptIntrinsicLUT.java23 * range of {@link Element#U8_4}.
33 mTables = Allocation.createSized(rs, Element.U8(rs), 1024);
44 * Supported elements types are {@link Element#U8_4}
49 * @param e Element type for intputs and outputs
53 public static ScriptIntrinsicLUT create(RenderScript rs, Element e) {

Completed in 407 milliseconds

1234567891011>>