Lines Matching defs:out
91 static int cbs_get_u(CBS *cbs, uint64_t *out, size_t len) { in cbs_get_u()
106 int CBS_get_u8(CBS *cbs, uint8_t *out) { in CBS_get_u8()
115 int CBS_get_u16(CBS *cbs, uint16_t *out) { in CBS_get_u16()
124 int CBS_get_u24(CBS *cbs, uint32_t *out) { in CBS_get_u24()
133 int CBS_get_u32(CBS *cbs, uint32_t *out) { in CBS_get_u32()
142 int CBS_get_u64(CBS *cbs, uint64_t *out) { in CBS_get_u64()
146 int CBS_get_last_u8(CBS *cbs, uint8_t *out) { in CBS_get_last_u8()
155 int CBS_get_bytes(CBS *cbs, CBS *out, size_t len) { in CBS_get_bytes()
164 int CBS_copy_bytes(CBS *cbs, uint8_t *out, size_t len) { in CBS_copy_bytes()
173 static int cbs_get_length_prefixed(CBS *cbs, CBS *out, size_t len_len) { in cbs_get_length_prefixed()
184 int CBS_get_u8_length_prefixed(CBS *cbs, CBS *out) { in CBS_get_u8_length_prefixed()
188 int CBS_get_u16_length_prefixed(CBS *cbs, CBS *out) { in CBS_get_u16_length_prefixed()
192 int CBS_get_u24_length_prefixed(CBS *cbs, CBS *out) { in CBS_get_u24_length_prefixed()
199 static int parse_base128_integer(CBS *cbs, uint64_t *out) { in parse_base128_integer()
223 static int parse_asn1_tag(CBS *cbs, unsigned *out) { in parse_asn1_tag()
256 static int cbs_get_any_asn1_element(CBS *cbs, CBS *out, unsigned *out_tag, in cbs_get_any_asn1_element()
337 int CBS_get_any_asn1(CBS *cbs, CBS *out, unsigned *out_tag) { in CBS_get_any_asn1()
351 int CBS_get_any_asn1_element(CBS *cbs, CBS *out, unsigned *out_tag, in CBS_get_any_asn1_element()
357 int CBS_get_any_ber_asn1_element(CBS *cbs, CBS *out, unsigned *out_tag, in CBS_get_any_ber_asn1_element()
363 static int cbs_get_asn1(CBS *cbs, CBS *out, unsigned tag_value, in cbs_get_asn1()
386 int CBS_get_asn1(CBS *cbs, CBS *out, unsigned tag_value) { in CBS_get_asn1()
390 int CBS_get_asn1_element(CBS *cbs, CBS *out, unsigned tag_value) { in CBS_get_asn1_element()
404 int CBS_get_asn1_uint64(CBS *cbs, uint64_t *out) { in CBS_get_asn1_uint64()
441 int CBS_get_asn1_bool(CBS *cbs, int *out) { in CBS_get_asn1_bool()
457 int CBS_get_optional_asn1(CBS *cbs, CBS *out, int *out_present, unsigned tag) { in CBS_get_optional_asn1()
474 int CBS_get_optional_asn1_octet_string(CBS *cbs, CBS *out, int *out_present, in CBS_get_optional_asn1_octet_string()
496 int CBS_get_optional_asn1_uint64(CBS *cbs, uint64_t *out, unsigned tag, in CBS_get_optional_asn1_uint64()
514 int CBS_get_optional_asn1_bool(CBS *cbs, int *out, unsigned tag, in CBS_get_optional_asn1_bool()
581 static int add_decimal(CBB *out, uint64_t v) { in add_decimal()