/freebsd/contrib/libcbor/src/cbor/ |
H A D | maps.c | 31 .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() 78 item->data, sizeof(struct cbor_pair), new_allocation); in _cbor_map_add_key() 87 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 D | maps.h | 67 struct cbor_pair pair); 114 _CBOR_NODISCARD CBOR_EXPORT struct cbor_pair *cbor_map_handle(
|
H A D | data.h | 201 struct cbor_pair { struct
|
H A D | serialization.c | 126 struct cbor_pair *items = cbor_map_handle(item); in cbor_serialized_size() 305 struct cbor_pair *handle = cbor_map_handle(item); in cbor_serialize_map()
|
H A D | common.c | 131 struct cbor_pair *handle = cbor_map_handle(item); in cbor_decref()
|
/freebsd/contrib/libcbor/test/ |
H A D | map_test.c | 48 struct cbor_pair *handle = cbor_map_handle(map); in test_simple_map() 68 struct cbor_pair *handle = cbor_map_handle(map); in test_indef_simple_map() 95 struct cbor_pair *handle = cbor_map_handle(map); in test_def_nested_map() 98 struct cbor_pair *inner_handle = cbor_map_handle(handle[0].value); in test_def_nested_map() 119 struct cbor_pair *handle = cbor_map_handle(map); in test_streamed_key_map() 141 struct cbor_pair *handle = cbor_map_handle(map); in test_streamed_kv_map() 168 struct cbor_pair *handle = cbor_map_handle(map); in test_streamed_streamed_kv_map() 187 assert_false(cbor_map_add(map, (struct cbor_pair){.key = one, .value = two})); in test_map_add_full() 204 assert_false(cbor_map_add(map, (struct cbor_pair){.key = one, .value = two})); in test_map_add_too_big_to_realloc() 229 cbor_map_add(map, (struct cbor_pair){.key = key, .value = value})); in test_map_add()
|
H A D | copy_test.c | 125 assert_true(cbor_map_add(item, (struct cbor_pair){ in test_def_map() 138 assert_true(cbor_map_add(item, (struct cbor_pair){ in test_indef_map() 350 cbor_map_add(item, (struct cbor_pair){cbor_move(cbor_build_uint8(42)), in test_map_alloc_failure() 362 cbor_map_add(item, (struct cbor_pair){cbor_move(cbor_build_uint8(42)), in test_map_key_alloc_failure() 376 cbor_map_add(item, (struct cbor_pair){cbor_move(cbor_build_uint8(42)), in test_map_value_alloc_failure() 390 cbor_map_add(item, (struct cbor_pair){cbor_move(cbor_build_uint8(42)), in test_map_add_failure() 404 cbor_map_add(item, (struct cbor_pair){cbor_move(cbor_build_uint8(42)), in test_map_second_key_failure() 407 item, (struct cbor_pair){cbor_move(cbor_build_uint8(43)), in test_map_second_key_failure()
|
H A D | cbor_serialize_test.c | 360 assert_true(cbor_map_add(item, (struct cbor_pair){.key = one, .value = two})); in test_serialize_map_no_space() 361 assert_true(cbor_map_add(item, (struct cbor_pair){.key = two, .value = one})); in test_serialize_map_no_space() 377 assert_true(cbor_map_add(item, (struct cbor_pair){.key = one, .value = two})); in test_serialize_map_no_space() 378 assert_true(cbor_map_add(item, (struct cbor_pair){.key = two, .value = one})); in test_serialize_map_no_space() 393 assert_true(cbor_map_add(item, (struct cbor_pair){.key = one, .value = two})); in test_serialize_tags()
|
/freebsd/contrib/libcbor/examples/ |
H A D | create_items.c | 16 root, (struct cbor_pair){ in main() 20 root, (struct cbor_pair){ in main()
|
/freebsd/contrib/libcbor/doc/source/api/ |
H A D | type_5.rst | 22 Storage requirements (definite) ``sizeof(cbor_pair) * size + sizeof(cbor_item_t)`` 23 Storage requirements (indefinite) ``<= sizeof(cbor_item_t) + sizeof(cbor_pair) * size * BUFFER_GR…
|
/freebsd/contrib/libfido2/src/ |
H A D | cbor.c | 66 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 D | es256.c | 74 struct cbor_pair argv[5]; in es256_pk_encode()
|
H A D | u2f.c | 444 struct cbor_pair kv[3]; in encode_cred_attstmt()
|
/freebsd/contrib/libcbor/ |
H A D | README.md | 70 root, (struct cbor_pair){ 74 root, (struct cbor_pair){
|
/freebsd/contrib/libcbor/doc/source/ |
H A D | using.rst | 70 cbor_map_add(root, (struct cbor_pair) { 74 cbor_map_add(root, (struct cbor_pair) {
|
/freebsd/contrib/libcbor/src/ |
H A D | cbor.c | 250 struct cbor_pair *it = cbor_map_handle(item); in cbor_copy() 263 if (!cbor_map_add(res, (struct cbor_pair){.key = key_copy, in cbor_copy()
|
/freebsd/contrib/libfido2/fuzz/ |
H A D | wrap.c | 573 WRAP(struct cbor_pair *, 599 (cbor_item_t *item, struct cbor_pair pair),
|
/freebsd/contrib/libfido2/tools/ |
H A D | largeblob.c | 449 struct cbor_pair *v; in decode_blob_entry()
|