Home
last modified time | relevance | path

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

/netbsd-src/external/mit/libcbor/dist/test/
H A Dtype_6_test.c26 assert_true(cbor_tag_value(tag) == 0); in test_embedded_tag()
38 assert_true(cbor_tag_value(tag) == 255); in test_int8_tag()
50 assert_true(cbor_tag_value(tag) == 255 << 8); in test_int16_tag()
62 assert_true(cbor_tag_value(tag) == 4278190080ULL); in test_int32_tag()
75 assert_true(cbor_tag_value(tag) == 18374686479671623680ULL); in test_int64_tag()
87 assert_true(cbor_tag_value(tag) == 0); in test_nested_tag()
89 assert_true(cbor_tag_value(cbor_tag_item(tag)) == 1); in test_nested_tag()
/netbsd-src/external/mit/libcbor/dist/src/cbor/
H A Dtags.h43 uint64_t cbor_tag_value(const cbor_item_t *item);
H A Dtags.c28 uint64_t cbor_tag_value(const cbor_item_t *item) { in cbor_tag_value() function
H A Dserialization.c256 size_t written = cbor_encode_tag(cbor_tag_value(item), buffer, buffer_size); in cbor_serialize_tag()
/netbsd-src/external/mit/libcbor/dist/doc/source/api/
H A Dtype_6.rst19 .. doxygenfunction:: cbor_tag_value
/netbsd-src/external/mit/libcbor/dist/src/
H A Dcbor.c216 return cbor_build_tag(cbor_tag_value(item), in cbor_copy()
318 fprintf(out, "Value: %" PRIu64 "\n", cbor_tag_value(item)); in _cbor_nested_describe()