Searched refs:output (Results 26 - 50 of 393) sorted by last modified time

1234567891011>>

/frameworks/rs/tests/lldb/jni/MultipleRSFiles/jnimultiplersfiles/
H A Djnimultiplersfiles.cpp52 uint32_t * output = new uint32_t[size*size]; local
53 b->copy2DRangeTo(0, 0, size, size, output);
54 delete [] output;
/frameworks/rs/tests/lldb/jni/NoDebugWaitAttach/jninodebugwaitattach/
H A Djninodebugwaitattach.cpp49 uint32_t * output = new uint32_t[size*size]; local
50 b->copy2DRangeTo(0, 0, size, size, output);
51 delete [] output;
/frameworks/rs/tests/lldb/
H A Drun_tests.py375 raise TestSuiteException('The emulator terminated with output:'
443 output = android.adb('push {0} {1}'.format(state.lldb_server_path_host,
446 if 'failed to copy' in output or 'No such file or directory' in output:
449 .format(output))
451 output = android.shell('chmod a+x {0}'
454 if 'No such file or directory' in output:
/frameworks/rs/tests/lldb/tests/harness/
H A Dtest_base.py156 '''Run an lldb command and return the output.
185 output = res.GetOutput() or ''
186 log.debug('[Output] {0}'.format(output.rstrip()))
188 return output
196 output.
198 match lldb's output.
202 output.
205 str: raw lldb command output.
210 output = ''
212 output
[all...]
H A Dutil_android.py81 specified timeout, a string which is the output (standard out and
95 return_code, output = UtilAndroid._execute_command_local(cmd, async)
103 return_code, output = UtilAndroid._execute_command_remote(cmd,
109 # log the output message
110 if output is not None:
111 self._adb_log_output(cmd, output, return_code)
113 return output
120 returns its output. Otherwise it aborts the execution of the adb
140 specified timeout, a string which is the output (standard out and
146 output
[all...]
H A Dutil_bundle.py113 output = self._android.adb_retry('uninstall ' + package,
116 if output is None:
119 elif 'Success' not in output:
120 outmsg = '\n' + output.rstrip() if output else '<empty>'
122 'output: %s', outmsg)
127 if 'Success' not in output:
137 output = self._android.adb('uninstall ' + package)
139 if 'Success' not in output:
149 output
[all...]
/frameworks/rs/tests/lldb/tests/testcases/
H A Dreduce_common.py50 output = self.try_command(
58 for line in output.splitlines():
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicBLAS.cpp466 // following calls have init reordered because A is output matrix
511 // following calls have init reordered because A is output matrix
843 * Calculations are done in 1.10.21 fixed-point format for the final output,
844 * just before there's a shift down to drop the fractional parts. The output
863 int32_t output = local
866 if (output > 255) {
867 output = 255;
869 if (output < 0) {
870 output = 0;
872 c[c_index] = (uint8_t)(output);
[all...]
H A DrsCpuIntrinsics_neon_Convolve.S276 vst1.8 d8, [r0]! @ return the output and increase the address of r0
/frameworks/rs/
H A DrsScriptGroup.cpp45 for (auto output : mOutputs) {
46 output->mAlloc.clear();
291 rsc->setError(RS_ERROR_BAD_VALUE, "ScriptGroup missing output.");
H A Drun_rs_cts.sh12 $CTS_TRADEFED run commandAndExit cts --output-file-path $TMP_PATH -p android.renderscript
/frameworks/rs/rsov/compiler/spirit/
H A Dtransformer.cpp54 auto output = mStream->getWords(); local
56 output.insert(output.end(), functions.begin(), functions.end());
62 return output;
/frameworks/rs/rsov/driver/
H A DrsovScript.h116 RSoVAllocation *output);
/frameworks/rs/script_api/include/
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/rs/script_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/rs/support/java/src/android/support/v8/renderscript/
H A DScriptGroup.java325 * A future represents an output of a closure, either the return value of
459 Object output = f.getValue();
460 if (output instanceof Input) {
461 output = ((Input)output).get();
463 outputObjs[i++] = output;
494 * Sets an output of the ScriptGroup. This specifies an
495 * Allocation to be used for the kernels that require an output
600 * Kernel to kernel allows a kernel's output to be passed to
601 * another kernel as input. Kernel to field allows the output o
[all...]
/frameworks/rs/tests/cpp_api/cppbasic-getpointer/
H A Dcompute.cpp42 uint32_t *output = (uint32_t*)aout->getPointer(&outputStride); local
46 printf("Output pointer: %p\n", output);
55 output[i * inputStride + j] = 0;
75 if (input[i * inputStride + j] != ~(output[i * inputStride + j])) {
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
H A DViewfinderProcessor.java115 public void setOutputSurface(Surface output) { argument
116 mOutputAllocation.setSurface(output);
139 * Class to process buffer from camera and output to buffer to screen
/frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
H A DHealing.java76 public void heal(ScriptC_healing healing, RenderScript rs, Bitmap image, Bitmap output) { argument
137 undoCanvas.drawBitmap(output, mRoiBounds, undoRect, null);
139 Canvas c = new Canvas(output);
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/opt/telephony/src/java/com/android/internal/telephony/
H A DInboundSmsHandler.java829 ByteArrayOutputStream output = new ByteArrayOutputStream();
841 output.write(pdu, 0, pdu.length);
843 int result = mWapPush.dispatchWapPdu(output.toByteArray(), resultReceiver, this);
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp106 bool mix(int32_t *output, int head, int tail, int sampleRate);
236 bool AudioStream::mix(int32_t *output, int head, int tail, int sampleRate) argument
257 output[i - head] += mBuffer[i & mBufferMask];
793 size_t output = 0; local
795 if (AudioTrack::getMinFrameCount(&output, AUDIO_STREAM_VOICE_CALL,
796 sampleRate) != NO_ERROR || output <= 0 ||
802 ALOGD("reported frame count: output %zu, input %zu", output, input);
804 if (output < sampleCount * 2) {
805 output
875 int16_t output[sampleCount]; local
[all...]
/frameworks/opt/net/wifi/tests/wifitests/
H A Druntests.sh15 Run just the specified test, and show the raw output.

Completed in 602 milliseconds

1234567891011>>