a 29 src/common/tuklib_common.h #define TUKLIB_CAT_X(a, b) a ## b
a 30 src/common/tuklib_common.h #define TUKLIB_CAT(a, b) TUKLIB_CAT_X(a, b)
a 55 src/liblzma/check/sha256.c h(i) += S0(a(i)) + Maj(a(i), b(i), c(i))
a 101 src/liblzma/check/sha256.c state[0] += a(0);
a 25 src/liblzma/common/stream_flags_common.c if (a->version != 0 || b->version != 0)
a 29 src/liblzma/common/stream_flags_common.c if ((unsigned int)(a->check) > LZMA_CHECK_ID_MAX
a 33 src/liblzma/common/stream_flags_common.c if (a->check != b->check)
a 37 src/liblzma/common/stream_flags_common.c if (a->backward_size != LZMA_VLI_UNKNOWN
a 39 src/liblzma/common/stream_flags_common.c if (!is_backward_size_valid(a) || !is_backward_size_valid(b))
a 42 src/liblzma/common/stream_flags_common.c if (a->backward_size != b->backward_size)
a 29 src/liblzma/lzma/lzma_encoder_private.h (*(const uint16_t *)(a) != *(const uint16_t *)(b))
a 32 src/liblzma/lzma/lzma_encoder_private.h ((a)[0] != (b)[0] || (a)[1] != (b)[1])
a 27 tests/bcj_test.c if (a < b)
a 28 tests/bcj_test.c a = jump(a, b);
a 30 tests/bcj_test.c return a;
a 39 tests/bcj_test.c if (a < b) {
a 40 tests/bcj_test.c a *= 2;
a 41 tests/bcj_test.c a += 3 * b;
a 45 tests/bcj_test.c a += b;
a 46 tests/bcj_test.c a /= 2;
a 48 tests/bcj_test.c a -= b / 3;
a 49 tests/bcj_test.c b = 2 * b + a - 1;
a 50 tests/bcj_test.c a *= b + a + 1;
a 51 tests/bcj_test.c b += a - 1;
a 52 tests/bcj_test.c a += b * 2 - a / 5;
a 56 tests/bcj_test.c return a;
a 63 tests/bcj_test.c int a = call(argc, argc + 1);
a 64 tests/bcj_test.c return a == 0;
a 77 tests/test_index.c lzma_index_iter_init(&ra, a);
a 129 tests/test_index.c lzma_index *a = create_empty();
a 132 tests/test_index.c expect(a && b && c);
a 134 tests/test_index.c expect(is_equal(a, a));
a 138 tests/test_index.c expect(!is_equal(a, b));
a 139 tests/test_index.c expect(!is_equal(a, c));
a 142 tests/test_index.c lzma_index_end(a, NULL);
a 293 tests/test_index.c lzma_index *a, *b, *c;
a 297 tests/test_index.c a = create_empty();
a 299 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK);
a 300 tests/test_index.c expect(lzma_index_block_count(a) == 0);
a 301 tests/test_index.c expect(lzma_index_stream_size(a) == 2 * LZMA_STREAM_HEADER_SIZE + 8);
a 302 tests/test_index.c expect(lzma_index_file_size(a)
a 304 tests/test_index.c lzma_index_iter_init(&r, a);
a 308 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK);
a 309 tests/test_index.c expect(lzma_index_block_count(a) == 0);
a 310 tests/test_index.c expect(lzma_index_stream_size(a) == 2 * LZMA_STREAM_HEADER_SIZE + 8);
a 311 tests/test_index.c expect(lzma_index_file_size(a)
a 323 tests/test_index.c expect(lzma_index_stream_padding(a, 8) == LZMA_OK);
a 324 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK);
a 325 tests/test_index.c expect(lzma_index_block_count(a) == 0);
a 326 tests/test_index.c expect(lzma_index_stream_size(a) == 2 * LZMA_STREAM_HEADER_SIZE + 8);
a 327 tests/test_index.c expect(lzma_index_file_size(a)
a 333 tests/test_index.c lzma_index_end(a, NULL);
a 336 tests/test_index.c a = create_small();
a 337 tests/test_index.c lzma_vli stream_size = lzma_index_stream_size(a);
a 338 tests/test_index.c lzma_index_iter_init(&r, a);
a 344 tests/test_index.c expect(lzma_index_stream_padding(a, 4) == LZMA_OK);
a 345 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK);
a 346 tests/test_index.c expect(lzma_index_file_size(a) == stream_size * 2 + 4);
a 347 tests/test_index.c expect(lzma_index_stream_size(a) > stream_size);
a 348 tests/test_index.c expect(lzma_index_stream_size(a) < stream_size * 2);
a 362 tests/test_index.c expect(lzma_index_stream_padding(a, 12) == LZMA_OK);
a 363 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK);
a 364 tests/test_index.c expect(lzma_index_file_size(a) == stream_size * 4 + 4 + 8 + 12);
a 366 tests/test_index.c expect(lzma_index_block_count(a) == SMALL_COUNT * 4);
a 376 tests/test_index.c lzma_index_end(a, NULL);
a 379 tests/test_index.c a = create_empty();
a 381 tests/test_index.c expect(lzma_index_stream_padding(a, 4) == LZMA_OK);
a 382 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK);
a 383 tests/test_index.c lzma_index_iter_init(&r, a);
a 388 tests/test_index.c lzma_index_end(a, NULL);
a 391 tests/test_index.c a = create_big();
a 392 tests/test_index.c stream_size = lzma_index_stream_size(a);
a 394 tests/test_index.c expect(lzma_index_stream_padding(a, 4) == LZMA_OK);
a 395 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK);
a 396 tests/test_index.c expect(lzma_index_file_size(a) == stream_size * 2 + 4);
a 397 tests/test_index.c expect(lzma_index_stream_size(a) > stream_size);
a 398 tests/test_index.c expect(lzma_index_stream_size(a) < stream_size * 2);
a 404 tests/test_index.c expect(lzma_index_stream_padding(a, 12) == LZMA_OK);
a 405 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK);
a 406 tests/test_index.c expect(lzma_index_file_size(a) == stream_size * 4 + 4 + 8 + 12);
a 408 tests/test_index.c lzma_index_iter_init(&r, a);
a 413 tests/test_index.c lzma_index_end(a, NULL);