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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/s390x/
lam_stam.c 5 char output[44]; variable
14 "larl 2,output\n\t"
18 write(1, output, sizeof output);
  /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/qemu/
feature_to_c.sh 22 output=$1
25 if test -z "$output" || test -z "$1"; then
30 if test -e "$output"; then
31 echo "Output file \"$output\" already exists; refusing to overwrite."
62 }' < $input >> $output
65 echo >> $output
66 echo "extern const char *const xml_builtin[][2];" >> $output
67 echo "const char *const xml_builtin[][2] = {" >> $output
72 echo " { \"$basename\", $arrayname }," >> $output
    [all...]
  /external/chromium/testing/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/libvpx/vp8/encoder/arm/
dct_arm.c 16 void vp8_fast_fdct8x4_armv6(short *input, short *output, int pitch)
18 vp8_fast_fdct4x4_armv6(input, output, pitch);
19 vp8_fast_fdct4x4_armv6(input + 4, output + 16, pitch);
  /external/stlport/test/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-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);
  /external/chromium/chrome/common/
jstemplate_builder.cc 21 std::string output(html_template.data(), html_template.size());
22 AppendJsonHtml(json, &output);
23 AppendJsTemplateSourceHtml(&output);
24 AppendJsTemplateProcessHtml(template_id, &output);
25 return output;
30 std::string output(html_template.data(), html_template.size());
31 AppendJsonHtml(json, &output);
32 AppendI18nTemplateSourceHtml(&output);
33 AppendI18nTemplateProcessHtml(&output);
34 return output;
    [all...]
  /system/core/sh/
output.h 1 /* $NetBSD: output.h,v 1.17 2003/08/07 09:05:36 agc Exp $ */
34 * @(#)output.h 8.2 (Berkeley) 5/4/95
41 struct output { struct
50 extern struct output output;
51 extern struct output errout;
52 extern struct output memout;
53 extern struct output *out1;
54 extern struct output *out2;
56 void open_mem(char *, int, struct output *);
    [all...]
  /external/webkit/Source/WebCore/inspector/
xxd.pl 34 $output = shift;
43 open($output, '>', $output) or die "Can't open file for write: $output $!";
44 print $output "const unsigned char $varname\[\] = {\n$text\n};\n";
45 close($output);
  /packages/apps/Email/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...]
  /external/chromium/base/
string_number_conversions_unittest.cc 63 std::string output; member in struct:base::__anon2749
72 EXPECT_EQ(cases[i].output, Uint64ToString(cases[i].input));
78 int output; member in struct:base::__anon2750
109 int output = 0; local
110 EXPECT_EQ(cases[i].success, StringToInt(cases[i].input, &output));
111 EXPECT_EQ(cases[i].output, output);
112 output = 0;
115 &output));
116 EXPECT_EQ(cases[i].output, output)
143 int output; local
176 int64 output; member in struct:base::__anon2751
214 int64 output = 0; local
248 int64 output; local
278 int output; member in struct:base::__anon2752
313 int output = 0; local
331 int output; local
347 const char* output; member in struct:base::__anon2753
372 std::vector<uint8> output; local
387 double output; member in struct:base::__anon2754
421 double output; local
431 double output; local
    [all...]
  /ndk/tests/build/ndk-out/
build.sh 2 rm -rf obj output-dir
3 export NDK_OUT=output-dir
9 if [ ! -d output-dir ]; then
10 echo "FAILURE: 'output-dir' should have been created by ndk-build!"
13 rm -rf output-dir
  /frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
MultipartTest.java 60 StringBuffer output = new StringBuffer(); local
62 output.append("--");
63 output.append(boundry);
64 output.append(CRLF);
66 output.append("Content-Disposition: form-data; name=\"stringpart\"");
67 output.append(CRLF);
68 output.append("Content-Type: text/plain; charset=US-ASCII");
69 output.append(CRLF);
70 output.append("Content-Transfer-Encoding: 8bit");
71 output.append(CRLF)
    [all...]
  /sdk/ddms/libs/ddmlib/tests/src/com/android/ddmlib/testrunner/
InstrumentationResultParserTest.java 64 * Tests parsing empty output.
75 * Tests parsing output for a successful test run with no tests.
78 StringBuilder output = new StringBuilder(); local
79 addLine(output, "INSTRUMENTATION_RESULT: stream=");
80 addLine(output, "Test results for InstrumentationTestRunner=");
81 addLine(output, "Time: 0.001");
82 addLine(output, "OK (0 tests)");
83 addLine(output, "INSTRUMENTATION_CODE: -1");
88 injectAndVerifyTestString(output.toString());
92 * Tests parsing output for a single successful test execution
95 StringBuilder output = createSuccessTest(); local
109 StringBuilder output = buildCommonResult(); local
131 StringBuilder output = new StringBuilder(); local
164 StringBuilder output = buildCommonResult(); local
181 StringBuilder output = createSuccessTest(); local
196 StringBuilder output = new StringBuilder(); local
214 StringBuilder output = new StringBuilder(); local
237 StringBuilder output = new StringBuilder(); local
258 StringBuilder output = new StringBuilder(); local
279 StringBuilder output = new StringBuilder(); local
300 StringBuilder output = new StringBuilder(); local
323 StringBuilder output = new StringBuilder(); local
336 StringBuilder output = buildCommonResult(); local
    [all...]
  /development/ndk/samples/hello-neon/jni/
helloneon-intrinsics.h 20 void fir_filter_neon_intrinsics(short *output, const short* input, const short* kernel, int width, int kernelSize);
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
ASCCharsetTest.java 42 byte[] output = new byte[] { 97, 98,
45 internalTestEncode(input, output);
55 char[] output = "ab??".toCharArray(); local
56 internalTestDecode(input, output);
ISOCharsetTest.java 41 byte[] output = new byte[] { 97, 98,
44 internalTestEncode(input, output);
54 char[] output = "ab??".toCharArray(); local
55 internalTestDecode(input, output);

Completed in 952 milliseconds

1 2 3 4 5 6 7 8 91011>>