Home
last modified time | relevance | path

Searched refs:LZMA_STREAM_FLAGS_SIZE (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/public-domain/xz/dist/src/liblzma/common/
H A Dstream_flags_encoder.c32 assert(sizeof(lzma_header_magic) + LZMA_STREAM_FLAGS_SIZE in lzma_stream_header_encode()
47 LZMA_STREAM_FLAGS_SIZE, 0); in lzma_stream_header_encode()
50 + LZMA_STREAM_FLAGS_SIZE, crc); in lzma_stream_header_encode()
59 assert(2 * 4 + LZMA_STREAM_FLAGS_SIZE + sizeof(lzma_footer_magic) in lzma_stream_footer_encode()
77 out + 4, 4 + LZMA_STREAM_FLAGS_SIZE, 0); in lzma_stream_footer_encode()
82 memcpy(out + 2 * 4 + LZMA_STREAM_FLAGS_SIZE, in lzma_stream_footer_encode()
H A Dstream_flags_decoder.c40 LZMA_STREAM_FLAGS_SIZE, 0); in lzma_stream_header_decode()
42 + LZMA_STREAM_FLAGS_SIZE)) in lzma_stream_header_decode()
63 if (memcmp(in + sizeof(uint32_t) * 2 + LZMA_STREAM_FLAGS_SIZE, in lzma_stream_footer_decode()
69 sizeof(uint32_t) + LZMA_STREAM_FLAGS_SIZE, 0); in lzma_stream_footer_decode()
H A Dstream_flags_common.h19 #define LZMA_STREAM_FLAGS_SIZE 2 macro