Home
last modified time | relevance | path

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

/netbsd-src/external/mit/libcbor/dist/test/
H A Dtype_3_encoders_test.c19 assert_int_equal(1, cbor_encode_string_start(1, buffer, 512)); in test_embedded_string_start()
24 assert_int_equal(5, cbor_encode_string_start(1000000, buffer, 512)); in test_string_start()
/netbsd-src/external/mit/libcbor/dist/src/cbor/
H A Dencoding.h47 size_t cbor_encode_string_start(size_t, unsigned char *, 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.c147 size_t written = cbor_encode_string_start(length, buffer, buffer_size); in cbor_serialize_string()