HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 351 - 375 of 5424) sorted by null

<<11121314151617181920>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERTaggedObject.java 96 ASN1OutputStream out)
99 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo);
100 out.write(0x80);
135 out.writeObject((ASN1Encodable)e.nextElement());
140 out.writeObject(obj);
144 out.write(0x00);
145 out.write(0x00);
DERNull.java 35 ASN1OutputStream out)
38 out.writeEncoded(BERTags.NULL, zeroBytes);
DEROctetString.java 45 ASN1OutputStream out)
48 out.writeEncoded(BERTags.OCTET_STRING, string);
DERTaggedObject.java 81 ASN1OutputStream out)
90 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo);
91 out.writeLength(primitive.encodedLength());
92 out.writeObject(primitive);
109 out.writeTag(flags, tagNo);
110 out.writeImplicitObject(primitive);
115 out.writeEncoded(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo, ZERO_BYTES);
DLTaggedObject.java 75 ASN1OutputStream out)
84 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo);
85 out.writeLength(primitive.encodedLength());
86 out.writeObject(primitive);
103 out.writeTag(flags, tagNo);
104 out.writeImplicitObject(primitive);
109 out.writeEncoded(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo, ZERO_BYTES);
  /external/conscrypt/libcore-stub/src/main/java/libcore/io/
Streams.java 52 * Copies all of the bytes from {@code in} to {@code out}. Neither stream is closed.
55 public static int copy(InputStream in, OutputStream out) throws IOException {
61 out.write(buffer, 0, c);
  /external/curl/tests/unit/
unit1396.c 40 const char *out; member in struct:test
82 char *out = curl_easy_unescape(hnd, variable
86 abort_unless(out != NULL, "returned NULL!");
88 fail_unless(!memcmp(out, list1[i].out, list1[i].outlen),
93 curl_free(out); variable
98 char *out = curl_easy_escape(hnd, list2[i].in, list2[i].inlen); variable
99 abort_unless(out != NULL, "returned NULL!");
101 outlen = (int)strlen(out);
103 fail_unless(!memcmp(out, list2[i].out, list2[i].outlen)
108 curl_free(out); variable
    [all...]
  /external/eigen/unsupported/doc/examples/
FFT.cpp 36 T out=0; local
38 out += mag2(vec[k]);
39 return out;
45 T out=0; local
47 out += mag2(vec[k]);
48 return out;
  /external/fmtlib/test/
gtest-extra.cc 24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
107 fmt::MemoryWriter out; local
108 fmt::format_system_error(out, error_code, message);
109 return out.str();
  /external/google-benchmark/src/
json_reporter.cc 59 std::ostream& out = GetOutputStream(); local
61 out << "{\n";
65 out << inner_indent << "\"context\": {\n";
69 out << indent << FormatKV("date", walltime_value) << ",\n";
71 out << indent << FormatKV("num_cpus", static_cast<int64_t>(context.num_cpus))
73 out << indent << FormatKV("mhz_per_cpu", RoundDouble(context.mhz_per_cpu))
75 out << indent << FormatKV("cpu_scaling_enabled", context.cpu_scaling_enabled)
83 out << indent << FormatKV("library_build_type", build_type) << "\n";
85 out << inner_indent << "},\n";
86 out << inner_indent << "\"benchmarks\": [\n"
95 std::ostream& out = GetOutputStream(); local
119 std::ostream& out = GetOutputStream(); local
    [all...]