Searched refs:output (Results 151 - 175 of 310) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyVersionedTestApp_v1/
H A DAndroid.mk35 LOCAL_JACK_FLAGS := -D jack.dex.output.policy=minimal-multidex -D jack.preprocessor=true\
36 -D jack.preprocessor.file=$(LOCAL_PATH)/test.jpp -D jack.dex.output.multidex.legacy=true
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyVersionedTestApp_v2/
H A DAndroid.mk35 LOCAL_JACK_FLAGS := -D jack.dex.output.policy=minimal-multidex -D jack.preprocessor=true\
36 -D jack.preprocessor.file=$(LOCAL_PATH)/test.jpp -D jack.dex.output.multidex.legacy=true
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyVersionedTestApp_v3/
H A DAndroid.mk35 LOCAL_JACK_FLAGS := -D jack.dex.output.policy=minimal-multidex -D jack.preprocessor=true\
36 -D jack.preprocessor.file=$(LOCAL_PATH)/test.jpp -D jack.dex.output.multidex.legacy=true
/frameworks/base/media/mca/filterfw/native/core/
H A Dnative_program.h58 char* output,
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DAutoFixFilter.java255 // Create output frame
256 Frame output = context.getFrameManager().newFrame(inputFormat);
260 mShaderProgram.process(inputs, output);
262 // Push output
263 pushOutput("image", output);
266 output.release();
/frameworks/compile/libbcc/lib/Support/
H A DDisassembler.cpp189 // Check the state of the specified output file.
194 // Open the output file decorated in llvm::raw_ostream.
195 llvm::raw_ostream *output = pOutput.dup(); local
196 if (output == nullptr) {
202 Disassemble(*output, pTriple, pFuncName, pFunc, FuncSize);
204 // Close the output before return.
205 delete output;
/frameworks/minikin/libs/minikin/
H A Dunicode_emoji_h_gen.py48 parser.add_option('-o', '--output', type='str', action='store',
49 help='path to output UnicodeEmoji.h')
103 with open(opts.output, 'w') as header_file:
/frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
H A DRegion.java168 public void heal(ScriptC_healing healing, RenderScript rs, Bitmap image, Bitmap output) { argument
174 h.heal(healing, rs, image, output);
178 public void undo(Bitmap output) { argument
179 Canvas c = new Canvas(output);
/frameworks/av/media/img_utils/src/
H A DTiffIfd.cpp365 String8 output; local
366 output.appendFormat("[ifd: %x, num_entries: %zu, entries:\n", getId(), s);
368 output.append("\t");
369 output.append(mEntries[i]->toString());
370 output.append("\n");
372 output.append(", next_ifd: %x]", ((mNextIfd != NULL) ? mNextIfd->getId() : 0));
373 return output;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastcodemb.cpp53 Short *output, *dataBlock; local
86 output = video->outputMB->block[0];
89 // M4VENC_MEMSET(output,0,(sizeof(Short)<<6)*6); /* reset quantized coeff. to zero , 7/24/01*/
205 CBP |= (*BlockQuantDequantH263DC)(dataBlock, output, &QuantParam,
233 CBP |= (*BlockQuantDequantH263)(dataBlock, output, &QuantParam,
237 output += 64;
282 Short *output, *dataBlock; local
317 output = video->outputMB->block[0];
320 // M4VENC_MEMSET(output,0,(sizeof(Short)<<6)*6); /* reset quantized coeff. to zero , 7/24/01*/
425 CBP |= (*BlockQuantDequantMPEGDC)(dataBlock, output, Q
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DCameraSource.java63 * before providing output. If set to false, the filter will keep
196 Frame output = context.getFrameManager().newFrame(mOutputFormat);
197 mFrameExtractor.process(mCameraFrame, output);
201 output.setTimestamp(timestamp);
203 pushOutput("video", output);
206 output.release();
/frameworks/rs/api/
H A Drs_for_each.spec100 arg: rs_allocation output, "Allocation to write date into."
106 @rs_kernel argument. If the specified kernel returns a value, an output allocation
108 and the output allocation if it exists, must have the same dimensions.
113 to the output allocation.
139 arg: rs_allocation output
149 arg: rs_allocation output
161 arg: rs_allocation output
172 arg: rs_allocation output
183 arg: ..., "Input and output allocations"
195 arg: ..., "Input and output allocation
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java250 public void process(FrameImage2D input, FrameImage2D output) { argument
252 RenderTarget renderTarget = output.lockRenderTarget();
255 output.getWidth(),
256 output.getHeight());
258 output.unlock();
261 public void processMulti(FrameImage2D[] inputs, FrameImage2D output) { argument
266 RenderTarget renderTarget = output.lockRenderTarget();
269 output.getWidth(),
270 output.getHeight());
274 output
291 processNoInput(FrameImage2D output) argument
[all...]
/frameworks/native/libs/gui/
H A DIGraphicBufferProducer.cpp199 const QueueBufferInput& input, QueueBufferOutput* output) {
208 memcpy(output, reply.readInplace(sizeof(*output)), sizeof(*output));
240 int api, bool producerControlledByApp, QueueBufferOutput* output) {
255 memcpy(output, reply.readInplace(sizeof(*output)), sizeof(*output));
538 QueueBufferOutput* const output = local
541 memset(output,
198 queueBuffer(int buf, const QueueBufferInput& input, QueueBufferOutput* output) argument
239 connect(const sp<IProducerListener>& listener, int api, bool producerControlledByApp, QueueBufferOutput* output) argument
572 QueueBufferOutput* const output = local
[all...]
/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java663 int output = 0;
666 output |= CONFIG_NATIVE_BITS[i];
669 return output;
678 int output = 0;
681 output |= (1 << i);
684 return output;
/frameworks/ex/framesequence/jni/
H A DFrameSequence_webp.cpp181 mDecoderConfig.output.is_external_memory = 1;
182 mDecoderConfig.output.colorspace = MODE_rgbA; // Pre-multiplied alpha mode.
225 mDecoderConfig.output.u.RGBA.rgba = (uint8_t*)dst;
226 mDecoderConfig.output.u.RGBA.stride = currStride * 4;
227 mDecoderConfig.output.u.RGBA.size = mDecoderConfig.output.u.RGBA.stride * currIter.height;
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp581 audio_io_handle_t output,
640 PlaybackThread *thread = checkPlaybackThread_l(output);
642 ALOGE("no playback thread found for output handle %d", output);
658 // output thread and move it here.
661 if (mPlaybackThreads.keyAt(i) != output) {
683 // move effect chain to this output thread if an effect on same session was waiting
742 audio_format_t AudioFlinger::format(audio_io_handle_t output) const
745 PlaybackThread *thread = checkPlaybackThread_l(output);
747 ALOGW("format() unknown thread %d", output);
573 createTrack( audio_stream_type_t streamType, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t *frameCount, IAudioFlinger::track_flags_t *flags, const sp<IMemory>& sharedBuffer, audio_io_handle_t output, pid_t pid, pid_t tid, audio_session_t *sessionId, int clientUid, status_t *status) argument
988 setStreamVolume(audio_stream_type_t stream, float value, audio_io_handle_t output) argument
1814 openOutput_l(audio_module_handle_t module, audio_io_handle_t *output, audio_config_t *config, audio_devices_t devices, const String8& address, audio_output_flags_t flags) argument
1891 openOutput(audio_module_handle_t module, audio_io_handle_t *output, audio_config_t *config, audio_devices_t *devices, const String8& address, uint32_t *latencyMs, audio_output_flags_t flags) argument
1958 closeOutput(audio_io_handle_t output) argument
1963 closeOutput_nonvirtual(audio_io_handle_t output) argument
2034 suspendOutput(audio_io_handle_t output) argument
2049 restoreOutput(audio_io_handle_t output) argument
2512 AudioStreamOut *output = thread->getOutput(); local
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
H A DFwdLockEngine.h288 * the output converted data and offset. In this case the
518 FwdLockConv_Output_t output; member in class:android::FwdLockEngine::ConvertSession
522 memset(&output, 0, sizeof(FwdLockConv_Output_t));
/frameworks/av/include/ndk/
H A DNdkMediaDrm.h407 * by cipherAlgorithm, and write the encrypted result into output. The caller must
408 * ensure that the output buffer is large enough to accept dataSize bytes. The key
414 const uint8_t *input, uint8_t *output, size_t dataSize);
418 * by cipherAlgorithm, and write the decrypted result into output. The caller must
419 * ensure that the output buffer is large enough to accept dataSize bytes. The key
425 const uint8_t *input, uint8_t *output, size_t dataSize);
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.h35 // This class will manage all effects attached to input and output streams in
68 // Return a list of effect descriptors for default output effects
74 // Add all output effects associated to this output
76 status_t addOutputSessionEffects(audio_io_handle_t output,
80 // release all output effects associated with this output stream and audiosession
81 status_t releaseOutputSessionEffects(audio_io_handle_t output,
188 // Automatic output effects are organized per audio_stream_type_t
190 // Automatic output effect
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsoluteLayout.java220 public String debug(String output) { argument
221 return output + "Absolute.LayoutParams={width="
/frameworks/base/core/tests/coretests/src/android/util/
H A DBase64Test.java243 byte[] output = new byte[100];
246 output);
249 assertEquals("YWJj".getBytes(), 4, encoder.output, encoder.op);
253 assertEquals("YWJj".getBytes(), 4, encoder.output, encoder.op);
265 assertEquals("YWFh".getBytes(), 4, encoder.output, encoder.op);
273 assertEquals("YWJh".getBytes(), 4, encoder.output, encoder.op);
277 assertEquals("YmFi".getBytes(), 4, encoder.output, encoder.op);
281 assertEquals("YQ".getBytes(), 2, encoder.output, encoder.op);
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmGeneratorTest.java244 Map<String, ClassReader> output = new TreeMap<>();
246 parseZip(mOsDestJar, output, filesFound);
248 for (ClassReader cr: output.values()) {
332 Map<String, ClassReader> output = new TreeMap<>();
334 parseZip(mOsDestJar, output, filesFound);
335 for (String s : output.keySet()) {
415 Map<String, ClassReader> output = new TreeMap<>();
417 parseZip(mOsDestJar, output, filesFound);
/frameworks/data-binding/compilerCommon/
H A Dbuild.gradle62 def buildVersionFile = new File(sourceSets.main.output.resourcesDir,"data_binding_version_info.properties")
63 // Using Java Properties appends date to the output which is bad for incremental compilation.
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DVirtualDisplaySurface.h39 * case, the GLES driver works directly with the output buffer queue, and
45 * we must provide a FB target buffer and output buffer for the HWC set() call.
51 * target and output buffer for HWC, though on these frames the HWC doesn't
52 * do any work for this display and doesn't write to the output buffer. After
56 * the sink and passes it to HWC as both the FB target buffer and output
58 * write to the output buffer. After composition is complete, the buffer is
68 * the HWC output buffer. When HWC composition is complete, the scratch buffer
69 * is released and the output buffer is queued to the sink.
113 const QueueBufferInput& input, QueueBufferOutput* output);
117 int api, bool producerControlledByApp, QueueBufferOutput* output);
[all...]

Completed in 713 milliseconds

1234567891011>>