HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 26 - 50 of 5160) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
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/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/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/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/sqlite/android/
PhoneNumberUtilsTest.cpp 131 char out[6]; local
135 phone_number_stripped_reversed_inter((input), out, sizeof(out), &outlen); \
136 out[outlen] = 0; \
137 ASSERT_STREQ((expected), (out)); \
  /external/valgrind/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]);
  /libcore/ojluni/src/main/java/java/io/
FilterWriter.java 46 protected Writer out; field in class:FilterWriter
51 * @param out a Writer object to provide the underlying stream.
52 * @throws NullPointerException if <code>out</code> is <code>null</code>
54 protected FilterWriter(Writer out) {
55 super(out);
56 this.out = out;
65 out.write(c);
78 out.write(cbuf, off, len);
91 out.write(str, off, len)
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
memclr_mips64x.s 17 BNE R3, out
31 BEQ R3, out
36 out: label
  /prebuilts/go/linux-x86/src/runtime/
memclr_mips64x.s 17 BNE R3, out
31 BEQ R3, out
36 out: label
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/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
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/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...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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...]
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptor_AutoCloseOutputStreamTest.java 28 AutoCloseOutputStream out = new AutoCloseOutputStream(pf); local
30 out.write(2);
32 out.close();
35 out.write(2);
  /external/apache-harmony/support/src/test/java/tests/support/
Streams.java 38 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
41 out.write(buffer, 0, count);
43 return out.toByteArray();
51 StringWriter out = new StringWriter(); local
54 out.write(buffer, 0, count);
56 return out.toString();
  /external/jacoco/org.jacoco.agent.rt/src/com/vladium/emma/rt/
RT.java 50 final OutputStream out = new FileOutputStream(outFile, merge); local
52 out.write(org.jacoco.agent.rt.RT.getAgent().getExecutionData(false));
54 out.close();
  /libcore/support/src/test/java/tests/support/
Streams.java 38 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
41 out.write(buffer, 0, count);
43 return out.toByteArray();
51 StringWriter out = new StringWriter(); local
54 out.write(buffer, 0, count);
56 return out.toString();
  /art/test/138-duplicate-classes-check/src-ex/
TestEx.java 19 System.out.println(new A().i);
  /art/test/138-duplicate-classes-check2/src-ex/
TestEx.java 19 System.out.println(new A().i);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
partition.h 16 PyObject* out; local
24 out = PyTuple_New(3);
25 if (!out)
32 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, str_len));
33 PyTuple_SET_ITEM(out, 1, STRINGLIB_NEW(NULL, 0));
34 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(NULL, 0));
37 PyTuple_SET_ITEM(out, 0, (PyObject*) str_obj);
39 PyTuple_SET_ITEM(out, 1, (PyObject*) STRINGLIB_EMPTY);
41 PyTuple_SET_ITEM(out, 2, (PyObject*) STRINGLIB_EMPTY);
43 return out;
66 PyObject* out; local
    [all...]

Completed in 985 milliseconds

12 3 4 5 6 7 8 91011>>