Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/libcbor/test/
H A Dtype_2_encoders_test.c19 assert_int_equal(1, cbor_encode_bytestring_start(1, buffer, 512)); in test_embedded_bytestring_start()
24 assert_int_equal(5, cbor_encode_bytestring_start(1000000, buffer, 512)); in test_bytestring_start()
/freebsd-13.1/contrib/libcbor/src/cbor/
H A Dencoding.h44 CBOR_EXPORT size_t cbor_encode_bytestring_start(size_t, unsigned char *,
H A Dencoding.c61 size_t cbor_encode_bytestring_start(size_t length, unsigned char *buffer, in cbor_encode_bytestring_start() function
H A Dserialization.c113 size_t written = cbor_encode_bytestring_start(length, buffer, buffer_size); in cbor_serialize_bytestring()