HomeSort by relevance Sort by last modified time
    Searched refs:out (Results 1 - 25 of 9602) 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/valgrind/main/none/tests/mips64/
test_fcsr.c 5 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/
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);
  /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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /build/core/
help.mk 23 @echo "clean (aka clobber) equivalent to rm -rf out/"
32 .PHONY: out
33 out:
  /external/valgrind/main/none/tests/mips32/
test_fcsr.c 5 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/
intermOut.cpp 16 // 2. Print out a text based description of the tree.
89 TInfoSinkBase& out = sink; local
91 OutputTreeText(out, node, depth);
94 case EOpAssign: out << "move second child to first child"; break;
95 case EOpInitialize: out << "initialize first child with second child"; break;
96 case EOpAddAssign: out << "add second child into first child"; break;
97 case EOpSubAssign: out << "subtract second child into first child"; break;
98 case EOpMulAssign: out << "multiply second child into first child"; break;
99 case EOpVectorTimesMatrixAssign: out << "matrix mult second child into first child"; break;
100 case EOpVectorTimesScalarAssign: out << "vector scale second child into first child"; break
142 TInfoSinkBase& out = sink; local
213 TInfoSinkBase& out = sink; local
295 TInfoSinkBase& out = sink; local
328 TInfoSinkBase& out = sink; local
365 TInfoSinkBase& out = sink; local
403 TInfoSinkBase& out = sink; local
    [all...]
  /external/javassist/sample/hotswap/logging/
HelloWorld.java 3 System.out.println("** HelloWorld.print()");
4 System.out.println("hello world");
  /external/valgrind/main/none/tests/s390x/
bfp-2.c 12 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...]
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
tclresult.i 25 %typemap(out) int Tcl_Result {
  /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_org/v8/src/
objects-printer.cc 22 void Object::Print(FILE* out) {
24 Smi::cast(this)->SmiPrint(out);
26 HeapObject::cast(this)->HeapObjectPrint(out);
28 Flush(out);
37 void Object::PrintLn(FILE* out) {
38 Print(out);
39 PrintF(out, "\n");
43 void HeapObject::PrintHeader(FILE* out, const char* id) {
44 PrintF(out, "%p: [%s]\n", reinterpret_cast<void*>(this), id);
48 void HeapObject::HeapObjectPrint(FILE* out) {
    [all...]
property.cc 23 void LookupResult::Print(FILE* out) {
25 PrintF(out, "Not Found\n");
29 PrintF(out, "LookupResult:\n");
30 PrintF(out, " -cacheable = %s\n", IsCacheable() ? "true" : "false");
31 PrintF(out, " -attributes = %x\n", GetAttributes());
33 PrintF(out, " -transition target:\n");
34 GetTransitionTarget()->Print(out);
35 PrintF(out, "\n");
39 PrintF(out, " -type = normal\n");
40 PrintF(out, " -entry = %d", GetDictionaryEntry())
    [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...]
  /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/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...]

Completed in 1002 milliseconds

1 2 3 4 5 6 7 8 91011>>