Lines Matching defs:two
306 cbor_item_t *two = cbor_build_uint8(2);
309 assert_true(cbor_array_set(item, 1, two));
317 cbor_decref(&two);
342 cbor_item_t *two = cbor_build_uint8(2);
345 assert_true(cbor_array_push(item, two));
352 cbor_decref(&two);
358 cbor_item_t *two = cbor_build_uint8(2);
360 assert_true(cbor_map_add(item, (struct cbor_pair){.key = one, .value = two}));
361 assert_true(cbor_map_add(item, (struct cbor_pair){.key = two, .value = one}));
369 cbor_decref(&two);
375 cbor_item_t *two = cbor_build_uint8(2);
377 assert_true(cbor_map_add(item, (struct cbor_pair){.key = one, .value = two}));
378 assert_true(cbor_map_add(item, (struct cbor_pair){.key = two, .value = one}));
386 cbor_decref(&two);
392 cbor_item_t *two = cbor_build_uint8(2);
393 assert_true(cbor_map_add(item, (struct cbor_pair){.key = one, .value = two}));
410 cbor_decref(&two);