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

1 2 3 4 5 6 7 8 91011>>

  /external/grpc-grpc/src/benchmark/
gen_build_yaml.py 24 out = {} variable
26 out['libs'] = [{
38 print yaml.dump(out)
  /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/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/grpc-grpc/src/c-ares/
gen_build_yaml.py 24 out = {} variable
51 out['libs'] = [{
140 print yaml.dump(out)
  /external/grpc-grpc/src/zlib/
gen_build_yaml.py 24 out = {} variable
39 out['libs'] = [{
52 print yaml.dump(out)
  /external/grpc-grpc/tools/buildgen/
mako_renderer.py 47 def out(msg): function
52 out('mako-renderer.py [-o out] [-m cache] [-P preprocessed_input] [-d dict] [-d dict...]'
71 out('Unknown option')
77 out('Displaying showhelp')
82 out('Got more than one output')
89 out('Got more than one cache directory')
95 out('Got more than one output merged path')
186 out('Got nothing to do')
  /external/libchrome/mojo/public/cpp/base/
memory_allocator_dump_cross_process_uid_unittest.cc 15 base::trace_event::MemoryAllocatorDumpGuid out; local
18 mojom::MemoryAllocatorDumpCrossProcessUid>(&in, &out));
19 EXPECT_EQ(in, out);
24 base::trace_event::MemoryAllocatorDumpGuid out; local
27 mojom::MemoryAllocatorDumpCrossProcessUid>(&in, &out));
28 EXPECT_EQ(in, out);
34 base::trace_event::MemoryAllocatorDumpGuid out; local
37 mojom::MemoryAllocatorDumpCrossProcessUid>(&in, &out));
38 EXPECT_EQ(in, out);
  /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/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...]
  /external/sqlite/android/
PhoneNumberUtilsTest.cpp 198 char out[6]; local
202 phone_number_stripped_reversed_inter((input), out, sizeof(out), &outlen); \
203 out[outlen] = 0; \
204 ASSERT_STREQ((expected), (out)); \
  /external/tensorflow/tensorflow/core/ops/
stateful_random_ops.cc 27 ShapeHandle out; local
28 TF_RETURN_IF_ERROR(c->MakeShapeFromShapeTensor(2, &out));
29 c->set_output(0, out);
63 ShapeHandle out;
64 TF_RETURN_IF_ERROR(c->MakeShapeFromShapeTensor(2, &out));
65 c->set_output(0, out);
77 ShapeHandle out;
78 TF_RETURN_IF_ERROR(c->MakeShapeFromShapeTensor(0, &out));
79 c->set_output(0, out);
95 ShapeHandle out;
    [all...]
  /external/xz-java/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/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/xz/
XZCompressorOutputStream.java 33 private final XZOutputStream out; field in class:XZCompressorOutputStream
43 out = new XZOutputStream(outputStream, new LZMA2Options());
64 out = new XZOutputStream(outputStream, new LZMA2Options(preset));
69 out.write(b);
74 out.write(buf, off, len);
85 out.flush();
94 out.finish();
99 out.close();

Completed in 821 milliseconds

1 2 3 4 5 6 7 8 91011>>