Searched refs:out (Results 1 - 25 of 5513) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2007-05-11-str-const.c3 static unsigned char out[]={0,1}; variable
H A Dmmx-inline-asm-error.c5 vec256 out; local
8 asm("something %0" : "=y"(out)); // expected-error {{invalid type 'vec256' (vector of 8 'int' values) in asm input for constraint 'y'}}
9 asm("something %0, %0" : "+y"(out)); // expected-error {{invalid type 'vec256' (vector of 8 'int' values) in asm input for constraint 'y'}}
11 return out;
/external/eigen/bench/spbench/
H A Dspbenchstyle.h13 void printBenchStyle(std::ofstream& out) argument
15 out << "<xsl:stylesheet id='stylesheet' version='1.0' \
26 out<<"<table border='1' width='100%' height='100%'>\n \
40 out<<" <xsl:for-each select='BENCH/LINEARSYSTEM'>\n \
53 out<<" <TR>\n \
74 out<<" <TR>\n \
/external/valgrind/main/none/tests/mips64/
H A Dtest_fcsr.c5 long out [] = {0, 0}; local
21 : "r" (out)
24 printf("FCSR::1: 0x%lx, 2: 0x%lx\n", out[0], out[1]);
/external/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
H A Dfreeze.pass.cpp22 std::ostrstream out; local
23 out.freeze();
24 assert(!out.fail());
25 out << 'a';
26 assert(out.fail());
27 out.clear();
28 out.freeze(false);
29 out << 'a';
30 out << char(0);
31 assert(out
[all...]
H A Dpcount.pass.cpp22 std::ostrstream out; local
23 assert(out.pcount() == 0);
24 out << 123 << ' ' << 4.5 << ' ' << "dog";
25 assert(out.pcount() == 11);
H A Dstr.pass.cpp22 std::ostrstream out; local
23 out << 123 << ' ' << 4.5 << ' ' << "dog" << std::ends;
24 assert(out.str() == std::string("123 4.5 dog"));
/external/libcxx/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/
H A Dfreeze.pass.cpp22 std::strstream out; local
23 out.freeze();
24 assert(!out.fail());
25 out << 'a';
26 assert(out.fail());
27 out.clear();
28 out.freeze(false);
29 out << 'a';
30 out << char(0);
31 assert(out
[all...]
H A Dpcount.pass.cpp22 std::strstream out; local
23 assert(out.pcount() == 0);
24 out << 123 << ' ' << 4.5 << ' ' << "dog";
25 assert(out.pcount() == 11);
H A Dstr.pass.cpp22 std::strstream out; local
23 out << 123 << ' ' << 4.5 << ' ' << "dog" << std::ends;
24 assert(out.str() == std::string("123 4.5 dog"));
/external/chromium_org/third_party/WebKit/Source/wtf/testing/
H A DWTFTestHelpers.cpp40 std::ostream& operator<<(std::ostream& out, const String& string) argument
43 return out << "<null>";
45 out << '"';
51 out << "\\t";
54 out << "\\n";
57 out << "\\r";
60 out << "\\\"";
63 out << "\\\\";
67 out << static_cast<char>(character);
70 out << "\\
[all...]
/external/valgrind/main/none/tests/mips32/
H A Dtest_fcsr.c5 int out [] = {0, 0}; local
20 : "r" (in), "r" (out)
23 printf("FCSR::1: 0x%x, 2: 0x%x\n", out[0], out[1]);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DintermOut.cpp19 // 2. Print out a text based description of the tree.
96 TInfoSinkBase& out = sink; local
98 OutputTreeText(out, node, mDepth);
103 out << "move second child to first child";
106 out << "initialize first child with second child";
109 out << "add second child into first child";
112 out << "subtract second child into first child";
115 out << "multiply second child into first child";
118 out << "matrix mult second child into first child";
121 out << "vecto
217 TInfoSinkBase& out = sink; local
277 TInfoSinkBase &out = sink; local
362 TInfoSinkBase &out = sink; local
400 TInfoSinkBase &out = sink; local
439 TInfoSinkBase &out = sink; local
486 TInfoSinkBase &out = sink; local
[all...]
/external/javassist/sample/hotswap/logging/
H A DHelloWorld.java3 System.out.println("** HelloWorld.print()");
4 System.out.println("hello world");
/external/valgrind/main/none/tests/s390x/
H A Dbfp-2.c12 float out; local
14 __asm__ volatile("sqebr %[out],%[in]" : [out]"=f"(out) : [in]"f"(in));
15 printf("sqebr %f -> %f\n", in, out);
20 double out; local
22 __asm__ volatile("sqdbr %[out],%[in]" : [out]"=f"(out) : [in]"f"(in));
23 printf("sqdbr %f -> %f\n", in, out);
28 float out; local
36 double out; local
44 float out; local
52 double out; local
60 float out; local
68 double out; local
[all...]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
H A Dmat2d.js50 var out = new GLMAT_ARRAY_TYPE(6);
51 out[0] = 1;
52 out[1] = 0;
53 out[2] = 0;
54 out[3] = 1;
55 out[4] = 0;
56 out[5] = 0;
57 return out;
67 var out = new GLMAT_ARRAY_TYPE(6);
68 out[
[all...]
H A Dmat2.js35 var out = new GLMAT_ARRAY_TYPE(4);
36 out[0] = 1;
37 out[1] = 0;
38 out[2] = 0;
39 out[3] = 1;
40 return out;
50 var out = new GLMAT_ARRAY_TYPE(4);
51 out[0] = a[0];
52 out[1] = a[1];
53 out[
[all...]
/external/chromium_org/third_party/opus/src/silk/
H A Dlog2lin.c40 opus_int32 out, frac_Q7; local
48 out = silk_LSHIFT( 1, silk_RSHIFT( inLog_Q7, 7 ) );
52 out = silk_ADD_RSHIFT32( out, silk_MUL( out, silk_SMLAWB( frac_Q7, silk_SMULBB( frac_Q7, 128 - frac_Q7 ), -174 ) ), 7 );
55 out = silk_MLA( out, silk_RSHIFT( out, 7 ), silk_SMLAWB( frac_Q7, silk_SMULBB( frac_Q7, 128 - frac_Q7 ), -174 ) );
57 return out;
/external/libopus/silk/
H A Dlog2lin.c40 opus_int32 out, frac_Q7; local
48 out = silk_LSHIFT( 1, silk_RSHIFT( inLog_Q7, 7 ) );
52 out = silk_ADD_RSHIFT32( out, silk_MUL( out, silk_SMLAWB( frac_Q7, silk_SMULBB( frac_Q7, 128 - frac_Q7 ), -174 ) ), 7 );
55 out = silk_MLA( out, silk_RSHIFT( out, 7 ), silk_SMLAWB( frac_Q7, silk_SMULBB( frac_Q7, 128 - frac_Q7 ), -174 ) );
57 return out;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DPrintStream.cpp50 void printInternal(PrintStream& out, const char* string) argument
52 out.printf("%s", string);
55 void printInternal(PrintStream& out, const CString& string) argument
57 out.print(string.data());
60 void printInternal(PrintStream& out, const String& string) argument
62 out.print(string.utf8());
65 void printInternal(PrintStream& out, bool value) argument
68 out.print("true");
70 out.print("false");
73 void printInternal(PrintStream& out, in argument
78 printInternal(PrintStream& out, unsigned value) argument
83 printInternal(PrintStream& out, long value) argument
88 printInternal(PrintStream& out, unsigned long value) argument
93 printInternal(PrintStream& out, long long value) argument
98 printInternal(PrintStream& out, unsigned long long value) argument
103 printInternal(PrintStream& out, float value) argument
108 printInternal(PrintStream& out, double value) argument
113 dumpCharacter(PrintStream& out, char value) argument
[all...]
/external/e2fsprogs/lib/uuid/
H A Dpack.c41 unsigned char *out = ptr; local
44 out[3] = (unsigned char) tmp;
46 out[2] = (unsigned char) tmp;
48 out[1] = (unsigned char) tmp;
50 out[0] = (unsigned char) tmp;
53 out[5] = (unsigned char) tmp;
55 out[4] = (unsigned char) tmp;
58 out[7] = (unsigned char) tmp;
60 out[6] = (unsigned char) tmp;
63 out[
[all...]
/external/chromium_org/tools/gn/
H A Dpath_output_unittest.cc14 SourceDir build_dir("//out/Debug/");
18 std::ostringstream out; local
19 writer.WriteFile(out, SourceFile("//foo/bar.cc"));
20 EXPECT_EQ("../../foo/bar.cc", out.str());
24 std::ostringstream out; local
25 writer.WriteFile(out, SourceFile("//foo.cc"));
26 EXPECT_EQ("../../foo.cc", out.str());
30 std::ostringstream out; local
31 writer.WriteFile(out, SourceFile("//out/Debu
39 std::ostringstream out; local
46 std::ostringstream out; local
59 std::ostringstream out; local
65 std::ostringstream out; local
76 std::ostringstream out; local
82 std::ostringstream out; local
95 std::ostringstream out; local
103 std::ostringstream out; local
111 std::ostringstream out; local
120 std::ostringstream out; local
129 std::ostringstream out; local
135 std::ostringstream out; local
149 std::ostringstream out; local
157 std::ostringstream out; local
168 std::ostringstream out; local
174 std::ostringstream out; local
182 std::ostringstream out; local
188 std::ostringstream out; local
196 std::ostringstream out; local
202 std::ostringstream out; local
208 std::ostringstream out; local
216 std::ostringstream out; local
222 std::ostringstream out; local
228 std::ostringstream out; local
234 std::ostringstream out; local
242 std::ostringstream out; local
248 std::ostringstream out; local
254 std::ostringstream out; local
264 std::ostringstream out; local
270 std::ostringstream out; local
[all...]
/external/javassist/sample/hotswap/
H A DHelloWorld.java3 System.out.println("hello world");
/external/qemu/android/filesystems/
H A Dfstab_parser_unittest.cpp29 char* out = NULL; local
31 "/system", &out));
32 EXPECT_STREQ("ext4", out);
33 free(out);
36 "/data", &out));
37 EXPECT_STREQ("yaffs2", out);
38 free(out);
41 "/cache", &out));
42 EXPECT_STREQ("ntfs", out);
43 free(out);
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/linux/
H A DWebFontRenderStyle.cpp40 void WebFontRenderStyle::toFontRenderStyle(FontRenderStyle* out) argument
42 out->useBitmaps = useBitmaps;
43 out->useAutoHint = useAutoHint;
44 out->useHinting = useHinting;
45 out->hintStyle = hintStyle;
46 out->useAntiAlias = useAntiAlias;
47 out->useSubpixelRendering = useSubpixelRendering;
48 out->useSubpixelPositioning = useSubpixelPositioning;

Completed in 563 milliseconds

1234567891011>>