Lines Matching defs:third
282 // Test with a third Stream
283 lzma_index *third = lzma_index_init(NULL);
284 assert_true(third != NULL);
287 assert_lzma_ret(lzma_index_stream_flags(third, &stream_flags),
290 assert_uint_eq(lzma_index_checks(third),
293 assert_lzma_ret(lzma_index_cat(idx, third, NULL), LZMA_OK);
668 lzma_index *third = lzma_index_init(NULL);
669 assert_true(third != NULL);
672 assert_lzma_ret(lzma_index_cat(first, third, NULL), LZMA_OK);
730 lzma_index *third = lzma_index_init(NULL);
731 assert_true(third != NULL);
734 assert_lzma_ret(lzma_index_cat(first, third, NULL), LZMA_OK);
868 // The third Stream will have 2 Blocks
869 lzma_index *third = lzma_index_init(NULL);
870 assert_true(third != NULL);
872 assert_lzma_ret(lzma_index_append(third, NULL, 32, 20), LZMA_OK);
873 assert_lzma_ret(lzma_index_append(third, NULL, 64, 40), LZMA_OK);
875 const lzma_vli third_stream_index_size = lzma_index_size(third);
878 assert_lzma_ret(lzma_index_cat(first, third, NULL), LZMA_OK);
976 // We will get to the first Block of the third Stream.
980 // Iterate past the second (the last) Block in the third Stream
1021 // Add the third Record.
1337 lzma_index *third = lzma_index_init(NULL);
1338 assert_true(third != NULL);
1340 assert_lzma_ret(lzma_index_append(third, NULL,
1342 assert_lzma_ret(lzma_index_append(third, NULL,
1344 assert_lzma_ret(lzma_index_append(third, NULL,
1348 assert_lzma_ret(lzma_index_cat(idx, third, NULL), LZMA_OK);