HomeSort by: relevance | last modified time | path
    Searched defs:memlimit (Results 1 - 16 of 16) sorted by relevancy

  /src/external/public-domain/xz/dist/src/liblzma/common/
auto_decoder.c 21 uint64_t memlimit; member in struct:__anon24586
56 coder->memlimit, coder->flags));
59 allocator, coder->memlimit, true));
136 assert(*old_memlimit == coder->memlimit);
141 *old_memlimit = coder->memlimit;
149 coder->memlimit = new_memlimit;
157 uint64_t memlimit, uint32_t flags)
178 coder->memlimit = my_max(1, memlimit);
187 lzma_auto_decoder(lzma_stream *strm, uint64_t memlimit, uint32_t flags
    [all...]
alone_decoder.c 41 uint64_t memlimit; member in struct:__anon24582
131 if (coder->memusage > coder->memlimit)
187 *old_memlimit = coder->memlimit;
193 coder->memlimit = new_memlimit;
202 uint64_t memlimit, bool picky)
227 coder->memlimit = my_max(1, memlimit);
235 lzma_alone_decoder(lzma_stream *strm, uint64_t memlimit)
237 lzma_next_strm_init(lzma_alone_decoder_init, strm, memlimit, false);
index_decoder.c 30 uint64_t memlimit; member in struct:__anon24605
101 if (lzma_index_memusage(1, coder->count) > coder->memlimit) {
228 *old_memlimit = coder->memlimit;
234 coder->memlimit = new_memlimit;
243 lzma_index **i, uint64_t memlimit)
259 coder->memlimit = my_max(1, memlimit);
270 lzma_index **i, uint64_t memlimit)
292 return index_decoder_reset(coder, allocator, i, memlimit);
297 lzma_index_decoder(lzma_stream *strm, lzma_index **i, uint64_t memlimit)
    [all...]
stream_decoder.c 44 uint64_t memlimit; member in struct:__anon24613
223 if (memusage > coder->memlimit) {
405 *old_memlimit = coder->memlimit;
411 coder->memlimit = new_memlimit;
421 uint64_t memlimit, uint32_t flags)
444 coder->memlimit = my_max(1, memlimit);
459 lzma_stream_decoder(lzma_stream *strm, uint64_t memlimit, uint32_t flags)
461 lzma_next_strm_init(lzma_stream_decoder_init, strm, memlimit, flags);
  /src/external/public-domain/xz/dist/src/xz/
hardware.c 93 const uint64_t memlimit = mode == MODE_COMPRESS local
95 return memlimit != 0 ? memlimit : UINT64_MAX;
list.c 259 uint64_t memlimit = hardware_memlimit_get(MODE_LIST); local
263 if (memused > memlimit)
266 memlimit -= memused;
270 ret = lzma_index_decoder(&strm, &this_index, memlimit);
message.c 843 uint64_t memlimit = hardware_memlimit_get(opt_mode); local
847 if (memlimit == UINT64_MAX) {
862 if (memlimit < (UINT32_C(1) << 20)) {
864 uint64_to_str(memlimit, 1));
873 uint64_to_str(round_up_to_mib(memlimit), 1));
1158 " --memlimit-compress=LIMIT\n"
1159 " --memlimit-decompress=LIMIT\n"
1160 " -M, --memlimit=LIMIT\n"
  /src/external/public-domain/xz/dist/tests/
test_bcj_exact_size.c 95 uint64_t memlimit = 1 << 20; local
98 expect(lzma_stream_buffer_decode(&memlimit, 0, NULL,
test_index.c 15 #define MEMLIMIT (LZMA_VLI_C(1) << 20)
227 expect(lzma_index_decoder(&strm, &d, MEMLIMIT) == LZMA_OK);
264 uint64_t memlimit = MEMLIMIT; local
265 expect(lzma_index_buffer_decode(&d, &memlimit, NULL, buf, &buf_pos,
270 succeed(lzma_index_buffer_decode(&d, &memlimit, NULL, buf, &buf_pos,
613 expect(lzma_index_decoder(&strm, &i, MEMLIMIT) == LZMA_OK);
619 expect(lzma_index_decoder(&strm, &i, MEMLIMIT) == LZMA_OK);
625 expect(lzma_index_decoder(&strm, &i, MEMLIMIT) == LZMA_OK);
  /src/sys/external/isc/libsodium/dist/test/default/
pwhash_argon2i.c 7 #define MEMLIMIT 5000000
18 size_t memlimit; member in struct:__anon6527
95 tests[i].opslimit, tests[i].memlimit,
115 size_t memlimit; member in struct:__anon6528
147 tests[i].opslimit, tests[i].memlimit,
185 OPSLIMIT, MEMLIMIT, crypto_pwhash_alg_argon2id13()) == -1);
242 MEMLIMIT) != 0) {
246 MEMLIMIT) != 0) {
252 if (crypto_pwhash_argon2i_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT) != 0) {
255 if (crypto_pwhash_argon2i_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT / 2) != 1 |
    [all...]
pwhash_argon2id.c 7 #define MEMLIMIT 5000000
18 size_t memlimit; member in struct:__anon6530
95 tests[i].opslimit, tests[i].memlimit,
115 size_t memlimit; member in struct:__anon6531
147 tests[i].opslimit, tests[i].memlimit,
181 OPSLIMIT, MEMLIMIT, crypto_pwhash_alg_argon2i13()) == -1);
239 MEMLIMIT) != 0) {
243 MEMLIMIT) != 0) {
249 if (crypto_pwhash_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT) != 0 ||
250 crypto_pwhash_str_needs_rehash(str_out, OPSLIMIT, MEMLIMIT) != 0)
    [all...]
pwhash_scrypt.c 7 #define MEMLIMIT 10000000
18 size_t memlimit; member in struct:__anon6533
108 tests[i].opslimit, tests[i].memlimit) != 0) {
125 size_t memlimit; member in struct:__anon6534
157 tests[i].opslimit, tests[i].memlimit) != 0) {
313 OPSLIMIT, MEMLIMIT) != 0) {
317 OPSLIMIT, MEMLIMIT) != 0) {
324 (str_out, OPSLIMIT, MEMLIMIT) != 0) {
328 (str_out, OPSLIMIT, MEMLIMIT / 2) != 1 ||
330 (str_out, OPSLIMIT / 2, MEMLIMIT) != 1 |
    [all...]
  /src/sys/arch/sandpoint/stand/altboot/
pci.c 53 unsigned memstart, memlimit; variable
62 memlimit = PCI_MEMLIMIT;
246 val = (memlimit & 0xffff0000) | (val & 0xffff0000) >> 16;
309 if (mapbase + size > memlimit)
  /src/sys/fs/tmpfs/
tmpfs_vfsops.c 93 uint64_t memlimit; local
137 memlimit = UINT64_MAX;
140 memlimit = args->ta_size_max;
143 KASSERT(memlimit > 0);
146 nodes = 3 + (memlimit / 1024);
169 if ((error = tmpfs_mntmem_set(tmp, memlimit)) != 0)
196 tmpfs_mntmem_init(tmp, memlimit);
  /src/external/gpl3/gdb/dist/gdb/
minidebug.c 94 uint64_t memlimit = UINT64_MAX; local
118 || lzma_index_buffer_decode (&index, &memlimit, &gdb_lzma_allocator,
  /src/external/gpl3/gdb.old/dist/gdb/
minidebug.c 94 uint64_t memlimit = UINT64_MAX; local
118 || lzma_index_buffer_decode (&index, &memlimit, &gdb_lzma_allocator,

Completed in 37 milliseconds