Home
last modified time | relevance | path

Searched refs:cbor_array_get (Results 1 – 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/libcbor/test/
HDarray_test.c40 cbor_item_t *intermediate = cbor_array_get(arr, 0); in test_simple_array()
142 assert_uint8(cbor_move(cbor_array_get(array, 0)), 3); in test_array_replace()
143 assert_uint8(cbor_move(cbor_array_get(array, 1)), 2); in test_array_replace()
HDcopy_test.c107 assert_uint8(tmp = cbor_array_get(copy = cbor_copy(item), 0), 42); in test_def_array()
117 assert_uint8(tmp = cbor_array_get(copy = cbor_copy(item), 0), 42); in test_indef_array()
/freebsd-13-stable/contrib/libcbor/src/cbor/
HDarrays.h44 CBOR_EXPORT cbor_item_t* cbor_array_get(const cbor_item_t* item, size_t index);
HDarrays.c22 cbor_item_t *cbor_array_get(const cbor_item_t *item, size_t index) { in cbor_array_get() function
/freebsd-13-stable/contrib/libcbor/doc/source/api/
HDtype_4.rst49 .. doxygenfunction:: cbor_array_get
/freebsd-13-stable/contrib/libcbor/src/
HDcbor.c224 cbor_item_t *entry_copy = cbor_copy(cbor_move(cbor_array_get(item, i))); in cbor_copy()