/external/python/cpython3/Modules/clinic/ |
D | _lzmamodule.c.h | 168 PyObject *memlimit, PyObject *filters); 181 PyObject *memlimit = Py_None; in _lzma_LZMADecompressor___init__() local 201 memlimit = fastargs[1]; in _lzma_LZMADecompressor___init__() 208 …return_value = _lzma_LZMADecompressor___init___impl((Decompressor *)self, format, memlimit, filter… in _lzma_LZMADecompressor___init__()
|
/external/curl/lib/ |
D | memdebug.c | 61 static bool memlimit = FALSE; /* enable memory limit */ variable 100 if(!memlimit) { in curl_dbg_memlimit() 101 memlimit = TRUE; in curl_dbg_memlimit() 111 if(memlimit && source) { in countcheck()
|
/external/scrypt/ |
D | scrypt.config | 23 lib/util/memlimit.c \ 24 lib/util/memlimit.h \
|
/external/python/cpython3/Lib/test/libregrtest/ |
D | setup.py | 72 if ns.memlimit is not None: 73 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 | 331 def decompress(data, format=FORMAT_AUTO, memlimit=None, filters=None): argument 341 decomp = LZMADecompressor(format, memlimit, filters)
|
/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 | 39 self.assertRaises(TypeError, LZMADecompressor, memlimit=b"qw") 44 LZMADecompressor(lzma.FORMAT_RAW, memlimit=0x1000000) 83 lzd = LZMADecompressor(memlimit=1024) 86 lzd = LZMADecompressor(lzma.FORMAT_XZ, memlimit=1024) 89 lzd = LZMADecompressor(lzma.FORMAT_ALONE, memlimit=1024) 402 self.assertRaises(TypeError, lzma.decompress, b"", memlimit=7.3e9) 407 lzma.decompress(b"", format=lzma.FORMAT_RAW, memlimit=0x1000000) 419 lzma.decompress(COMPRESSED_XZ, memlimit=1024) 422 COMPRESSED_XZ, format=lzma.FORMAT_XZ, memlimit=1024) 425 COMPRESSED_ALONE, format=lzma.FORMAT_ALONE, memlimit=1024)
|
D | test_regrtest.py | 237 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/python/cpython3/Lib/test/support/ |
D | __init__.py | 810 memlimit = int(float(m.group(1)) * sizes[m.group(3).lower()]) 811 real_max_memuse = memlimit 812 if memlimit > MAX_Py_ssize_t: 813 memlimit = MAX_Py_ssize_t 814 if memlimit < _2G - 1: 816 max_memuse = memlimit
|
/external/curl/tests/ |
D | memanalyze.pl | 88 if(/^LIMIT.*memlimit$/) {
|
/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/Modules/ |
D | _lzmamodule.c | 1193 PyObject *memlimit, PyObject *filters) in _lzma_LZMADecompressor___init___impl() argument 1202 if (memlimit != Py_None) { in _lzma_LZMADecompressor___init___impl() 1208 memlimit_ = PyLong_AsUnsignedLongLong(memlimit); in _lzma_LZMADecompressor___init___impl()
|
/external/zstd/tests/ |
D | playTests.sh | 262 zstd -d -f tmp.zst --memlimit=2K -c > $INTOVOID && die "decompression needs more memory than allowe… 264 zstd -d -f tmp.zst --memlimit-decompress=2K -c > $INTOVOID && die "decompression needs more memory …
|
/external/zstd/ |
D | CHANGELOG | 511 New : command -M#, --memory=, --memlimit=, --memlimit-decompress= to limit allowed memory consumpti…
|
/external/bcc/libbpf-tools/arm64/ |
D | vmlinux.h | 64943 __le16 memlimit; member
|
D | vmlinux_510.h | 64943 __le16 memlimit; member
|