/external/llvm-project/lldb/source/Host/common/ |
D | LZMA.cpp | 95 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.h | 173 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/scrypt/ |
D | scrypt.config | 23 lib/util/memlimit.c \ 24 lib/util/memlimit.h \
|
/external/curl/lib/ |
D | memdebug.c | 58 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/python/cpython3/Lib/test/libregrtest/ |
D | setup.py | 66 if ns.memlimit is not None: 67 support.set_memlimit(ns.memlimit)
|
/external/llvm/tools/bugpoint/ |
D | BugDriver.cpp | 71 unsigned timeout, unsigned memlimit, bool use_valgrind, in BugDriver() argument 76 MemoryLimit(memlimit), UseValgrind(use_valgrind) {} in BugDriver()
|
D | BugDriver.h | 67 unsigned timeout, unsigned memlimit, bool use_valgrind,
|
/external/python/cpython3/Lib/ |
D | lzma.py | 322 def decompress(data, format=FORMAT_AUTO, memlimit=None, filters=None): argument 332 decomp = LZMADecompressor(format, memlimit, filters)
|
/external/llvm-project/llvm/tools/bugpoint/ |
D | BugDriver.cpp | 79 unsigned memlimit, bool use_valgrind, LLVMContext &ctxt) in BugDriver() argument 83 MemoryLimit(memlimit), UseValgrind(use_valgrind) {} in BugDriver()
|
D | BugDriver.h | 68 unsigned memlimit, bool use_valgrind, LLVMContext &ctxt);
|
/external/squashfs-tools/squashfs-tools/ |
D | xz_wrapper.c | 492 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/ |
D | test_lzma.py | 36 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)
|
D | test_regrtest.py | 235 self.assertEqual(ns.memlimit, '4G')
|
/external/python/cpython2/Lib/test/support/ |
D | __init__.py | 1375 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/ |
D | memanalyze.pl | 85 if(/^LIMIT.*memlimit$/) {
|
/external/python/cpython3/Modules/ |
D | _lzmamodule.c | 1127 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/Doc/library/ |
D | lzma.rst | 211 .. 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/Lib/test/support/ |
D | __init__.py | 1589 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/ |
D | playTests.sh | 230 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/ |
D | CHANGELOG | 403 New : command -M#, --memory=, --memlimit=, --memlimit-decompress= to limit allowed memory consumpti…
|