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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2007-05-11-str-const.c 3 static unsigned char out[]={0,1}; variable
mmx-inline-asm-error.c 5 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/
spbenchstyle.h 13 void printBenchStyle(std::ofstream& out)
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/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
freeze.pass.cpp 22 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.str() == std::string("a"))
    [all...]
pcount.pass.cpp 22 std::ostrstream out; local
23 assert(out.pcount() == 0);
24 out << 123 << ' ' << 4.5 << ' ' << "dog";
25 assert(out.pcount() == 11);
str.pass.cpp 22 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/
freeze.pass.cpp 22 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.str() == std::string("a"))
    [all...]
pcount.pass.cpp 22 std::strstream out; local
23 assert(out.pcount() == 0);
24 out << 123 << ' ' << 4.5 << ' ' << "dog";
25 assert(out.pcount() == 11);
str.pass.cpp 22 std::strstream out; local
23 out << 123 << ' ' << 4.5 << ' ' << "dog" << std::ends;
24 assert(out.str() == std::string("123 4.5 dog"));
  /build/core/
help.mk 23 @echo "clean (aka clobber) equivalent to rm -rf out/"
32 .PHONY: out
33 out:
  /external/chromium_org/third_party/angle/src/compiler/translator/
intermOut.cpp 19 // 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 << "vector scale second child into first child"
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/
HelloWorld.java 3 System.out.println("** HelloWorld.print()");
4 System.out.println("hello world");
  /art/test/015-switch/src/
Main.java 25 case -1: System.out.print("neg one\n"); break;
26 case 0: System.out.print("zero\n"); break;
27 case 1: System.out.print("CORRECT (one)\n"); break;
28 case 2: System.out.print("two\n"); break;
29 case 3: System.out.print("three\n"); break;
30 case 4: System.out.print("four\n"); break;
31 default: System.out.print("???\n"); break;
34 case 3: System.out.print("three\n"); break;
35 case 4: System.out.print("four\n"); break;
36 default: System.out.print("CORRECT (not found)\n"); break
    [all...]
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
mat2d.js 20 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
50 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)
    [all...]
mat2.js 20 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 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]
    [all...]
  /external/chromium_org/third_party/opus/src/silk/
log2lin.c 24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40 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;
    [all...]
  /external/libopus/silk/
log2lin.c 24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40 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;
    [all...]
  /external/e2fsprogs/lib/uuid/
pack.c 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
41 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
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
PrintStream.cpp 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
50 void printInternal(PrintStream& out, const char* string)
52 out.printf("%s", string);
55 void printInternal(PrintStream& out, const CString& string)
57 out.print(string.data());
60 void printInternal(PrintStream& out, const String& string)
62 out.print(string.utf8());
65 void printInternal(PrintStream& out, bool value)
68 out.print("true");
70 out.print("false")
    [all...]
  /external/chromium_org/tools/gn/
path_output_unittest.cc 14 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/Debug/foo.cc"))
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...]
  /art/test/122-secondarydex/src/
Super.java 19 System.out.println("Super");
  /external/chromium_org/third_party/WebKit/Source/wtf/testing/
WTFTestHelpers.cpp 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
40 std::ostream& operator<<(std::ostream& out, const String& string)
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)
    [all...]
  /external/javassist/sample/hotswap/
HelloWorld.java 3 System.out.println("hello world");
  /art/test/065-mismatched-implements/src2/
Defs.java 19 System.out.println("yo");
23 System.out.println("yo yo");
  /art/test/066-mismatched-super/src/
Defs.java 19 System.out.println("yo");
23 System.out.println("yo yo");

Completed in 509 milliseconds

1 2 3 4 5 6 7 8 91011>>