HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 51 - 75 of 11134) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/tools/dmtracedump/
dmtracedump.pl 11 $output = "$input.html";
13 print("dmtracedump -h -p $input > $output\n");
14 system("dmtracedump -h -p '$input' > '$output'");
  /external/libchrome/crypto/
sha2.cc 16 void SHA256HashString(const base::StringPiece& str, void* output, size_t len) {
19 ctx->Finish(output, len);
23 std::string output(kSHA256Length, 0);
24 SHA256HashString(str, base::string_as_array(&output), output.size());
25 return output;
  /external/webrtc/webrtc/common_audio/signal_processing/
filter_ar_fast_q12.c 28 int32_t output = 0; local
35 output = coefficients[0] * data_in[i];
36 output -= sum;
38 // Saturate and store the output.
39 output = WEBRTC_SPL_SAT(134215679, output, -134217728);
40 data_out[i] = (int16_t)((output + 2048) >> 12);
  /external/javassist/src/main/javassist/bytecode/
ClassFileWriter.java 76 private ByteStream output; field in class:ClassFileWriter
89 output = new ByteStream(512);
90 output.writeInt(0xCAFEBABE); // magic
91 output.writeShort(minor);
92 output.writeShort(major);
93 constPool = new ConstPoolWriter(output);
130 output.writeShort(accessFlags);
131 output.writeShort(thisClass);
132 output.writeShort(superClass);
134 output.writeShort(0)
254 protected ByteStream output; field in class:ClassFileWriter.FieldWriter
312 protected ByteStream output; field in class:ClassFileWriter.MethodWriter
521 ByteStream output; field in class:ClassFileWriter.ConstPoolWriter
    [all...]
  /system/tpm/attestation/common/
print_common_proto.cc 89 std::string output = local
93 output += indent + " quote: ";
95 &output, "%s",
97 output += "\n";
100 output += indent + " quoted_data: ";
102 &output, "%s",
105 output += "\n";
108 output += indent + " quoted_pcr_value: ";
109 base::StringAppendF(&output, "%s",
113 output += "\n"
134 std::string output = local
186 std::string output = local
215 std::string output = local
    [all...]
  /cts/hostsidetests/security/src/android/security/cts/
Poc18_03.java 28 String output = AdbUtils.runPoc("CVE-2017-13253", getDevice()); local
29 assertNotMatchesMultiLine(".*OVERFLOW DETECTED.*",output);
  /device/linaro/bootloader/edk2/IntelFsp2Pkg/FspSecCore/Vtf0/
Build.py 29 output = os.path.join('Bin', 'ResetVec') variable
30 output += '.' + arch
32 output += '.' + debugType
33 output += '.raw'
38 '-o', output,
42 print '\tASM\t' + output
48 output,
50 print '\tFIXUP\t' + output
  /device/linaro/bootloader/edk2/IntelFspPkg/FspSecCore/Vtf0/
Build.py 29 output = os.path.join('Bin', 'ResetVec') variable
30 output += '.' + arch
32 output += '.' + debugType
33 output += '.raw'
38 '-o', output,
42 print '\tASM\t' + output
48 output,
50 print '\tFIXUP\t' + output
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/FspWrapperSecCore/Vtf0/
Build.py 29 output = os.path.join('Bin', 'ResetVec') variable
30 output += '.' + arch
32 output += '.' + debugType
33 output += '.raw'
38 '-o', output,
42 print '\tASM\t' + output
48 output,
50 print '\tFIXUP\t' + output
  /device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/
Build.py 29 output = os.path.join('Bin', 'ResetVector')
30 output += '.' + arch
32 output += '.' + debugType
33 output += '.raw'
38 '-o', output,
42 print '\tASM\t' + output
48 output,
50 print '\tFIXUP\t' + output
  /external/adhd/cras/src/dsp/
dsp_util.h 20 * output - Pointers to output buffers. There are "channels" output buffers.
24 void dsp_util_deinterleave(int16_t *input, float *const *output, int channels,
32 * output - The interleaved output buffer. Every "channels" samples is a
37 void dsp_util_interleave(float *const *input, int16_t *output, int channels,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
TeeInputStream.java 14 private final OutputStream output; field in class:TeeInputStream
20 * @param output output stream to copy any input read to.
22 public TeeInputStream(InputStream input, OutputStream output)
25 this.output = output;
41 output.write(buf, off, i);
54 output.write(i);
64 this.output.close();
69 return output;
    [all...]
  /external/libchrome/base/
base64.h 16 BASE_EXPORT void Base64Encode(const StringPiece& input, std::string* output);
19 // otherwise. The output string is only modified if successful. The decoding can
21 BASE_EXPORT bool Base64Decode(const StringPiece& input, std::string* output);
  /external/ppp/pppd/plugins/radius/
md5.c 6 void rc_md5_calc (unsigned char *output, unsigned char *input, unsigned int inlen)
12 MD5_Final (output, &context);
  /external/tensorflow/tensorflow/examples/android/jni/
rgb2yuv.h 26 uint8_t* const output, int width, int height);
28 void ConvertRGB565ToYUV420SP(const uint16_t* const input, uint8_t* const output,
  /external/vboot_reference/scripts/image_signing/
firmware_boot.sh 56 output=${base}-NN.fd
57 cp ${input} ${output}
58 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
59 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
62 output=${base}-DD.fd
63 cp ${input} ${output}
64 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
65 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
68 output=${base}-ND.fd
69 cp ${input} ${output}
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
swap_bytes.c 28 uint16_t* output /* (o) the swapped sequence */
32 *output++ = (*input >> 8)|(*input << 8);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptResultException.java 26 AaptResultException(int errorCode, String[] output) {
27 super(errorCode, output);
ProguardResultException.java 26 ProguardResultException(int errorCode, String[] output) {
27 super(errorCode, output);
  /system/tools/hidl/test/error_test/
hidl_error_test.sh 13 output=$($HIDL_GEN_PATH -L check -r test:$HIDL_ERROR_TEST_DIR test.$package@1.0 2>&1)
19 echo "$output" | while read line; do echo "test output: $line"; done
28 if [[ $output != *$error* ]]; then
29 echo "error: error output for $package does not contain '$error':"
30 echo "$output" | while read line; do echo "test output: $line"; done
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/aarch64/
diagnostic.d 3 #error-output: diagnostic.l
legacy_reg_names.d 2 #error-output: legacy_reg_names.l
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
armv8-a-bad.d 2 #error-output: armv8-a-bad.l
ldr-bad.d 2 # error-output: ldr-bad.l
ldsgeb.d 2 # error-output: ldsgeb.l

Completed in 959 milliseconds

1 23 4 5 6 7 8 91011>>