Searched refs:input (Results 126 - 150 of 444) sorted by relevance

1234567891011>>

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DBlackWhiteFilter.java137 // Get input frame
138 Frame input = pullInput("image");
139 FrameFormat inputFormat = input.getFormat();
150 mProgram.process(input, output);
H A DCropRectFilter.java89 // Get input frame
90 Frame input = pullInput("image");
91 FrameFormat inputFormat = input.getFormat();
110 mProgram.process(input, output);
H A DDocumentaryFilter.java113 // Get input frame
114 Frame input = pullInput("image");
115 FrameFormat inputFormat = input.getFormat();
133 mProgram.process(input, output);
H A DDuotoneFilter.java88 // Get input frame
89 Frame input = pullInput("image");
90 FrameFormat inputFormat = input.getFormat();
102 mProgram.process(input, output);
H A DFillLightFilter.java95 // Get input frame
96 Frame input = pullInput("image");
97 FrameFormat inputFormat = input.getFormat();
109 mProgram.process(input, output);
H A DFisheyeFilter.java102 // Get input frame
103 Frame input = pullInput("image");
104 FrameFormat inputFormat = input.getFormat();
120 mProgram.process(input, output);
H A DImageStitcher.java89 // Get input frame
90 Frame input = pullInput("image");
91 FrameFormat format = input.getFormat();
99 // CHECK input format here
119 // We need to set the source rect as well because the input are padded images.
130 mProgram.process(input, mOutputFrame);
H A DLomoishFilter.java177 // Get input frame
178 Frame input = pullInput("image");
179 FrameFormat inputFormat = input.getFormat();
197 mProgram.process(input, output);
H A DSharpenFilter.java100 // Get input frame
101 Frame input = pullInput("image");
102 FrameFormat inputFormat = input.getFormat();
118 mProgram.process(input, output);
H A DToPackedGrayFilter.java117 Frame input = pullInput("image");
118 FrameFormat inputFormat = input.getFormat();
129 mProgram.process(input, temp);
H A DVignetteFilter.java127 // Get input frame
128 Frame input = pullInput("image");
129 FrameFormat inputFormat = input.getFormat();
147 mProgram.process(input, output);
/frameworks/base/services/core/java/com/android/server/pm/
H A DProcessLoggingHandler.java103 FileInputStream input = new FileInputStream(new File(packageArchiveLocation));
106 while ((size = input.read(buffer)) > 0) {
109 input.close();
/frameworks/native/include/private/gui/
H A DLayerState.h74 status_t read(const Parcel& input);
108 status_t read(const Parcel& input);
140 status_t read(const Parcel& input);
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_script_group2_float.java48 Allocation input = Allocation.createSized(pRS, Element.F32(pRS), ARRAY_SIZE);
49 input.copyFrom(array);
78 ((Allocation)group.execute(input)[0]).copyTo(a);
H A DUT_script_group2_gatherscatter.java53 // The test sums up all elements in the input int4 array of size ARRAY_SIZE.
59 // same kernel function, with the input of one kernel being the output of
72 Allocation input = Allocation.createSized(pRS, Element.I32_4(pRS), ARRAY_SIZE);
73 input.copyFrom(mArray);
103 ((Allocation)group.execute(input)[0]).copyTo(a);
H A DUT_script_group2_nochain.java51 Allocation input = Allocation.createSized(pRS, Element.I32_4(pRS), ARRAY_SIZE);
52 input.copyFrom(array);
68 //input,
70 //new ScriptGroup.Binding(s_inc2.getFieldID_a(), input));
80 ((Allocation)group.execute(input)[0]).copyTo(a);
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUT_script_group2_float.java48 Allocation input = Allocation.createSized(pRS, Element.F32(pRS), ARRAY_SIZE);
49 input.copyFrom(array);
78 ((Allocation)group.execute(input)[0]).copyTo(a);
H A DUT_script_group2_gatherscatter.java51 // The test sums up all elements in the input int4 array of size ARRAY_SIZE.
57 // same kernel function, with the input of one kernel being the output of
70 Allocation input = Allocation.createSized(pRS, Element.I32_4(pRS), ARRAY_SIZE);
71 input.copyFrom(mArray);
101 ((Allocation)group.execute(input)[0]).copyTo(a);
H A DUT_script_group2_nochain.java49 Allocation input = Allocation.createSized(pRS, Element.I32_4(pRS), ARRAY_SIZE);
50 input.copyFrom(array);
75 ((Allocation)group.execute(input)[0]).copyTo(a);
H A DUT_reduce.java55 for (Allocation input : myInputs)
56 inputBytes += input.getBytesSize();
148 private long[] intArrayToLong(final int[] input) { argument
149 final long[] output = new long[input.length];
151 for (int i = 0; i < input.length; ++i)
152 output[i] = input[i];
242 private int addint(int[] input) { argument
244 for (int idx = 0; idx < input.length; ++idx)
245 rslt += input[idx];
250 final int[] input
384 sillySumIntoDecArray(final int[] input) argument
392 sillySumIntoIncArray(final int[] input) argument
423 findMinAndMax(float[] input) argument
509 run(Allocation input) argument
556 fz(final int[] input) argument
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/tests/
H A DJsonWebKeyUnittest.cpp41 void stringFromVector(const Vector<uint8_t>& input, argument
44 if (input.isEmpty()) {
48 for (size_t i = 0; i < input.size(); ++i) {
49 converted->appendFormat("%c", input.itemAt(i));
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreECDSASignatureSpi.java54 * Streamer which buffers all input, then truncates it to field size, and then sends it into
73 public byte[] update(byte[] input, int inputOffset, int inputLength) argument
76 mInputBuffer.write(input, inputOffset, inputLength);
83 public byte[] doFinal(byte[] input, int inputOffset, int inputLength, byte[] signature, argument
87 mInputBuffer.write(input, inputOffset, inputLength);
92 // Truncate input at field size (bytes)
H A DAndroidKeyStoreHmacSpi.java203 protected void engineUpdate(byte input) { argument
204 engineUpdate(new byte[] {input}, 0, 1);
208 protected void engineUpdate(byte[] input, int offset, int len) { argument
217 output = mChunkedStreamer.update(input, offset, len);
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.h99 status_t getFormat(JNIEnv *env, bool input, jobject *format) const;
104 JNIEnv *env, bool input, jobjectArray *bufArray) const;
107 JNIEnv *env, bool input, size_t index, jobject *buf) const;
110 JNIEnv *env, bool input, size_t index, jobject *image) const;
/frameworks/base/tools/aapt2/dump/
H A DDump.cpp105 CompiledFileInputStream input(fileMap->getDataPtr(), fileMap->getDataLength());
106 if (const pb::CompiledFile* pbFile = input.CompiledFile()) {
107 dumpCompiledFile(*pbFile, input.data(), input.size(), Source(filePath), context);

Completed in 751 milliseconds

1234567891011>>