Home
last modified time | relevance | path

Searched refs:memlimit (Results 1 – 20 of 20) sorted by relevance

/external/llvm-project/lldb/source/Host/common/
DLZMA.cpp95 uint64_t memlimit(UINT64_MAX);
98 &xzindex, &memlimit, nullptr,
128 uint64_t memlimit = UINT64_MAX;
132 &memlimit, 0, nullptr, InputBuffer.data(), &inpos, InputBuffer.size(),
/external/python/cpython3/Modules/clinic/
D_lzmamodule.c.h173 PyObject *memlimit, PyObject *filters);
186 PyObject *memlimit = Py_None; in _lzma_LZMADecompressor___init__() local
211 memlimit = fastargs[1]; in _lzma_LZMADecompressor___init__()
218 …return_value = _lzma_LZMADecompressor___init___impl((Decompressor *)self, format, memlimit, filter… in _lzma_LZMADecompressor___init__()
/external/curl/lib/
Dmemdebug.c58 static bool memlimit = FALSE; /* enable memory limit */ variable
81 if(!memlimit) { in curl_dbg_memlimit()
82 memlimit = TRUE; in curl_dbg_memlimit()
92 if(memlimit && source) { in countcheck()
/external/scrypt/
Dscrypt.config23 lib/util/memlimit.c \
24 lib/util/memlimit.h \
/external/python/cpython3/Lib/test/libregrtest/
Dsetup.py66 if ns.memlimit is not None:
67 support.set_memlimit(ns.memlimit)
/external/llvm/tools/bugpoint/
DBugDriver.cpp71 unsigned timeout, unsigned memlimit, bool use_valgrind, in BugDriver() argument
76 MemoryLimit(memlimit), UseValgrind(use_valgrind) {} in BugDriver()
DBugDriver.h67 unsigned timeout, unsigned memlimit, bool use_valgrind,
/external/python/cpython3/Lib/
Dlzma.py322 def decompress(data, format=FORMAT_AUTO, memlimit=None, filters=None): argument
332 decomp = LZMADecompressor(format, memlimit, filters)
/external/llvm-project/llvm/tools/bugpoint/
DBugDriver.cpp79 unsigned memlimit, bool use_valgrind, LLVMContext &ctxt) in BugDriver() argument
83 MemoryLimit(memlimit), UseValgrind(use_valgrind) {} in BugDriver()
DBugDriver.h68 unsigned memlimit, bool use_valgrind, LLVMContext &ctxt);
/external/squashfs-tools/squashfs-tools/
Dxz_wrapper.c492 uint64_t memlimit = MEMLIMIT; in xz_uncompress() local
494 lzma_ret res = lzma_stream_buffer_decode(&memlimit, 0, NULL, in xz_uncompress()
/external/python/cpython3/Lib/test/
Dtest_lzma.py36 self.assertRaises(TypeError, LZMADecompressor, memlimit=b"qw")
41 LZMADecompressor(lzma.FORMAT_RAW, memlimit=0x1000000)
80 lzd = LZMADecompressor(memlimit=1024)
83 lzd = LZMADecompressor(lzma.FORMAT_XZ, memlimit=1024)
86 lzd = LZMADecompressor(lzma.FORMAT_ALONE, memlimit=1024)
399 self.assertRaises(TypeError, lzma.decompress, b"", memlimit=7.3e9)
404 lzma.decompress(b"", format=lzma.FORMAT_RAW, memlimit=0x1000000)
416 lzma.decompress(COMPRESSED_XZ, memlimit=1024)
419 COMPRESSED_XZ, format=lzma.FORMAT_XZ, memlimit=1024)
422 COMPRESSED_ALONE, format=lzma.FORMAT_ALONE, memlimit=1024)
Dtest_regrtest.py235 self.assertEqual(ns.memlimit, '4G')
/external/python/cpython2/Lib/test/support/
D__init__.py1375 memlimit = int(float(m.group(1)) * sizes[m.group(3).lower()])
1376 real_max_memuse = memlimit
1377 if memlimit > MAX_Py_ssize_t:
1378 memlimit = MAX_Py_ssize_t
1379 if memlimit < _2G - 1:
1381 max_memuse = memlimit
/external/curl/tests/
Dmemanalyze.pl85 if(/^LIMIT.*memlimit$/) {
/external/python/cpython3/Doc/library/
Dlzma.rst211 .. class:: LZMADecompressor(format=FORMAT_AUTO, memlimit=None, filters=None)
224 The *memlimit* argument specifies a limit (in bytes) on the amount of memory
299 .. function:: decompress(data, format=FORMAT_AUTO, memlimit=None, filters=None)
308 *memlimit* and *filters* arguments.
/external/python/cpython3/Modules/
D_lzmamodule.c1127 PyObject *memlimit, PyObject *filters) in _lzma_LZMADecompressor___init___impl() argument
1134 if (memlimit != Py_None) { in _lzma_LZMADecompressor___init___impl()
1140 memlimit_ = PyLong_AsUnsignedLongLong(memlimit); in _lzma_LZMADecompressor___init___impl()
/external/python/cpython3/Lib/test/support/
D__init__.py1589 memlimit = int(float(m.group(1)) * sizes[m.group(3).lower()])
1590 real_max_memuse = memlimit
1591 if memlimit > MAX_Py_ssize_t:
1592 memlimit = MAX_Py_ssize_t
1593 if memlimit < _2G - 1:
1595 max_memuse = memlimit
/external/zstd/tests/
DplayTests.sh230 zstd -d -f tmp.zst --memlimit=2K -c > $INTOVOID && die "decompression needs more memory than allowe…
232 zstd -d -f tmp.zst --memlimit-decompress=2K -c > $INTOVOID && die "decompression needs more memory …
/external/zstd/
DCHANGELOG403 New : command -M#, --memory=, --memlimit=, --memlimit-decompress= to limit allowed memory consumpti…