Searched refs:output (Results 76 - 100 of 310) sorted by relevance

1234567891011>>

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DFillLightFilter.java99 // Create output frame
100 Frame output = context.getFrameManager().newFrame(inputFormat);
109 mProgram.process(input, output);
111 // Push output
112 pushOutput("image", output);
115 output.release();
H A DFisheyeFilter.java106 // Create output frame
107 Frame output = context.getFrameManager().newFrame(inputFormat);
120 mProgram.process(input, output);
122 // Push output
123 pushOutput("image", output);
126 output.release();
H A DFixedRotationFilter.java96 // Create output frame
97 Frame output = context.getFrameManager().newFrame(outputFormat);
103 mProgram.process(input, output);
105 // Push output
106 pushOutput("image", output);
109 output.release();
H A DImageCombineFilter.java90 // Create output frame
91 Frame output = context.getFrameManager().newFrame(inputs[0].getFormat());
97 mProgram.process(inputs, output);
99 // Push output
100 pushOutput(mOutputName, output);
103 output.release();
H A DImageSlicer.java75 // calculate the output size based on input size, xSlices, and ySlices
100 // Create output frame
101 Frame output = context.getFrameManager().newFrame(outputFormat);
121 mProgram.process(mOriginalFrame, output);
134 // Push output
135 pushOutput("image", output);
138 output.release();
H A DLomoishFilter.java193 // Create output frame
194 Frame output = context.getFrameManager().newFrame(inputFormat);
197 mProgram.process(input, output);
199 // Push output
200 pushOutput("image", output);
203 output.release();
H A DSharpenFilter.java104 // Create output frame
105 Frame output = context.getFrameManager().newFrame(inputFormat);
118 mProgram.process(input, output);
120 // Push output
121 pushOutput("image", output);
124 output.release();
H A DToPackedGrayFilter.java77 throw new RuntimeException("Invalid output dimensions: " +
95 // final output size
132 Frame output = context.getFrameManager().newFrame(outputFormat);
133 output.setDataFromFrame(temp);
136 // Push output and yield ownership.
137 pushOutput("image", output);
138 output.release();
H A DVignetteFilter.java143 // Create output frame
144 Frame output = context.getFrameManager().newFrame(inputFormat);
147 mProgram.process(input, output);
149 // Push output
150 pushOutput("image", output);
153 output.release();
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DPairedTask.java34 * @template Output output type
52 abstract void finish(Output output); argument
/frameworks/rs/tests/cppbasic-getpointer/
H A Dcompute.cpp45 uint32_t *output = (uint32_t*)aout->getPointer(&outputStride); local
49 printf("Output pointer: %p\n", output);
58 output[i * inputStride + j] = 0;
78 if (input[i * inputStride + j] != ~(output[i * inputStride + j])) {
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyClientImplLegacy.cpp91 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE; local
92 status_t status = af->openOutput(module, &output, &config, pDevices,
102 return output;
144 int aps_close_output(void *service __unused, audio_io_handle_t output) argument
151 return af->closeOutput(output);
154 int aps_suspend_output(void *service __unused, audio_io_handle_t output) argument
162 return af->suspendOutput(output);
165 int aps_restore_output(void *service __unused, audio_io_handle_t output) argument
173 return af->restoreOutput(output);
284 float volume, audio_io_handle_t output,
283 aps_set_stream_volume(void *service, audio_stream_type_t stream, float volume, audio_io_handle_t output, int delay_ms) argument
[all...]
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffHelpers.h36 #define ZERO_TILL_WORD(output, index, ret) \
40 BAIL_ON_FAIL((output)->write(ZERO_WORD, 0, remaining), ret); \
/frameworks/base/media/mca/filterpacks/native/imageproc/
H A Dbrightness.c52 char* output,
63 LOGE("Brightness: Input-output sizes do not match up. %d vs. %d!", input_sizes[0], output_size);
67 // Get the input and output pointers
69 int* output_ptr = (int*)output;
72 LOGE("Brightness: No input or output pointer found!");
49 brightness_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
H A Dcontrast.c47 char* output,
58 LOGE("Contrast: Input-output sizes do not match up. %d vs. %d!", input_sizes[0], output_size);
62 // Get the input and output pointers
64 char* output_ptr = output;
66 LOGE("Contrast: No input or output pointer found!");
44 contrast_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dcolorspace.cpp57 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
59 Rgba* const pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output));
96 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
98 Rgba* pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output));
111 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
113 Rgba* pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output));
154 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
156 Rgba* pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output));
56 nativeYuv420pToRgba8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
95 nativeArgb8888ToRgba8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
110 nativeRgba8888ToHsva8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
153 nativeRgba8888ToYcbcra8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
/frameworks/rs/
H A Drun_rs_cts.sh12 $CTS_TRADEFED run commandAndExit cts --output-file-path $TMP_PATH -p android.renderscript
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureSource.java72 /** The width of the output image frame. If the texture width for the
77 /** The height of the output image frame. If the texture height for the
83 * SurfaceTexture, or whether it will output an old frame again if a new
102 // Variables for input->output conversion
118 // Shader for output
164 // Prepare output
215 // Next, render to output
216 Frame output = context.getFrameManager().newFrame(mOutputFormat);
217 mFrameExtractor.process(mMediaFrame, output);
219 output
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DCameraTestResultPrinter.java81 Bundle output = new Bundle();
82 output.putString(KEY_NUM_ATTEMPTS, String.valueOf(numAttempts));
83 output.putString(KEY_ITERATION, String.valueOf(iteration));
85 output.putString(KEY_CAMERA_ID, cameraId);
87 mInst.sendStatus(INST_STATUS_IN_PROGRESS, output);
91 // Format output in a form of pairs of key and value
/frameworks/base/tools/obbtool/
H A Dmkobb.sh94 unset output
102 output="${output}${c}"
105 eval $outvar="$output"
106 unset output
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
H A DImageUtils.java182 File output = new File(getTempDir(), "delta-" + imageName);
183 if (output.exists()) {
184 boolean deleted = output.delete();
187 ImageIO.write(deltaImage, "PNG", output);
188 error += " - see details in " + output.getPath() + "\n";
322 File output = new File(getTempDir(), getName(relativePath));
323 if (output.exists()) {
324 boolean deleted = output.delete();
327 ImageIO.write(image, "PNG", output);
328 initialMessage += "Thumbnail for current rendering stored at " + output
[all...]
/frameworks/native/libs/gui/tests/
H A DBufferQueue_test.cpp129 IGraphicBufferProducer::QueueBufferOutput output; local
131 mProducer->connect(NULL, NATIVE_WINDOW_API_CPU, false, &output));
150 ASSERT_EQ(OK, mProducer->queueBuffer(slot, input, &output));
315 IGraphicBufferProducer::QueueBufferOutput output; local
317 NATIVE_WINDOW_API_CPU, false, &output));
353 ASSERT_EQ(OK, mProducer->queueBuffer(newSlot, input, &output));
369 IGraphicBufferProducer::QueueBufferOutput output; local
371 NATIVE_WINDOW_API_CPU, false, &output));
383 ASSERT_EQ(OK, mProducer->queueBuffer(slot, input, &output));
428 IGraphicBufferProducer::QueueBufferOutput output; local
471 IGraphicBufferProducer::QueueBufferOutput output; local
507 IGraphicBufferProducer::QueueBufferOutput output; local
549 IGraphicBufferProducer::QueueBufferOutput output; local
599 IGraphicBufferProducer::QueueBufferOutput output; local
668 IGraphicBufferProducer::QueueBufferOutput output; local
719 IGraphicBufferProducer::QueueBufferOutput output; local
781 IGraphicBufferProducer::QueueBufferOutput output; local
803 IGraphicBufferProducer::QueueBufferOutput output; local
[all...]
/frameworks/rs/scriptc/
H A Drs_for_each.rsh107 * rs_kernel argument. If the specified kernel returns a value, an output allocation
109 * and the output allocation if it exists, must have the same dimensions.
114 * to the output allocation.
136 * output: Allocation to write date into.
141 * ...: Input and output allocations
145 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData,
151 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData);
156 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData,
162 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData,
168 rsForEach(rs_script script, rs_allocation input, rs_allocation output);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/
H A DEventBus.java663 StringBuilder output = new StringBuilder();
664 output.append(prefix);
665 output.append("Registered class types:");
666 output.append("\n");
676 output.append(innerPrefix);
677 output.append(clz.getSimpleName());
678 output.append("\n");
680 output.append(prefix);
681 output.append("Event map:");
682 output
[all...]
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreSignatureSpiBase.java269 byte[] output;
271 output = mMessageStreamer.update(b, off, len);
276 if (output.length != 0) {
278 "Update operation unexpectedly produced output: " + output.length + " bytes");
354 byte[] output = mMessageStreamer.doFinal(
359 if (output.length != 0) {
361 "Signature verification unexpected produced output: " + output.length

Completed in 1692 milliseconds

1234567891011>>