HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 1 - 25 of 4139) 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/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/chromium_org/native_client_sdk/src/examples/demo/nacl_io/
handlers.h 10 typedef int (*HandleFunc)(int num_params, char** params, char** output);
12 int HandleFopen(int num_params, char** params, char** output);
13 int HandleFwrite(int num_params, char** params, char** output);
14 int HandleFread(int num_params, char** params, char** output);
15 int HandleFseek(int num_params, char** params, char** output);
16 int HandleFclose(int num_params, char** params, char** output);
17 int HandleStat(int num_params, char** params, char** output);
19 int HandleOpendir(int num_params, char** params, char** output);
20 int HandleReaddir(int num_params, char** params, char** output);
21 int HandleClosedir(int num_params, char** params, char** output);
    [all...]
  /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);
  /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/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...]
  /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...]
  /art/runtime/
indenter_test.cc 21 std::ostringstream output; local
22 Indenter indent_filter(output.rdbuf(), '\t', 2);
25 EXPECT_EQ(output.str(), "");
28 EXPECT_EQ(output.str(), "\t\thello");
31 EXPECT_EQ(output.str(), "\t\thello\n\t\thello again");
34 EXPECT_EQ(output.str(), "\t\thello\n\t\thello again\n");
  /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...]
  /external/chromium_org/tools/perf/measurements/
loading_measurement_analyzer_unittest.py 19 output = StringIO.StringIO()
23 loading_measurement_analyzer.main([csv_path], stdout=output)
24 output = output.getvalue()
27 self.assertIn('Total URLs: 9', output)
28 self.assertIn('Total page load time: 51s', output)
29 self.assertIn('Average page load time: 5621ms', output)
32 self.assertIn('WTF::IntHash::hash: 1359797948period 1.1%', output)
33 self.assertIn('WebCore::rangesIntersect: 648335678period 0.5%', output)
34 self.assertIn('v8::internal::Scanner::Scan: 19668346period 0.0', output)
    [all...]
  /external/chromium_org/chrome/tools/build/win/
make_zip.sh 7 # A simple shell script for creating a chrome zip from an output directory.
8 # Pass the path to the output directory you wish to package.
11 echo "usage: make_zip.sh path/to/release/dir [output-name]"
20 output=${2:-chrome-win32}
21 rm -fr $output $output.zip
22 mkdir $output
24 # Get the absolute path of the output directory. We need it when copying
26 output_abs=`cygpath -a $output`
41 zip -r $output.zip $outpu
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
generate_devtools_extension_api.py 35 def write_devtools_extension_api(output, input_names):
36 output.write("""(function() {
40 output.write(input.read())
41 output.write("""
56 output = open(output_name, 'w')
57 write_devtools_extension_api(output, argv[2:])
58 output.close()
  /external/chromium_org/chrome/browser/extensions/api/log_private/
syslog_parser_unittest.cc 35 std::vector<linked_ptr<api::log_private::LogEntry> > output; local
40 p.Parse(kShillLogEntry, &output, &filter_handler);
41 EXPECT_STREQ(output[0]->level.c_str(), "error");
42 EXPECT_STREQ(output[0]->process.c_str(), "shill:");
43 EXPECT_STREQ(output[0]->process_id.c_str(), "unknown");
44 EXPECT_STREQ(output[0]->full_entry.c_str(), kShillLogEntry);
45 EXPECT_EQ(output[0]->timestamp, 1373308092440.308);
47 p.Parse(kWpaSupplicantLogEntry, &output, &filter_handler);
48 EXPECT_STREQ(output[1]->level.c_str(), "unknown");
49 EXPECT_STREQ(output[1]->process.c_str(), "wpa_supplicant")
    [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/chromium_org/chrome/renderer/safe_browsing/
murmurhash3_util.cc 11 uint32 output; local
12 MurmurHash3_x86_32(str.data(), str.size(), seed, &output);
13 return output;
  /external/chromium_org/tools/gyp/test/rules-use-built-dependencies/src/
main.cc 12 const char output[] = "output"; local
13 fwrite(output, 1, sizeof(output) - 1, file);
  /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...]
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-opt-icf.py 24 output = test.run_dumpbin( variable
26 if output.count('similar_function') != 6: # 3 definitions, 3 calls.
30 output = test.run_dumpbin( variable
32 if output.count('similar_function') != 6: # 3 definitions, 3 calls.
36 output = test.run_dumpbin( variable
38 if output.count('similar_function') != 4: # 1 definition, 3 calls.
gyptest-link-opt-ref.py 23 output = test.run_dumpbin( variable
25 if 'unused_function' not in output:
29 output = test.run_dumpbin( variable
31 if 'unused_function' not in output:
35 output = test.run_dumpbin( variable
37 if 'unused_function' in output:

Completed in 2063 milliseconds

1 2 3 4 5 6 7 8 91011>>