Home
last modified time | relevance | path

Searched refs:cbor_encode_string_start (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/libcbor/test/
H A Dstring_encoders_test.c14 assert_size_equal(1, cbor_encode_string_start(1, buffer, 512)); in test_embedded_string_start()
19 assert_size_equal(5, cbor_encode_string_start(1000000, buffer, 512)); in test_string_start()
/freebsd/contrib/libcbor/doc/source/api/
H A Dstreaming_encoding.rst36 .. doxygenfunction:: cbor_encode_string_start
/freebsd/contrib/libcbor/src/cbor/
H A Dencoding.h70 _CBOR_NODISCARD CBOR_EXPORT size_t cbor_encode_string_start(size_t,
H A Dencoding.c80 size_t cbor_encode_string_start(size_t length, unsigned char *buffer, in cbor_encode_string_start() function
H A Dserialization.c243 size_t written = cbor_encode_string_start(length, buffer, buffer_size); in cbor_serialize_string()