Home
last modified time | relevance | path

Searched refs:pending_len_len (Results 1 – 2 of 2) sorted by relevance

/external/boringssl/src/crypto/bytestring/
Dcbb.c209 if (cbb->child == NULL || cbb->child->pending_len_len == 0) { in CBB_flush()
213 child_start = cbb->child->offset + cbb->child->pending_len_len; in CBB_flush()
230 assert (cbb->child->pending_len_len == 1); in CBB_flush()
263 cbb->child->pending_len_len = len_len - 1; in CBB_flush()
266 for (i = cbb->child->pending_len_len - 1; i < cbb->child->pending_len_len; in CBB_flush()
287 return cbb->base->buf + cbb->offset + cbb->pending_len_len; in CBB_data()
292 assert(cbb->offset + cbb->pending_len_len <= cbb->base->len); in CBB_len()
294 return cbb->base->len - cbb->offset - cbb->pending_len_len; in CBB_len()
315 cbb->child->pending_len_len = len_len; in cbb_add_length_prefixed()
386 cbb->child->pending_len_len = 1; in CBB_add_asn1()
[all …]
/external/boringssl/src/include/openssl/
Dbytestring.h346 uint8_t pending_len_len; member