| /dragonfly/contrib/xz/src/liblzma/common/ |
| HD | index_decoder.c | 30 uint64_t memlimit; member 101 if (lzma_index_memusage(1, coder->count) > coder->memlimit) { in index_decode() 228 *old_memlimit = coder->memlimit; in index_decoder_memconfig() 234 coder->memlimit = new_memlimit; in index_decoder_memconfig() 243 lzma_index **i, uint64_t memlimit) in index_decoder_reset() argument 259 coder->memlimit = my_max(1, memlimit); in index_decoder_reset() 270 lzma_index **i, uint64_t memlimit) in index_decoder_init() argument 292 return index_decoder_reset(coder, allocator, i, memlimit); in index_decoder_init() 297 lzma_index_decoder(lzma_stream *strm, lzma_index **i, uint64_t memlimit) in lzma_index_decoder() argument 299 lzma_next_strm_init(index_decoder_init, strm, i, memlimit); in lzma_index_decoder() [all …]
|
| HD | auto_decoder.c | 21 uint64_t memlimit; member 56 coder->memlimit, coder->flags)); in auto_decode() 59 allocator, coder->memlimit, true)); in auto_decode() 136 assert(*old_memlimit == coder->memlimit); in auto_decoder_memconfig() 141 *old_memlimit = coder->memlimit; in auto_decoder_memconfig() 149 coder->memlimit = new_memlimit; in auto_decoder_memconfig() 157 uint64_t memlimit, uint32_t flags) in auto_decoder_init() argument 178 coder->memlimit = my_max(1, memlimit); in auto_decoder_init() 187 lzma_auto_decoder(lzma_stream *strm, uint64_t memlimit, uint32_t flags) in lzma_auto_decoder() argument 189 lzma_next_strm_init(auto_decoder_init, strm, memlimit, flags); in lzma_auto_decoder()
|
| HD | alone_decoder.c | 41 uint64_t memlimit; member 130 if (coder->memusage > coder->memlimit) in alone_decode() 186 *old_memlimit = coder->memlimit; in alone_decoder_memconfig() 192 coder->memlimit = new_memlimit; in alone_decoder_memconfig() 201 uint64_t memlimit, bool picky) in lzma_alone_decoder_init() argument 226 coder->memlimit = my_max(1, memlimit); in lzma_alone_decoder_init() 234 lzma_alone_decoder(lzma_stream *strm, uint64_t memlimit) in lzma_alone_decoder() argument 236 lzma_next_strm_init(lzma_alone_decoder_init, strm, memlimit, false); in lzma_alone_decoder()
|
| HD | stream_decoder.c | 44 uint64_t memlimit; member 223 if (memusage > coder->memlimit) { in stream_decode() 405 *old_memlimit = coder->memlimit; in stream_decoder_memconfig() 411 coder->memlimit = new_memlimit; in stream_decoder_memconfig() 421 uint64_t memlimit, uint32_t flags) in lzma_stream_decoder_init() argument 444 coder->memlimit = my_max(1, memlimit); in lzma_stream_decoder_init() 459 lzma_stream_decoder(lzma_stream *strm, uint64_t memlimit, uint32_t flags) in lzma_stream_decoder() argument 461 lzma_next_strm_init(lzma_stream_decoder_init, strm, memlimit, flags); in lzma_stream_decoder()
|
| HD | stream_buffer_decoder.c | 17 lzma_stream_buffer_decode(uint64_t *memlimit, uint32_t flags, in lzma_stream_buffer_decode() argument 38 &stream_decoder, allocator, *memlimit, flags); in lzma_stream_buffer_decode() 80 memlimit, &memusage, 0); in lzma_stream_buffer_decode()
|
| HD | alone_decoder.h | 21 uint64_t memlimit, bool picky);
|
| HD | stream_decoder.h | 20 uint64_t memlimit, uint32_t flags);
|
| /dragonfly/contrib/xz/src/liblzma/api/lzma/ |
| HD | container.h | 537 lzma_stream *strm, uint64_t memlimit, uint32_t flags) 562 lzma_stream *strm, uint64_t memlimit, uint32_t flags) 585 lzma_stream *strm, uint64_t memlimit) 628 uint64_t *memlimit, uint32_t flags,
|
| HD | index.h | 629 lzma_stream *strm, lzma_index **i, uint64_t memlimit) 684 uint64_t *memlimit, const lzma_allocator *allocator,
|
| HD | base.h | 659 lzma_stream *strm, uint64_t memlimit) lzma_nothrow;
|
| /dragonfly/contrib/xz/src/xz/ |
| HD | hardware.c | 123 const uint64_t memlimit = mode == MODE_COMPRESS in hardware_memlimit_get() local 125 return memlimit != 0 ? memlimit : UINT64_MAX; in hardware_memlimit_get()
|
| HD | message.c | 857 uint64_t memlimit = hardware_memlimit_get(opt_mode); in message_mem_needed() local 861 if (memlimit == UINT64_MAX) { in message_mem_needed() 876 if (memlimit < (UINT32_C(1) << 20)) { in message_mem_needed() 878 uint64_to_str(memlimit, 1)); in message_mem_needed() 887 uint64_to_str(round_up_to_mib(memlimit), 1)); in message_mem_needed()
|
| HD | list.c | 259 uint64_t memlimit = hardware_memlimit_get(MODE_LIST); in parse_indexes() local 263 if (memused > memlimit) in parse_indexes() 266 memlimit -= memused; in parse_indexes() 270 ret = lzma_index_decoder(&strm, &this_index, memlimit); in parse_indexes()
|
| /dragonfly/sys/bus/pci/ |
| HD | pci_pci.c | 108 return (sc->membase > 0 && sc->membase < sc->memlimit); in pcib_is_nonprefetch_open() 185 sc->memlimit = PCI_PPBMEMLIMIT(0, pci_read_config(dev, PCIR_MEMLIMIT_1, 2)); in pcib_attach_common() 281 (uintmax_t)sc->membase, (uintmax_t)sc->memlimit); in pcib_attach_common() 459 ok = ok || (start >= sc->membase && end <= sc->memlimit); in pcib_alloc_resource() 486 if (end > sc->memlimit) in pcib_alloc_resource() 487 end = sc->memlimit; in pcib_alloc_resource() 497 if (start < sc->membase && end > sc->memlimit) { in pcib_alloc_resource() 499 end = sc->memlimit; in pcib_alloc_resource() 522 (uintmax_t)sc->membase, (uintmax_t)sc->memlimit, in pcib_alloc_resource()
|
| HD | pcib_private.h | 58 pci_addr_t memlimit; /* topmost address of memory window */ member
|
| HD | pcivar.h | 188 uint32_t memlimit; /* topmost address of memory window */ member
|
| /dragonfly/tools/tools/hammer-backup/ |
| HD | hammer-backup.sh | 63 memlimit="10%" 180 compress_opts=" | xz -M ${memlimit} -c -${comp_rate}"
|
| /dragonfly/contrib/gdb-7/gdb/ |
| HD | minidebug.c | 87 uint64_t memlimit = UINT64_MAX; in lzma_open() local 111 || lzma_index_buffer_decode (&index, &memlimit, &gdb_lzma_allocator, in lzma_open()
|
| /dragonfly/contrib/xz/ |
| HD | NEWS | 38 - Added a special case for 32-bit xz: If --memlimit-compress is 43 but the specified memlimit exceeds 4 GiB. This can happen
|
| /dragonfly/contrib/zstd/ |
| HD | CHANGELOG | 406 New : command -M#, --memory=, --memlimit=, --memlimit-decompress= to limit allowed memory consumpti…
|