Lines Matching refs:bytes
479 CBS bytes; in CBS_get_asn1_uint64_with_tag() local
480 if (!CBS_get_asn1(cbs, &bytes, tag) || in CBS_get_asn1_uint64_with_tag()
481 !CBS_is_unsigned_asn1_integer(&bytes)) { in CBS_get_asn1_uint64_with_tag()
486 const uint8_t *data = CBS_data(&bytes); in CBS_get_asn1_uint64_with_tag()
487 size_t len = CBS_len(&bytes); in CBS_get_asn1_uint64_with_tag()
506 CBS bytes; in CBS_get_asn1_int64_with_tag() local
507 if (!CBS_get_asn1(cbs, &bytes, tag) || in CBS_get_asn1_int64_with_tag()
508 !CBS_is_valid_asn1_integer(&bytes, &is_negative)) { in CBS_get_asn1_int64_with_tag()
511 const uint8_t *data = CBS_data(&bytes); in CBS_get_asn1_int64_with_tag()
512 const size_t len = CBS_len(&bytes); in CBS_get_asn1_int64_with_tag()
524 CBS bytes; in CBS_get_asn1_bool() local
525 if (!CBS_get_asn1(cbs, &bytes, CBS_ASN1_BOOLEAN) || CBS_len(&bytes) != 1) { in CBS_get_asn1_bool()
529 const uint8_t value = *CBS_data(&bytes); in CBS_get_asn1_bool()