Home
last modified time | relevance | path

Searched refs:memzero (Results 1 – 13 of 13) sorted by relevance

/freebsd-13.1/contrib/xz/src/common/
H A Dsysdefs.h179 #undef memzero
180 #define memzero(s, n) memset(s, 0, n) macro
/freebsd-13.1/sys/contrib/xz-embedded/linux/lib/
H A Ddecompress_unxz.c191 #ifndef memzero
192 static void memzero(void *buf, size_t size) in memzero() function
/freebsd-13.1/sys/contrib/xz-embedded/freebsd/
H A Dxz_config.h62 #define memzero(buf, size) bzero((buf), (size)) macro
/freebsd-13.1/contrib/xz/src/liblzma/delta/
H A Ddelta_common.c55 memzero(coder->history, LZMA_DELTA_DIST_MAX); in lzma_delta_coder_init()
/freebsd-13.1/sys/contrib/xz-embedded/userspace/
H A Dxz_config.h48 #define memzero(buf, size) memset(buf, 0, size) macro
/freebsd-13.1/contrib/xz/src/liblzma/lz/
H A Dlz_encoder.c117 memzero(coder->mf.buffer + write_pos, LZMA_MEMCMPLEN_EXTRA); in fill_window()
387 memzero(mf->buffer + mf->size, LZMA_MEMCMPLEN_EXTRA); in lz_encoder_init()
439 memzero(mf->hash, mf->hash_count * sizeof(uint32_t)); in lz_encoder_init()
/freebsd-13.1/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_private.h41 # define memzero(buf, size) memset(buf, 0, size) macro
H A Dxz_dec_stream.c832 memzero(&s->block, sizeof(s->block)); in xz_dec_reset()
833 memzero(&s->index, sizeof(s->index)); in xz_dec_reset()
H A Dxz_dec_lzma2.c862 memzero(s->temp.buf + s->temp.size + tmp, in lzma2_lzma()
/freebsd-13.1/contrib/xz/src/liblzma/common/
H A Dblock_header_encoder.c126 memzero(out + out_pos, out_size - out_pos); in lzma_block_header_encode()
H A Dcommon.c68 memzero(ptr, size); in lzma_alloc_zero()
184 memzero(strm->internal->supported_actions, in lzma_strm_init()
H A Dstream_encoder_mt.c1006 memzero(&coder->outq, sizeof(coder->outq)); in stream_encoder_mt_init()
/freebsd-13.1/contrib/xz/
H A DChangeLog3708 This avoids a memzero() call for a newly-allocated memory,
6159 liblzma: Use memzero() to initialize supported_actions[].