Home
last modified time | relevance | path

Searched refs:maxmem (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Modules/clinic/
D_hashopenssl.c.h20 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/
Dxmllintcl.c53 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/
Dmemanalyze.pl59 my $maxmem;
65 if($newtot > $maxmem) {
66 $maxmem= $newtot;
424 print "Maximum allocated: $maxmem\n";
/external/python/cpython3/Modules/
D_hashopenssl.c757 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/
Dxmllint.c111 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()
DNEWS1410 (Morten Welinder), add --maxmem option to xmllint, add
DChangeLog6294 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/
Dtest_hashlib.py968 for maxmem in [-1, None]:
971 maxmem=maxmem)
/external/python/cpython3/Doc/library/
Dhashlib.rst260 .. 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).