Home
last modified time | relevance | path

Searched refs:cbor_encode_tag (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/mit/libcbor/dist/test/
H A Dtype_6_encoders_test.c19 assert_int_equal(1, cbor_encode_tag(1, buffer, 512)); in test_embedded_tag()
24 assert_int_equal(5, cbor_encode_tag(1000000, buffer, 512)); in test_tag()
/netbsd-src/external/mit/libcbor/dist/src/cbor/
H A Dencoding.h59 size_t cbor_encode_tag(uint64_t, unsigned char *, size_t);
H A Dencoding.c109 size_t cbor_encode_tag(uint64_t value, unsigned char *buffer, in cbor_encode_tag() function
H A Dserialization.c256 size_t written = cbor_encode_tag(cbor_tag_value(item), buffer, buffer_size); in cbor_serialize_tag()