Searched refs:output (Results 1 - 25 of 198) sorted by relevance

12345678

/frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
H A DMultipartTest.java60 StringBuffer output = new StringBuffer();
62 output.append("--");
63 output.append(boundry);
64 output.append(CRLF);
66 output.append("Content-Disposition: form-data; name=\"stringpart\"");
67 output.append(CRLF);
68 output.append("Content-Type: text/plain; charset=US-ASCII");
69 output.append(CRLF);
70 output.append("Content-Transfer-Encoding: 8bit");
71 output
[all...]
/frameworks/ex/common/tools/
H A Dmake-iana-tld-pattern.py42 output = ' ';
46 output += '+ "'
48 output += '"('
50 output += '+ "|'
53 output += '('
56 output += '?:'
61 output += '|'
65 output += '\\\\' # escape the '-' character.
66 output += letter
69 output
[all...]
/frameworks/native/libs/gui/
H A DLayerState.cpp25 status_t layer_state_t::write(Parcel& output) const
27 output.writeStrongBinder(surface);
28 output.writeInt32(what);
29 output.writeFloat(x);
30 output.writeFloat(y);
31 output.writeInt32(z);
32 output.writeInt32(w);
33 output.writeInt32(h);
34 output.writeInt32(layerStack);
35 output
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DColorSpace.java33 * YUV to RGB conversion is done using the ITU-R BT.601 transformation. The output buffer must
37 * @param output buffer to hold RGBA8888 data.
42 ByteBuffer input, ByteBuffer output, int width, int height) {
44 expectOutputSize(output, width * height * 4);
45 nativeYuv420pToRgba8888(input, output, width, height);
51 * The input data is expected to be encoded in 8-bit interleaved ARGB channels. The output
52 * buffer must be large enough to hold the data. The output buffer may be the same as the
56 * @param output buffer to hold RGBA8888 data.
61 ByteBuffer input, ByteBuffer output, int width, int height) {
63 expectOutputSize(output, widt
41 convertYuv420pToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
60 convertArgb8888ToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
79 convertRgba8888ToHsva8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
98 convertRgba8888ToYcbcra8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
113 expectOutputSize(ByteBuffer output, int expectedSize) argument
121 nativeYuv420pToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
124 nativeArgb8888ToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
127 nativeRgba8888ToHsva8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
130 nativeRgba8888ToYcbcra8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
[all...]
H A DPixelUtils.java28 * <p>The transformation is specified by specifying the initial offset in the output buffer, the
37 * @param output The output buffer to hold the transformed pixel data.
40 * @param offset The start offset in the output (in pixels)
45 ByteBuffer output,
51 if (input.remaining() != output.remaining()) {
52 throw new IllegalArgumentException("Input and output buffers must have the same size!");
55 } else if (output.remaining() % 4 != 0) {
60 } else if ((width * height * 4) != output.remaining()) {
64 nativeCopyPixels(input, output, widt
44 copyPixels(ByteBuffer input, ByteBuffer output, int width, int height, int offset, int pixStride, int rowStride) argument
67 nativeCopyPixels(ByteBuffer input, ByteBuffer output, int width, int height, int offset, int pixStride, int rowStride) argument
[all...]
/frameworks/base/core/java/android/util/
H A DBase64.java35 * of the output (if any).
40 * Encoder flag bit to omit all line terminators (i.e., the output
62 * should not close the output stream it is wrapping when it
72 public byte[] output; field in class:Base64.Coder
76 * Encode/decode another block of input data. this.output is
83 * include any final bytes in the output.
111 * @param flags controls certain features of the decoded output.
129 * @param flags controls certain features of the decoded output.
149 * @param flags controls certain features of the decoded output.
164 // Maybe we got lucky and allocated exactly enough output spac
241 Decoder(int flags, byte[] output) argument
581 Encoder(int flags, byte[] output) argument
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaPlayerStressTest.java69 //Test result output file
72 private void writeTestOutput(String filename, Writer output) throws Exception{ argument
73 output.write("File Name: " + filename);
74 output.write(" Complete: " + CodecTest.onCompleteSuccess);
75 output.write(" Error: " + CodecTest.mPlaybackError);
76 output.write(" Unknown Info: " + CodecTest.mMediaInfoUnknownCount);
77 output.write(" Track Lagging: " + CodecTest.mMediaInfoVideoTrackLaggingCount);
78 output.write(" Bad Interleaving: " + CodecTest.mMediaInfoBadInterleavingCount);
79 output.write(" Not Seekable: " + CodecTest.mMediaInfoNotSeekableCount);
80 output
84 writeTestSummary(Writer output) argument
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DProgram.java27 public abstract void process(Frame[] inputs, Frame output); argument
29 public void process(Frame input, Frame output) { argument
32 process(inputs, output);
/frameworks/base/media/mca/filterpacks/native/imageproc/
H A Dinvert.c22 char* output,
33 // Get the input and output pointers
35 char* output_ptr = output;
19 invert_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
H A Dto_rgba.c22 char* output,
33 // Get the input and output pointers
35 char* output_ptr = output;
53 char* output,
64 // Get the input and output pointers
66 char* output_ptr = output;
85 char* output,
96 // Get the input and output pointers
98 char* output_ptr = output;
117 char* output,
19 gray_to_rgb_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
50 rgba_to_rgb_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
82 gray_to_rgba_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
114 rgb_to_rgba_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
H A DStringSource.java51 Frame output = env.getFrameManager().newFrame(mOutputFormat);
52 output.setObjectValue(mString);
53 output.setTimestamp(Frame.TIMESTAMP_UNKNOWN);
54 pushOutput("string", output);
H A DToUpperCase.java51 Frame output = env.getFrameManager().newFrame(mOutputFormat);
52 output.setObjectValue(inputString.toUpperCase(Locale.getDefault()));
54 pushOutput("uppercase", output);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dcolorspace.h31 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
35 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
39 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
43 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height);
H A Dexposure.cpp36 int output = 0; local
44 output++;
47 return (static_cast<float>(output)) / numPixels;
58 int output = 0; local
66 output++;
69 return (static_cast<float>(output)) / numPixels;
H A Dpixelutils.h31 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height, jint offset,
H A Dpixelutils.cpp24 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height, jint offset,
27 uint32* pOutput = static_cast<uint32*>(env->GetDirectBufferAddress(output));
23 nativeCopyPixels( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height, jint offset, jint pixStride, jint rowStride) argument
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DFrameFetch.java53 Frame output = context.fetchFrame(mKey);
54 if (output != null) {
55 pushOutput("frame", output);
H A DInputStreamSource.java84 Frame output = context.getFrameManager().newFrame(mOutputFormat);
85 output.setData(byteBuffer);
87 // Push output
88 pushOutput("data", output);
91 output.release();
93 // Close output port as we are done here
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/numeric/
H A DSinWaveFilter.java58 Frame output = env.getFrameManager().newFrame(mOutputFormat);
59 output.setObjectValue(((float)Math.sin(mValue) + 1.0f) / 2.0f);
60 pushOutput("value", output);
62 output.release();
/frameworks/rs/scriptc/
H A Drs_core.rsh123 * Make a script to script call to launch work. One of the input or output is
124 * required to be a valid object. The input and output must be of the same
130 * @param output the allocation to write date into
141 rs_allocation output, const void * usrData,
148 rs_allocation output, const void * usrData);
152 * Make a script to script call to launch work. One of the input or output is
153 * required to be a valid object. The input and output must be of the same
159 * @param output the allocation to write date into
170 rsForEach(rs_script script, rs_allocation input, rs_allocation output,
176 rsForEach(rs_script script, rs_allocation input, rs_allocation output,
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DDrawOverlayFilter.java79 // Create output frame with copy of input
80 Frame output = env.getFrameManager().newFrame(sourceFrame.getFormat());
81 output.setDataFromFrame(sourceFrame);
83 // Draw onto output
84 mProgram.process(overlayFrame, output);
86 // Push output
87 pushOutput("image", output);
90 output.release();
H A DColorTemperatureFilter.java105 // Create output frame
106 Frame output = context.getFrameManager().newFrame(inputFormat);
109 mProgram.process(input, output);
111 // Push output
112 pushOutput("image", output);
115 output.release();
H A DCrossProcessFilter.java117 // Create output frame
118 Frame output = context.getFrameManager().newFrame(inputFormat);
121 mProgram.process(input, output);
123 // Push output
124 pushOutput("image", output);
127 output.release();
H A DNegativeFilter.java85 // Create output frame
86 Frame output = context.getFrameManager().newFrame(inputFormat);
94 mProgram.process(input, output);
96 // Push output
97 pushOutput("image", output);
100 output.release();
/frameworks/av/include/media/
H A DIAudioFlinger.h70 audio_io_handle_t output,
74 // output: server's description of IAudioTrack for display in logs.
94 virtual uint32_t sampleRate(audio_io_handle_t output) const = 0;
96 virtual int channelCount(audio_io_handle_t output) const = 0;
98 virtual audio_format_t format(audio_io_handle_t output) const = 0;
99 virtual size_t frameCount(audio_io_handle_t output) const = 0;
102 virtual uint32_t latency(audio_io_handle_t output) const = 0;
117 audio_io_handle_t output) = 0;
121 audio_io_handle_t output) const = 0;
136 // Register an object to receive audio input/output chang
[all...]

Completed in 703 milliseconds

12345678