Searched refs:maxmem (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Modules/clinic/ |
D | _hashopenssl.c.h | 20 long maxmem, long dklen); 33 long maxmem = 0; in _hashlib_scrypt() local 37 …&password, &salt, &PyLong_Type, &n_obj, &PyLong_Type, &r_obj, &PyLong_Type, &p_obj, &maxmem, &dkle… in _hashlib_scrypt() 40 … return_value = _hashlib_scrypt_impl(module, &password, &salt, n_obj, r_obj, p_obj, maxmem, dklen); in _hashlib_scrypt()
|
/external/libxml2/os400/ |
D | xmllintcl.c | 53 unsigned long * maxmem; /* Maximum dynamic memory. */ member 200 if (args->maxmem && *args->maxmem) { in main() 201 snprintf(textbuf, sizeof textbuf, "%lu", *args->maxmem); in main()
|
/external/curl/tests/ |
D | memanalyze.pl | 59 my $maxmem; 65 if($newtot > $maxmem) { 66 $maxmem= $newtot; 424 print "Maximum allocated: $maxmem\n";
|
/external/python/cpython3/Modules/ |
D | _hashopenssl.c | 757 long maxmem, long dklen) in _hashlib_scrypt_impl() argument 808 if (maxmem < 0 || maxmem > INT_MAX) { in _hashlib_scrypt_impl() 825 retval = EVP_PBE_scrypt(NULL, 0, NULL, 0, n, r, p, maxmem, NULL, 0); in _hashlib_scrypt_impl() 843 n, r, p, maxmem, in _hashlib_scrypt_impl()
|
/external/libxml2/ |
D | xmllint.c | 111 static int maxmem = 0; variable 333 fprintf(stderr, "Ran out of memory needs > %d bytes\n", maxmem); in OOM() 349 if (xmlMemUsed() > maxmem) { in myMallocFunc() 364 if (xmlMemUsed() > maxmem) { in myReallocFunc() 379 if (xmlMemUsed() > maxmem) { in myStrdupFunc() 3370 if (sscanf(argv[i], "%d", &maxmem) == 1) { in main() 3374 maxmem = 0; in main()
|
D | NEWS | 1410 (Morten Welinder), add --maxmem option to xmllint, add
|
D | ChangeLog | 6294 add pattern, walker, maxmem, output and xmlout to man page 6969 * xmllint.c: adding a --maxmem option to check memory used.
|
/external/python/cpython3/Lib/test/ |
D | test_hashlib.py | 968 for maxmem in [-1, None]: 971 maxmem=maxmem)
|
/external/python/cpython3/Doc/library/ |
D | hashlib.rst | 260 .. function:: scrypt(password, *, salt, n, r, p, maxmem=0, dklen=64) 271 factor and *maxmem* limits memory (OpenSSL 1.1.0 defaults to 32 MiB).
|