HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1 - 25 of 5853) 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
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]);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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/e2fsprogs/lib/uuid/
pack.c 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
42 unsigned char *out = ptr; local
45 out[3] = (unsigned char) tmp;
47 out[2] = (unsigned char) tmp;
49 out[1] = (unsigned char) tmp;
51 out[0] = (unsigned char) tmp;
54 out[5] = (unsigned char) tmp;
56 out[4] = (unsigned char) tmp;
59 out[7] = (unsigned char) tmp;
61 out[6] = (unsigned char) tmp
    [all...]
  /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/libcxx/test/std/strings/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/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();
FinishableWrapperOutputStream.java 25 protected OutputStream out; field in class:FinishableWrapperOutputStream
31 public FinishableWrapperOutputStream(OutputStream out) {
32 this.out = out;
36 * Calls {@link java.io.OutputStream#write(int) out.write(b)}.
39 out.write(b);
43 * Calls {@link java.io.OutputStream#write(byte[]) out.write(buf)}.
46 out.write(buf);
51 out.write(buf, off, len)}.
54 out.write(buf, off, len)
    [all...]
  /external/python/cpython3/Objects/stringlib/
partition.h 13 PyObject* out; local
21 out = PyTuple_New(3);
22 if (!out)
29 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, str_len));
30 PyTuple_SET_ITEM(out, 1, STRINGLIB_NEW(NULL, 0));
31 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(NULL, 0));
34 Py_DECREF(out);
39 PyTuple_SET_ITEM(out, 0, (PyObject*) str_obj);
41 PyTuple_SET_ITEM(out, 1, (PyObject*) STRINGLIB_EMPTY);
43 PyTuple_SET_ITEM(out, 2, (PyObject*) STRINGLIB_EMPTY)
68 PyObject* out; local
    [all...]

Completed in 583 milliseconds

1 2 3 4 5 6 7 8 91011>>