Home
last modified time | relevance | path

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

/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/clinic/
D_hashopenssl.c.h983 long maxmem, long dklen);
998 long maxmem = 0; in _hashlib_scrypt() local
1063 maxmem = PyLong_AsLong(args[5]); in _hashlib_scrypt()
1064 if (maxmem == -1 && PyErr_Occurred()) { in _hashlib_scrypt()
1081 … return_value = _hashlib_scrypt_impl(module, &password, &salt, n_obj, r_obj, p_obj, maxmem, dklen); in _hashlib_scrypt()
/external/python/cpython3/Modules/
D_hashopenssl.c1223 long maxmem, long dklen) in _hashlib_scrypt_impl() argument
1274 if (maxmem < 0 || maxmem > INT_MAX) { in _hashlib_scrypt_impl()
1291 retval = EVP_PBE_scrypt(NULL, 0, NULL, 0, n, r, p, maxmem, NULL, 0); in _hashlib_scrypt_impl()
1309 n, r, p, maxmem, in _hashlib_scrypt_impl()
/external/libxml2/
Dxmllint.c111 static int maxmem = 0; variable
334 fprintf(stderr, "Ran out of memory needs > %d bytes\n", maxmem); in OOM()
350 if (xmlMemUsed() > maxmem) { in myMallocFunc()
365 if (xmlMemUsed() > maxmem) { in myReallocFunc()
380 if (xmlMemUsed() > maxmem) { in myStrdupFunc()
3385 if (sscanf(argv[i], "%d", &maxmem) == 1) { in main()
3389 maxmem = 0; in main()
DNEWS1853 (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.py1081 for maxmem in [-1, None]:
1084 maxmem=maxmem)
/external/cpuinfo/test/build.prop/
Dhuawei-p9-lite.log233 ro.media.maxmem=4294967295
Dalcatel-revvl.log336 ro.media.maxmem=500000000
/external/python/cpython3/Doc/library/
Dhashlib.rst269 .. function:: scrypt(password, *, salt, n, r, p, maxmem=0, dklen=64)
280 factor and *maxmem* limits memory (OpenSSL 1.1.0 defaults to 32 MiB).
/external/llvm-project/openmp/runtime/src/
Dkmp_alloc.cpp1074 void kmpc_get_poolstat(size_t *maxmem, size_t *allmem) { in kmpc_get_poolstat() argument
1082 *maxmem = a; in kmpc_get_poolstat()