/external/clang/test/CodeGen/ |
2007-05-11-str-const.c | 3 static unsigned char out[]={0,1}; variable
|
mips-constraints-mem.c | 17 int out = 0; local 22 : "=r"(out)
|
mmx-inline-asm-error.c | 5 vec256 out; local 8 asm("something %0" : "=y"(out)); // expected-error {{invalid output size for constraint '=y'}} 9 asm("something %0, %0" : "+y"(out)); // expected-error {{invalid output size for constraint '+y'}} 11 return out;
|
/external/libcxx/test/std/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")); 25 out.freeze(false);
|
/external/libcxx/test/std/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")); 25 out.freeze(false);
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/ |
stream_inserter.pass.cpp | 24 std::ostringstream out; local 25 out << std::error_code(std::io_errc::stream); 26 assert(out.str() == "iostream:1");
|
/external/valgrind/none/tests/mips64/ |
test_fcsr.c | 6 long out [] = {0, 0}; local 22 : "r" (out) 25 printf("FCSR::1: 0x%lx, 2: 0x%lx\n", out[0], out[1]);
|
/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);
|
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"));
|
/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);
|
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"));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/ |
stream_inserter.pass.cpp | 24 std::ostringstream out; local 25 out << std::error_code(std::io_errc::stream); 26 assert(out.str() == "iostream:1");
|
/build/kati/ |
find_test.cc | 41 string out; local 42 if (!FindEmulator::Get()->HandleFind(cmd, fc, &out)) { 47 for (StringPiece tok : WordScanner(out)) {
|
/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/libcxx/test/std/experimental/string.view/string.view.io/ |
stream_insert.pass.cpp | 27 std::ostringstream out; local 29 out << sv; 30 assert(out.good()); 31 assert(sv == out.str()); 34 std::ostringstream out; local 37 out.width(12); 38 out << sv; 39 assert(out.good()); 40 assert(" " + s == out.str()); 43 std::wostringstream out; local 50 std::wostringstream out; local [all...] |
/external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.cons/ |
string.pass.cpp | 29 std::ifstream fs(std::string("test.dat"), std::ios_base::out); member in class:std::ios_base 41 std::wifstream fs(std::string("test.dat"), std::ios_base::out); member in class:std::ios_base
|
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/ |
stream_insert.pass.cpp | 26 std::ostringstream out; local 28 out << s; 29 assert(out.good()); 30 assert(s == out.str()); 33 std::ostringstream out; local 35 out.width(12); 36 out << s; 37 assert(out.good()); 38 assert(" " + s == out.str()); 41 std::wostringstream out; local 48 std::wostringstream out; local 58 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local 66 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local 75 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local 83 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local [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/lzma/Java/Tukaani/src/org/tukaani/xz/ |
CountingOutputStream.java | 24 private final OutputStream out; field in class:CountingOutputStream 27 public CountingOutputStream(OutputStream out) { 28 this.out = out; 32 out.write(b); 38 out.write(b, off, len); 44 out.flush(); 48 out.close();
|