b 29 src/common/tuklib_common.h #define TUKLIB_CAT_X(a, b) a ## b b 30 src/common/tuklib_common.h #define TUKLIB_CAT(a, b) TUKLIB_CAT_X(a, b) b 259 src/liblzma/api/lzma/block.h #define lzma_block_header_size_decode(b) (((uint32_t)(b) + 1) * 4) b 24 src/liblzma/check/crc32_small.c for (size_t b = 0; b < 256; ++b) { b 25 src/liblzma/check/crc32_small.c uint32_t r = b; b 33 src/liblzma/check/crc32_small.c lzma_crc32_table[0][b] = r; b 30 src/liblzma/check/crc32_tablegen.c for (size_t b = 0; b < 256; ++b) { b 31 src/liblzma/check/crc32_tablegen.c uint32_t r = s == 0 ? b : crc32_table[s - 1][b]; b 40 src/liblzma/check/crc32_tablegen.c crc32_table[s][b] = r; b 46 src/liblzma/check/crc32_tablegen.c for (size_t b = 0; b < 256; ++b) b 47 src/liblzma/check/crc32_tablegen.c crc32_table[s][b] = bswap32(crc32_table[s][b]); b 62 src/liblzma/check/crc32_tablegen.c for (size_t b = 0; b < 256; ++b) { b 63 src/liblzma/check/crc32_tablegen.c if ((b % 4) == 0) b 66 src/liblzma/check/crc32_tablegen.c printf("0x%08" PRIX32, crc32_table[s][b]); b 68 src/liblzma/check/crc32_tablegen.c if (b != 255) b 69 src/liblzma/check/crc32_tablegen.c printf(",%s", (b+1) % 4 == 0 ? "" : " "); b 89 src/liblzma/check/crc32_tablegen.c for (size_t b = 0; b < 256; ++b) { b 90 src/liblzma/check/crc32_tablegen.c if ((b % 4) == 0) b 93 src/liblzma/check/crc32_tablegen.c printf("0x%08" PRIX32, crc32_table[0][b]); b 95 src/liblzma/check/crc32_tablegen.c if (b != 255) b 96 src/liblzma/check/crc32_tablegen.c printf(",%s", (b+1) % 4 == 0 ? "" : " "); b 24 src/liblzma/check/crc64_small.c for (size_t b = 0; b < 256; ++b) { b 25 src/liblzma/check/crc64_small.c uint64_t r = b; b 33 src/liblzma/check/crc64_small.c crc64_table[b] = r; b 29 src/liblzma/check/crc64_tablegen.c for (size_t b = 0; b < 256; ++b) { b 30 src/liblzma/check/crc64_tablegen.c uint64_t r = s == 0 ? b : crc64_table[s - 1][b]; b 39 src/liblzma/check/crc64_tablegen.c crc64_table[s][b] = r; b 45 src/liblzma/check/crc64_tablegen.c for (size_t b = 0; b < 256; ++b) b 46 src/liblzma/check/crc64_tablegen.c crc64_table[s][b] = bswap64(crc64_table[s][b]); b 61 src/liblzma/check/crc64_tablegen.c for (size_t b = 0; b < 256; ++b) { b 62 src/liblzma/check/crc64_tablegen.c if ((b % 2) == 0) b 66 src/liblzma/check/crc64_tablegen.c crc64_table[s][b]); b 68 src/liblzma/check/crc64_tablegen.c if (b != 255) b 69 src/liblzma/check/crc64_tablegen.c printf(",%s", (b+1) % 2 == 0 ? "" : " "); b 55 src/liblzma/check/sha256.c h(i) += S0(a(i)) + Maj(a(i), b(i), c(i)) b 102 src/liblzma/check/sha256.c state[1] += b(0); b 25 src/liblzma/common/stream_flags_common.c if (a->version != 0 || b->version != 0) b 30 src/liblzma/common/stream_flags_common.c || (unsigned int)(b->check) > LZMA_CHECK_ID_MAX) b 33 src/liblzma/common/stream_flags_common.c if (a->check != b->check) b 38 src/liblzma/common/stream_flags_common.c && b->backward_size != LZMA_VLI_UNKNOWN) { b 39 src/liblzma/common/stream_flags_common.c if (!is_backward_size_valid(a) || !is_backward_size_valid(b)) b 42 src/liblzma/common/stream_flags_common.c if (a->backward_size != b->backward_size) b 29 src/liblzma/lzma/lzma_encoder_private.h (*(const uint16_t *)(a) != *(const uint16_t *)(b)) b 32 src/liblzma/lzma/lzma_encoder_private.h ((a)[0] != (b)[0] || (a)[1] != (b)[1]) b 17 src/liblzma/simple/x86.c #define Test86MSByte(b) ((b) == 0 || (b) == 0xFF) b 49 src/liblzma/simple/x86.c uint8_t b = buffer[buffer_pos]; b 50 src/liblzma/simple/x86.c if (b != 0xE8 && b != 0xE9) { b 68 src/liblzma/simple/x86.c b = buffer[buffer_pos + 4]; b 70 src/liblzma/simple/x86.c if (Test86MSByte(b) b 74 src/liblzma/simple/x86.c uint32_t src = ((uint32_t)(b) << 24) b 94 src/liblzma/simple/x86.c b = (uint8_t)(dest >> (24 - i * 8)); b 96 src/liblzma/simple/x86.c if (!Test86MSByte(b)) b 113 src/liblzma/simple/x86.c if (Test86MSByte(b)) b 27 tests/bcj_test.c if (a < b) b 28 tests/bcj_test.c a = jump(a, b); b 39 tests/bcj_test.c if (a < b) { b 41 tests/bcj_test.c a += 3 * b; b 45 tests/bcj_test.c a += b; b 47 tests/bcj_test.c b += b % 5; b 48 tests/bcj_test.c a -= b / 3; b 49 tests/bcj_test.c b = 2 * b + a - 1; b 50 tests/bcj_test.c a *= b + a + 1; b 51 tests/bcj_test.c b += a - 1; b 52 tests/bcj_test.c a += b * 2 - a / 5; b 78 tests/test_index.c lzma_index_iter_init(&rb, b); b 130 tests/test_index.c lzma_index *b = create_small(); b 132 tests/test_index.c expect(a && b && c); b 135 tests/test_index.c expect(is_equal(b, b)); b 138 tests/test_index.c expect(!is_equal(a, b)); b 140 tests/test_index.c expect(!is_equal(b, c)); b 143 tests/test_index.c lzma_index_end(b, NULL); b 293 tests/test_index.c lzma_index *a, *b, *c; b 298 tests/test_index.c b = create_empty(); b 299 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK); b 307 tests/test_index.c b = create_empty(); b 308 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK); b 314 tests/test_index.c b = create_empty(); b 316 tests/test_index.c expect(lzma_index_stream_padding(b, 4) == LZMA_OK); b 317 tests/test_index.c expect(lzma_index_cat(b, c, NULL) == LZMA_OK); b 318 tests/test_index.c expect(lzma_index_block_count(b) == 0); b 319 tests/test_index.c expect(lzma_index_stream_size(b) == 2 * LZMA_STREAM_HEADER_SIZE + 8); b 320 tests/test_index.c expect(lzma_index_file_size(b) b 324 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK); b 343 tests/test_index.c b = create_small(); b 345 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK); b 358 tests/test_index.c b = create_small(); b 360 tests/test_index.c expect(lzma_index_stream_padding(b, 8) == LZMA_OK); b 361 tests/test_index.c expect(lzma_index_cat(b, c, NULL) == LZMA_OK); b 363 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK); b 380 tests/test_index.c b = create_small(); b 382 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK); b 393 tests/test_index.c b = create_big(); b 395 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK); b 400 tests/test_index.c b = create_big(); b 402 tests/test_index.c expect(lzma_index_stream_padding(b, 8) == LZMA_OK); b 403 tests/test_index.c expect(lzma_index_cat(b, c, NULL) == LZMA_OK); b 405 tests/test_index.c expect(lzma_index_cat(a, b, NULL) == LZMA_OK);