HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 26 - 50 of 8267) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
UTF16BECharsetTest.java 39 byte[] output = new byte[] { 0, 97, 0, 98, 93, 20, 101, 79 };
40 internalTestEncode(input, output);
50 char[] output = "ab\u5D14\u654F".toCharArray(); local
51 internalTestDecode(input, output);
UTF16LECharsetTest.java 39 byte[] output = new byte[] { 97, 0, 98, 0, 20, 93, 79, 101 };
40 internalTestEncode(input, output);
50 char[] output = "ab\u5D14\u654F".toCharArray(); local
51 internalTestDecode(input, output);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestCase.java 33 private ITestCaseOutput output; field in class:TestCase
49 return this.output;
52 public TestCase(ITestCaseInput input, ITestCaseOutput output) {
54 this.output = output;
59 return String.format("[%s]->[%s]", input.getScript(), output.getScript());
67 this.output = out;
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ThaiStateTransition.java 53 public void write(PrintStream output)
55 output.print("{");
58 output.print(" ");
61 output.print(nextState);
63 output.print(", t");
64 output.print(action);
65 output.print("}");
ScriptRunModuleWriter.java 30 output.println(preamble);
35 output.print(" {0x");
36 output.print(Utility.hex(scriptData.getRecord(record).startChar(), 6));
37 output.print(", 0x");
38 output.print(Utility.hex(scriptData.getRecord(record).endChar(), 6));
39 output.print(", ");
40 output.print(scriptData.getTag(script));
41 output.print("ScriptCode}");
42 output.print((record == recordCount - 1) ? " " : ",");
43 output.print(" // ")
    [all...]
  /cts/suite/audio_quality/test_description/processing/
playback_sample.py 23 # Output: device (double) frequency
26 output = []
38 output.append(RESULT_ERROR)
39 output.append(outputData)
40 output.append(outputTypes)
41 return output
52 output.append(RESULT_PASS)
54 output.append(RESULT_OK)
57 output.append(outputData)
58 output.append(outputTypes
    [all...]
  /prebuilts/misc/windows/sdl2/test/
gcc-fat.sh 32 # Output both PowerPC and Intel object files
47 -o) output=$2;;
56 if test x"$output" = x; then
58 output=a.out
60 output=`echo $source | sed -e 's|.*/||' -e 's|\(.*\)\.[^\.]*|\1|'`.o
64 if test x"$output" != x; then
65 dir=ppc/`dirname $output`
74 if test -f "ppc/$1" && test "$1" != "$output"; then
82 if test x"$output" != x; then
83 cp $output ppc/$outpu
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/differencevisualizers/
PassFailVisualizer.java 31 int[] output = new int[ideal.length]; local
32 for (int y = 0; y < output.length; y++) {
34 output[y] = Color.WHITE;
36 output[y] = Color.RED;
39 return output;
  /external/curl/tests/unit/
unit1600.c 44 unsigned char output[21]; variable
45 unsigned char *testp = output;
46 Curl_ntlm_core_mk_nt_hash(easy, "1", output);
52 Curl_ntlm_core_mk_nt_hash(easy, "hello-you-fool", output);
59 Curl_ntlm_core_mk_nt_hash(easy, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", output);
  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/
test_VIDIOC_ENUMOUTPUT.c 8 * 28 Mar 2009 0.2 Clean up ret and errno variable names and dprintf() output
40 struct v4l2_output output; local
46 memset(&output, 0xff, sizeof(output));
47 output.index = i;
48 ret_enum = ioctl(get_video_fd(), VIDIOC_ENUMOUTPUT, &output);
57 CU_ASSERT_EQUAL(output.index, i);
59 CU_ASSERT(0 < strlen((char *)output.name));
61 ((char *)output.name, sizeof(output.name)))
123 struct v4l2_output output; local
142 struct v4l2_output output; local
161 struct v4l2_output output; local
181 struct v4l2_output output; local
    [all...]
  /system/tpm/tpm_manager/common/
print_tpm_manager_proto.cc 130 std::string output = local
134 output += indent + " index: ";
135 base::StringAppendF(&output, "%u (0x%08X)", value.index(), value.index());
136 output += "\n";
139 output += indent + " policy: ";
141 &output, "%s",
143 output += "\n";
146 output += indent + " world_read_allowed: ";
147 base::StringAppendF(&output, "%s",
149 output += "\n"
179 std::string output = local
236 std::string output = local
285 std::string output = local
306 std::string output = local
325 std::string output = local
346 std::string output = local
386 std::string output = local
407 std::string output = local
440 std::string output = local
468 std::string output = local
511 std::string output = local
532 std::string output = local
546 std::string output = local
576 std::string output = local
595 std::string output = local
650 std::string output = local
664 std::string output = local
730 std::string output = local
744 std::string output = local
766 std::string output = local
789 std::string output = local
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ColorSpace.java 33 * 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, width * height * 4)
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitTestResult.java 33 private String output; // stdout field in class:gUnitTestResult
38 public gUnitTestResult(boolean success, String output) {
40 this.output = output;
43 public gUnitTestResult(boolean success, String output, boolean isLexerTest) {
44 this(success, output);
48 public gUnitTestResult(boolean success, String output, String returned) {
49 this(success, output);
58 return output;
  /external/webrtc/webrtc/base/
messagedigest_unittest.cc 27 // Test the raw buffer versions of the APIs; also check output buffer size.
28 char output[16]; local
29 EXPECT_EQ(sizeof(output),
30 ComputeDigest(DIGEST_MD5, "abc", 3, output, sizeof(output)));
32 hex_encode(output, sizeof(output)));
34 ComputeDigest(DIGEST_MD5, "abc", 3, output, sizeof(output) - 1));
48 // Test the raw buffer versions of the APIs; also check output buffer size
49 char output[20]; local
60 std::string output; local
94 char output[16]; local
134 char output[20]; local
146 std::string output; local
    [all...]
  /external/libphonenumber/demo/src/com/google/phonenumbers/
PhoneNumberParserServlet.java 103 StringBuilder output; local
140 StringBuilder output = new StringBuilder( local
143 output.append("<TABLE align=center border=1>");
144 output.append("<TH align=center>ID</TH>");
145 output.append("<TH align=center>Raw phone number</TH>");
146 output.append("<TH align=center>Pretty formatting</TH>");
147 output.append("<TH align=center>International format</TH>");
154 output.append("<TR>");
155 output.append("<TD align=center>").append(phoneNumberId).append(" </TD> \n");
156 output.append("<TD align=center>").append
263 StringBuilder output = new StringBuilder("<HTML><HEAD>"); local
    [all...]
  /frameworks/native/libs/gui/
LayerState.cpp 25 status_t layer_state_t::write(Parcel& output) const
27 output.writeStrongBinder(surface);
28 output.writeUint32(what);
29 output.writeFloat(x);
30 output.writeFloat(y);
31 output.writeInt32(z);
32 output.writeUint32(w);
33 output.writeUint32(h);
34 output.writeUint32(layerStack);
35 output.writeFloat(alpha)
    [all...]
  /external/webrtc/webrtc/common_audio/
sparse_fir_filter_unittest.cc 26 void VerifyOutput(const float (&expected_output)[N], const float (&output)[N]) {
27 EXPECT_EQ(0, memcmp(expected_output, output, sizeof(output)));
37 float output[arraysize(kInput)]; local
39 filter.Filter(kInput, arraysize(kInput), output);
40 VerifyOutput(kInput, output);
69 float output[arraysize(kInput)]; local
71 filter.Filter(kInput, arraysize(kInput), output);
72 EXPECT_FLOAT_EQ(5.f, output[0]);
73 EXPECT_FLOAT_EQ(20.f, output[3])
83 float output[arraysize(kInput)]; local
96 float output[arraysize(kInput)]; local
109 float output[arraysize(kInput)]; local
119 float output[arraysize(kInput)]; local
168 float output[arraysize(kConstantInput)]; local
185 float output[arraysize(kHighFrequencyInput)]; local
199 float output[arraysize(kCoeffs)]; local
215 float output[arraysize(kInput)]; local
    [all...]
  /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, 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/libchrome/base/strings/
string_number_conversions_unittest.cc 73 std::string output; member in struct:base::__anon22625
82 EXPECT_EQ(cases[i].output, Uint64ToString(cases[i].input));
91 std::string output; member in struct:base::__anon22626
105 EXPECT_EQ(cases[i].output, Uint64ToString(cases[i].input));
111 int output; member in struct:base::__anon22627
141 int output = cases[i].output ^ 1; // Ensure StringToInt wrote something. local
142 EXPECT_EQ(cases[i].success, StringToInt(cases[i].input, &output));
143 EXPECT_EQ(cases[i].output, output);
156 int output; local
174 unsigned output; member in struct:base::__anon22628
205 unsigned output = local
221 unsigned output; local
239 int64_t output; member in struct:base::__anon22629
276 int64_t output = 0; local
291 int64_t output; local
304 uint64_t output; member in struct:base::__anon22630
343 uint64_t output = 0; local
358 uint64_t output; local
374 size_t output; member in struct:base::__anon22631
412 size_t output = 0; local
427 size_t output; local
440 int64_t output; member in struct:base::__anon22632
475 int output = 0; local
484 int output; local
492 uint32_t output; member in struct:base::__anon22633
540 uint32_t output = 0; local
549 uint32_t output; local
557 int64_t output; member in struct:base::__anon22634
599 int64_t output = 0; local
608 int64_t output; local
616 uint64_t output; member in struct:base::__anon22635
662 uint64_t output = 0; local
671 uint64_t output; local
679 const char* output; member in struct:base::__anon22636
704 std::vector<uint8_t> output; local
719 double output; member in struct:base::__anon22637
755 double output; local
769 double output; local
    [all...]
  /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...]
  /device/google/dragon/audio/hal/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,
  /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

Completed in 727 milliseconds

12 3 4 5 6 7 8 91011>>