Home
last modified time | relevance | path

Searched refs:out_contents (Results 1 – 11 of 11) sorted by relevance

/external/boringssl/src/crypto/bytestring/
Dcbb.c297 static int cbb_add_length_prefixed(CBB *cbb, CBB *out_contents, in cbb_add_length_prefixed() argument
311 OPENSSL_memset(out_contents, 0, sizeof(CBB)); in cbb_add_length_prefixed()
312 out_contents->base = cbb->base; in cbb_add_length_prefixed()
313 cbb->child = out_contents; in cbb_add_length_prefixed()
321 int CBB_add_u8_length_prefixed(CBB *cbb, CBB *out_contents) { in CBB_add_u8_length_prefixed() argument
322 return cbb_add_length_prefixed(cbb, out_contents, 1); in CBB_add_u8_length_prefixed()
325 int CBB_add_u16_length_prefixed(CBB *cbb, CBB *out_contents) { in CBB_add_u16_length_prefixed() argument
326 return cbb_add_length_prefixed(cbb, out_contents, 2); in CBB_add_u16_length_prefixed()
329 int CBB_add_u24_length_prefixed(CBB *cbb, CBB *out_contents) { in CBB_add_u24_length_prefixed() argument
330 return cbb_add_length_prefixed(cbb, out_contents, 3); in CBB_add_u24_length_prefixed()
[all …]
Dber.c123 CBB *out_contents, out_contents_storage; in cbs_convert_ber() local
140 out_contents = out; in cbs_convert_ber()
152 out_contents = &out_contents_storage; in cbs_convert_ber()
158 if (!cbs_convert_ber(in, out_contents, child_string_tag, in cbs_convert_ber()
172 if (!cbs_convert_ber(&contents, out_contents, child_string_tag, in cbs_convert_ber()
178 if (!CBB_add_bytes(out_contents, CBS_data(&contents), in cbs_convert_ber()
/external/image_io/src/gcontainer/
Dgcontainer.cc143 std::string* out_contents) { in ParseFileAfterImageFromStream() argument
144 if (out_contents == nullptr || start_offset < 0 || length == 0) { in ParseFileAfterImageFromStream()
175 out_contents->resize(file_range_size); in ParseFileAfterImageFromStream()
176 input_jpeg_stream.read(&(*out_contents)[0], file_range_size); in ParseFileAfterImageFromStream()
/external/catch2/scripts/
DupdateDocumentToC.py138 out_contents = []
171 out_contents.append(id_tag)
174 out_contents.append(l)
176 out_contents.append('[[back to top](#table-of-contents)]')
177 return out_contents, headlines
/external/tensorflow/tensorflow/tools/mlpbtxt/
Dfrommlpbtxt.cc56 const string out_contents = PBTxtFromMultiline(in_contents); in Run() local
57 s = WriteStringToFile(Env::Default(), FLAGS_out, out_contents); in Run()
Dtomlpbtxt.cc67 const string out_contents = PBTxtToMultiline(in_contents, fields); in Run() local
68 s = WriteStringToFile(Env::Default(), FLAGS_out, out_contents); in Run()
/external/boringssl/src/include/openssl/
Dbytestring.h412 OPENSSL_EXPORT int CBB_add_u8_length_prefixed(CBB *cbb, CBB *out_contents);
417 OPENSSL_EXPORT int CBB_add_u16_length_prefixed(CBB *cbb, CBB *out_contents);
422 OPENSSL_EXPORT int CBB_add_u24_length_prefixed(CBB *cbb, CBB *out_contents);
427 OPENSSL_EXPORT int CBB_add_asn1(CBB *cbb, CBB *out_contents, unsigned tag);
Dbio.h386 const uint8_t **out_contents,
/external/image_io/includes/image_io/gcontainer/
Dgcontainer.h36 std::string* out_contents);
/external/boringssl/src/crypto/bio/
Dbio_mem.c303 int BIO_mem_contents(const BIO *bio, const uint8_t **out_contents, in BIO_mem_contents() argument
311 *out_contents = (uint8_t *)b->data; in BIO_mem_contents()
/external/boringssl/src/
DSTYLE.md182 /* CBB_add_asn sets |*out_contents| to a |CBB| into which the contents of an
185 OPENSSL_EXPORT int CBB_add_asn1(CBB *cbb, CBB *out_contents, unsigned tag);