HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 1 - 25 of 5894) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/s390x/
lam_stam.c 5 char output[44]; variable
14 "larl 2,output\n\t"
18 write(1, output, sizeof output);
  /external/gmock/test/
gmock_output_test.py 32 """Tests the text output of Google C++ Mocking Framework.
65 def RemoveReportHeaderAndFooter(output):
66 """Removes Google Test result report's header and footer from the output."""
68 output = re.sub(r'.*gtest_main.*\n', '', output)
69 output = re.sub(r'\[.*\d+ tests.*\n', '', output)
70 output = re.sub(r'\[.* test environment .*\n', '', output)
71 output = re.sub(r'\[=+\] \d+ tests .* ran.*', '', output
    [all...]
  /external/google-breakpad/src/testing/test/
gmock_output_test.py 32 """Tests the text output of Google C++ Mocking Framework.
65 def RemoveReportHeaderAndFooter(output):
66 """Removes Google Test result report's header and footer from the output."""
68 output = re.sub(r'.*gtest_main.*\n', '', output)
69 output = re.sub(r'\[.*\d+ tests.*\n', '', output)
70 output = re.sub(r'\[.* test environment .*\n', '', output)
71 output = re.sub(r'\[=+\] \d+ tests .* ran.*', '', output
    [all...]
  /external/libchrome/base/
base64url_unittest.cc 15 std::string output; local
17 &output);
20 EXPECT_EQ("aGVsbG8_d29ybGQ=", output);
23 Base64UrlEncode("??", Base64UrlEncodePolicy::INCLUDE_PADDING, &output);
24 EXPECT_EQ("Pz8=", output);
26 Base64UrlEncode("", Base64UrlEncodePolicy::INCLUDE_PADDING, &output);
27 EXPECT_EQ("", output);
31 std::string output; local
32 Base64UrlEncode("hello?world", Base64UrlEncodePolicy::OMIT_PADDING, &output);
35 EXPECT_EQ("aGVsbG8_d29ybGQ", output);
46 std::string output; local
66 std::string output; local
80 std::string output; local
92 std::string output; local
101 std::string output; local
    [all...]
  /external/webrtc/webrtc/test/testsupport/
perf_test_unittest.cc 22 std::string output; local
23 AppendResult(output, "measurement", "modifier", "trace", 42, "units", false);
24 EXPECT_EQ(expected, output);
25 std::cout << output; local
28 AppendResult(output, "foo", "bar", "baz", 7, "widgets", true);
29 EXPECT_EQ(expected, output);
30 std::cout << output; local
  /external/libvpx/libvpx/vp8/encoder/arm/
dct_arm.c 16 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch)
18 vp8_short_fdct4x4_armv6(input, output, pitch);
19 vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/
dct_arm.c 16 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch)
18 vp8_short_fdct4x4_armv6(input, output, pitch);
19 vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
  /external/bison/src/
output.h 0 /* Output the generated parsing program for bison,
24 /* Output the parsing tables and the parser code to FTABLE. */
25 void output (void);
  /external/curl/tests/unit/
unit1601.c 38 unsigned char output[16]; variable
39 unsigned char *testp = output;
40 Curl_md5it(output, (const unsigned char *)"1");
45 Curl_md5it(output, (const unsigned char *)"hello-you-fool");
unit1398.c 35 char output[24]; variable
40 rc = curl_msnprintf(output, 4, "%.*s", width, buf);
42 fail_unless(!strcmp(output, "bug"), "wrong output");
45 rc = curl_msnprintf(output, 4, "%.*s", width, str);
47 fail_unless(!strcmp(output, "bug"), "wrong output");
51 rc = curl_msnprintf(output, 4, "%.*s", width, buf);
53 fail_unless(!strcmp(output, "bu"), "wrong output");
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
neq_test.cpp 35 int output[3]; local
36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
38 CPPUNIT_ASSERT(output[0]==-1);
39 CPPUNIT_ASSERT(output[1]==-2);
40 CPPUNIT_ASSERT(output[2]==-3);
47 int output [4]; local
48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
50 CPPUNIT_ASSERT(output[0]==0);
51 CPPUNIT_ASSERT(output[1]==1);
52 CPPUNIT_ASSERT(output[2]==0)
    [all...]
logic_test.cpp 38 bool output [4]; local
39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>());
41 CPPUNIT_ASSERT(output[0]==false);
42 CPPUNIT_ASSERT(output[1]==true);
43 CPPUNIT_ASSERT(output[2]==false);
44 CPPUNIT_ASSERT(output[3]==false);
58 bool output [4]; local
59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>());
61 CPPUNIT_ASSERT(output[0]==true);
62 CPPUNIT_ASSERT(output[1]==true)
    [all...]
modulus_test.cpp 33 int output [4]; local
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
36 CPPUNIT_ASSERT(output[0]==2);
37 CPPUNIT_ASSERT(output[1]==0);
38 CPPUNIT_ASSERT(output[2]==10);
39 CPPUNIT_ASSERT(output[3]==2);
  /ndk/tests/device/test-stlport/unit/
neq_test.cpp 35 int output[3]; local
36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
38 CPPUNIT_ASSERT(output[0]==-1);
39 CPPUNIT_ASSERT(output[1]==-2);
40 CPPUNIT_ASSERT(output[2]==-3);
47 int output [4]; local
48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
50 CPPUNIT_ASSERT(output[0]==0);
51 CPPUNIT_ASSERT(output[1]==1);
52 CPPUNIT_ASSERT(output[2]==0)
    [all...]
logic_test.cpp 38 bool output [4]; local
39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>());
41 CPPUNIT_ASSERT(output[0]==false);
42 CPPUNIT_ASSERT(output[1]==true);
43 CPPUNIT_ASSERT(output[2]==false);
44 CPPUNIT_ASSERT(output[3]==false);
58 bool output [4]; local
59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>());
61 CPPUNIT_ASSERT(output[0]==true);
62 CPPUNIT_ASSERT(output[1]==true)
    [all...]
modulus_test.cpp 33 int output [4]; local
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
36 CPPUNIT_ASSERT(output[0]==2);
37 CPPUNIT_ASSERT(output[1]==0);
38 CPPUNIT_ASSERT(output[2]==10);
39 CPPUNIT_ASSERT(output[3]==2);
  /art/runtime/
indenter_test.cc 23 std::ostringstream output; local
24 Indenter indent_filter(output.rdbuf(), '\t', 2);
27 EXPECT_EQ(output.str(), "");
30 EXPECT_EQ(output.str(), "\t\thello");
33 EXPECT_EQ(output.str(), "\t\thello\n\t\thello again");
36 EXPECT_EQ(output.str(), "\t\thello\n\t\thello again\n");
  /system/tpm/attestation/common/
print_interface_proto.cc 71 std::string output = local
75 output += indent + " key_label: ";
76 base::StringAppendF(&output, "%s", value.key_label().c_str());
77 output += "\n";
80 output += indent + " key_type: ";
81 base::StringAppendF(&output, "%s",
84 output += "\n";
87 output += indent + " key_usage: ";
88 base::StringAppendF(&output, "%s",
91 output += "\n"
122 std::string output = local
153 std::string output = local
177 std::string output = local
242 std::string output = local
263 std::string output = local
299 std::string output = local
321 std::string output = local
379 std::string output = local
414 std::string output = local
443 std::string output = local
482 std::string output = local
525 std::string output = local
556 std::string output = local
584 std::string output = local
615 std::string output = local
644 std::string output = local
669 std::string output = local
    [all...]
  /system/tpm/tpm_manager/common/
print_tpm_ownership_interface_proto.cc 38 std::string output = local
41 output += indent + "}\n";
42 return output;
52 std::string output = local
56 output += indent + " status: ";
58 &output, "%s",
60 output += "\n";
63 output += indent + " enabled: ";
64 base::StringAppendF(&output, "%s", value.enabled() ? "true" : "false");
65 output += "\n"
113 std::string output = local
127 std::string output = local
149 std::string output = local
172 std::string output = local
    [all...]
print_tpm_nvram_interface_proto.cc 37 std::string output = local
41 output += indent + " index: ";
42 base::StringAppendF(&output, "%d", value.index());
43 output += "\n";
46 output += indent + " length: ";
47 base::StringAppendF(&output, "%d", value.length());
48 output += "\n";
50 output += indent + "}\n";
51 return output;
61 std::string output local
82 std::string output = local
101 std::string output = local
122 std::string output = local
148 std::string output = local
169 std::string output = local
188 std::string output = local
216 std::string output = local
235 std::string output = local
261 std::string output = local
280 std::string output = local
306 std::string output = local
325 std::string output = local
    [all...]
  /external/tcpdump/tests/
TESTonce 6 print "Usage: TESTonce name input output options\n";
12 $output=$ARGV[2];
18 $r = system "..\\windump -n -r $input $options 2>NUL | sed 's/\\r//' | tee NEW/$output | diff $output - >DIFF/$output.diff";
24 $r = system "../tcpdump 2>/dev/null -n -r $input $options >NEW/$output";
27 open(OUTPUT, ">>"."NEW/$output") || die "fail to open $output\n";
28 printf OUTPUT "EXIT CODE %08x\n", $r
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
fwd_txfm.c 13 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) {
68 out = output;
75 output[j + i * 4] = (output[j + i * 4] + 1) >> 2;
80 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride) {
87 output[0] = sum << 1;
88 output[1] = 0;
95 tran_low_t *output = intermediate; local
138 output[0] = (tran_low_t)fdct_round_shift(t0);
139 output[2] = (tran_low_t)fdct_round_shift(t2)
717 tran_high_t output[32 * 32]; local
746 tran_high_t output[32 * 32]; local
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ScriptTagModuleWriter.java 24 output.print("const LETag ");
25 output.print(data.getTagLabel(value));
26 output.print(kind);
27 output.print("Tag = ");
28 output.print(data.makeTag(value));
29 output.print("; /* '");
30 output.print(data.getTag(value));
31 output.print("' (");
32 output.print(data.getName(value));
33 output.println(") */")
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
IOUtils.java 52 byte[] output = {};
57 if (pos >= output.length) { // Only expand when there's no room
58 bytesToRead = Math.min(length - pos, output.length + 1024);
59 if (output.length < pos + bytesToRead) {
60 output = Arrays.copyOf(output, pos + bytesToRead);
63 bytesToRead = output.length - pos;
65 int cc = is.read(output, pos, bytesToRead);
70 if (output.length != pos) {
71 output = Arrays.copyOf(output, pos)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
DemuxOutputStream.java 17 package org.apache.commons.io.output;
37 * @param output the stream to bind
40 public OutputStream bindStream( OutputStream output )
43 m_streams.set( output );
56 OutputStream output = getStream(); local
57 if( null != output )
59 output.close();
72 OutputStream output = getStream(); local
73 if( null != output )
75 output.flush()
89 OutputStream output = getStream(); local
    [all...]

Completed in 610 milliseconds

1 2 3 4 5 6 7 8 91011>>