Home
last modified time | relevance | path

Searched refs:cbor_pair (Results 1 – 19 of 19) sorted by relevance

/netbsd-src/external/mit/libcbor/dist/src/cbor/
H A Dmaps.c31 .data = _cbor_alloc_multiple(sizeof(struct cbor_pair), size)}; in cbor_new_definite_map()
57 struct cbor_pair *data = cbor_map_handle(item); in _cbor_map_add_key()
79 item->data, sizeof(struct cbor_pair), new_allocation); in _cbor_map_add_key()
88 struct cbor_pair *data = cbor_map_handle(item); in _cbor_map_add_key()
107 bool cbor_map_add(cbor_item_t *item, struct cbor_pair pair) { in cbor_map_add()
122 struct cbor_pair *cbor_map_handle(const cbor_item_t *item) { in cbor_map_handle()
124 return (struct cbor_pair *)item->data; in cbor_map_handle()
H A Dmaps.h61 bool cbor_map_add(cbor_item_t *item, struct cbor_pair pair);
105 struct cbor_pair *cbor_map_handle(const cbor_item_t *item);
H A Ddata.h194 struct cbor_pair { struct
H A Dcommon.c127 struct cbor_pair *handle = cbor_map_handle(item); in cbor_decref()
H A Dserialization.c215 struct cbor_pair *handle = cbor_map_handle(item); in cbor_serialize_map()
/netbsd-src/external/mit/libcbor/dist/test/
H A Dtype_5_test.c46 struct cbor_pair *handle = cbor_map_handle(map); in test_simple_map()
66 struct cbor_pair *handle = cbor_map_handle(map); in test_indef_simple_map()
93 struct cbor_pair *handle = cbor_map_handle(map); in test_def_nested_map()
96 struct cbor_pair *inner_handle = cbor_map_handle(handle[0].value); in test_def_nested_map()
117 struct cbor_pair *handle = cbor_map_handle(map); in test_streamed_key_map()
139 struct cbor_pair *handle = cbor_map_handle(map); in test_streamed_kv_map()
166 struct cbor_pair *handle = cbor_map_handle(map); in test_streamed_streamed_kv_map()
H A Dcbor_serialize_test.c197 cbor_map_add(item, (struct cbor_pair){.key = one, .value = two}); in test_serialize_definite_map()
198 cbor_map_add(item, (struct cbor_pair){.key = two, .value = one}); in test_serialize_definite_map()
213 assert_true(cbor_map_add(item, (struct cbor_pair){.key = one, .value = two})); in test_serialize_indefinite_map()
214 assert_true(cbor_map_add(item, (struct cbor_pair){.key = two, .value = one})); in test_serialize_indefinite_map()
H A Dcopy_test.c130 cbor_map_add(item, (struct cbor_pair){ in test_def_map()
143 cbor_map_add(item, (struct cbor_pair){ in test_indef_map()
H A Dmemory_allocation_test.c246 cbor_map_add(map, (struct cbor_pair){.key = key, .value = value})); in test_map_add()
/netbsd-src/external/mit/libcbor/dist/examples/
H A Dcreate_items.c16 (struct cbor_pair){ in main()
20 (struct cbor_pair){ in main()
/netbsd-src/external/mit/libcbor/dist/doc/source/api/
H A Dtype_5.rst13 Storage requirements (definite) ``sizeof(cbor_pair) * size + sizeof(cbor_item_t)``
14 Storage requirements (indefinite) ``<= sizeof(cbor_item_t) + sizeof(cbor_pair) * size * BUFFER_GR…
/netbsd-src/external/bsd/libfido2/dist/src/
H A Dcbor.c66 struct cbor_pair *v; in cbor_map_iter()
230 struct cbor_pair pair; in cbor_add_bytestring()
259 struct cbor_pair pair; in cbor_add_string()
288 struct cbor_pair pair; in cbor_add_bool()
317 struct cbor_pair pair; in cbor_add_uint8()
346 struct cbor_pair pair; in cbor_add_arg()
476 struct cbor_pair alg; in cbor_encode_pubkey_param()
789 struct cbor_pair pair; in cbor_encode_hmac_secret_param()
H A Des256.c74 struct cbor_pair argv[5]; in es256_pk_encode()
H A Du2f.c444 struct cbor_pair kv[3]; in encode_cred_attstmt()
/netbsd-src/external/mit/libcbor/dist/
H A DREADME.md62 cbor_map_add(root, (struct cbor_pair) {
66 cbor_map_add(root, (struct cbor_pair) {
/netbsd-src/external/mit/libcbor/dist/doc/source/
H A Dusing.rst70 cbor_map_add(root, (struct cbor_pair) {
74 cbor_map_add(root, (struct cbor_pair) {
/netbsd-src/external/mit/libcbor/dist/src/
H A Dcbor.c208 struct cbor_pair *it = cbor_map_handle(item); in cbor_copy()
210 cbor_map_add(res, (struct cbor_pair){ in cbor_copy()
/netbsd-src/external/bsd/libfido2/dist/fuzz/
H A Dwrap.c573 WRAP(struct cbor_pair *,
599 (cbor_item_t *item, struct cbor_pair pair),
/netbsd-src/external/bsd/libfido2/dist/tools/
H A Dlargeblob.c449 struct cbor_pair *v; in decode_blob_entry()