Home
last modified time | relevance | path

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

12

/freebsd/crypto/openssl/crypto/evp/
H A Dpbe_scrypt.c39 uint64_t N, uint64_t r, uint64_t p, uint64_t maxmem, in EVP_PBE_scrypt_ex() argument
63 if (maxmem == 0) in EVP_PBE_scrypt_ex()
64 maxmem = SCRYPT_MAX_MEM; in EVP_PBE_scrypt_ex()
81 *z++ = OSSL_PARAM_construct_uint64(OSSL_KDF_PARAM_SCRYPT_MAXMEM, &maxmem); in EVP_PBE_scrypt_ex()
92 uint64_t N, uint64_t r, uint64_t p, uint64_t maxmem, in EVP_PBE_scrypt() argument
95 return EVP_PBE_scrypt_ex(pass, passlen, salt, saltlen, N, r, p, maxmem, in EVP_PBE_scrypt()
/freebsd/contrib/unbound/validator/
H A Dval_kcache.c54 size_t numtables, start_size, maxmem; in key_cache_create() local
61 maxmem = cfg->key_cache_size; in key_cache_create()
62 kcache->slab = slabhash_create(numtables, start_size, maxmem, in key_cache_create()
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devppbe_scrypt.txt42 # uncomment out the "maxmem" line and comment out the "Result"
52 #maxmem = 10000000000
/freebsd/lib/libkvm/
H A Dkvm_minidump_powerpc64_hpt.c189 uint64_t ea, i, maxmem; in slb_init() local
195 maxmem = hdr->bitmapsize * 8 * PPC64_PAGE_SIZE; in slb_init()
196 slbsize = round_seg(hdr->kernend + 1 - hdr->kernbase + maxmem) / in slb_init()
206 __func__, (uintmax_t)maxmem, in slb_init()
225 ea < MIN(hdr->dmapend, hdr->dmapbase + maxmem); in slb_init()
/freebsd/crypto/openssl/providers/implementations/kdfs/
H A Dscrypt.c38 uint64_t N, uint64_t r, uint64_t p, uint64_t maxmem,
412 uint64_t N, uint64_t r, uint64_t p, uint64_t maxmem, in scrypt_alg() argument
478 if (maxmem > SIZE_MAX) in scrypt_alg()
479 maxmem = SIZE_MAX; in scrypt_alg()
481 if (Blen + Vlen > maxmem) { in scrypt_alg()
/freebsd/sys/powerpc/powernv/
H A Dopal_pci.c243 uint64_t maxmem; in opalpci_attach() local
368 maxmem = roundup2(powerpc_ptob(Maxmem), tce_size); in opalpci_attach()
369 entries = round_pow2(maxmem / tce_size); in opalpci_attach()
375 device_printf(dev, "Mapping 0-%#jx for DMA\n", (uintmax_t)maxmem); in opalpci_attach()
399 (1UL << 59), maxmem); in opalpci_attach()
/freebsd/contrib/unbound/util/storage/
H A Dslabhash.c49 size_t maxmem, lruhash_sizefunc_type sizefunc, in slabhash_create() argument
77 sl->array[i] = lruhash_create(start_size, maxmem / sl->size, in slabhash_create()
H A Dslabhash.h83 size_t maxmem, lruhash_sizefunc_type sizefunc,
H A Dlruhash.h240 struct lruhash* lruhash_create(size_t start_size, size_t maxmem,
H A Dlruhash.c62 lruhash_create(size_t start_size, size_t maxmem, in lruhash_create() argument
83 table->space_max = maxmem; in lruhash_create()
/freebsd/usr.sbin/dumpcis/
H A Dcardinfo.h171 int maxmem; /* Max allowed memory windows */ member
/freebsd/contrib/lua/src/
H A Dltests.h52 unsigned long maxmem; member
H A Dltests.c263 if (mc->total > mc->maxmem) in debug_realloc()
264 mc->maxmem = mc->total; in debug_realloc()
842 lua_pushinteger(L, l_memcontrol.maxmem); in mem_query()
/freebsd/contrib/unbound/services/cache/
H A Dinfra.c327 size_t maxmem = cfg->infra_cache_numhosts * (sizeof(struct infra_key)+ in infra_create() local
333 INFRA_HOST_STARTSIZE, maxmem, &infra_sizefunc, &infra_compfunc, in infra_create()
405 size_t maxmem; in infra_adjust() local
413 maxmem = cfg->infra_cache_numhosts * (sizeof(struct infra_key)+ in infra_adjust()
418 if(!slabhash_is_size(infra->hosts, maxmem, cfg->infra_cache_slabs) || in infra_adjust()
H A Drrset.c66 size_t maxmem = (cfg?cfg->rrset_cache_size:HASH_DEFAULT_MAXMEM); in rrset_cache_create() local
69 startarray, maxmem, ub_rrset_sizefunc, ub_rrset_compare, in rrset_cache_create()
/freebsd/crypto/openssl/doc/man3/
H A DPKCS5_PBE_keyivgen.pod33 uint64_t N, uint64_t r, uint64_t p, uint64_t maxmem,
37 uint64_t N, uint64_t r, uint64_t p, uint64_t maxmem,
H A DEVP_PKEY_CTX_set_scrypt_N.pod26 uint64_t maxmem);
/freebsd/contrib/ntp/ntpd/
H A Dcomplete.conf.in48 mru maxage 64 mindepth 600 initalloc 600 initmem 16 incalloc 99 incmem 4 maxdepth 1024 maxmem 4096
/freebsd/crypto/openssl/doc/man7/
H A DEVP_KDF-SCRYPT.pod60 These parameters configure the scrypt work factors N, r, maxmem and p.
H A Dprovider-kdf.pod240 Sets the scrypt work factor parameter maxmem in the associated KDF ctx.
/freebsd/crypto/openssl/test/
H A Devp_kdf_test.c864 unsigned int nu = 1024, ru = 8, pu = 16, maxmem = 16; in test_kdf_scrypt() local
883 *p++ = OSSL_PARAM_construct_uint(OSSL_KDF_PARAM_SCRYPT_MAXMEM, &maxmem); in test_kdf_scrypt()
H A Devp_test.c2058 uint64_t N, r, p, maxmem; member
2110 if (strcmp(keyword, "maxmem") == 0) in scrypt_test_parse()
2111 return parse_uint64(value, &pdata->maxmem); in scrypt_test_parse()
2234 expected->maxmem, key, expected->key_len) == 0) { in pbe_test_run()
/freebsd/sys/geom/shsec/
H A Dg_shsec.c77 SYSCTL_ULONG(_kern_geom_shsec, OID_AUTO, maxmem,
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A 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()
/freebsd/sys/geom/stripe/
H A Dg_stripe.c81 SYSCTL_ULONG(_kern_geom_stripe, OID_AUTO, maxmem,
119 TUNABLE_ULONG_FETCH("kern.geom.stripe.maxmem,", &g_stripe_maxmem); in g_stripe_init()

12