Home
last modified time | relevance | path

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

/freebsd/contrib/less/
H A Dline.c141 int hindex; /* Index into hyperlink prefix */ global() member
/freebsd/crypto/openssl/providers/implementations/keymgmt/
H A Ddsa_kmgmt.c65 int hindex; member
426 gctx->hindex = 0; in dsa_gen_init()
490 && !OSSL_PARAM_get_int(p, &gctx->hindex)) in dsa_gen_set_params()
590 } else if (gctx->hindex != 0) { in dsa_gen()
591 ossl_ffc_params_set_h(ffc, gctx->hindex); in dsa_gen()
H A Ddh_kmgmt.c69 int hindex; member
473 gctx->hindex = 0; in dh_gen_init_base()
614 if (p != NULL && !OSSL_PARAM_get_int(p, &gctx->hindex)) in dhx_gen_set_params()
738 } else if (gctx->hindex != 0) { in dh_gen()
739 ossl_ffc_params_set_h(ffc, gctx->hindex); in dh_gen()
/freebsd/crypto/openssl/doc/man7/
H A DEVP_PKEY-DH.pod138 I<seed>, I<pcounter> and I<gindex> or I<hindex> may need to be stored for
141 (but the I<gindex> or I<hindex> cannot be stored). It is recommended to use a
249 int hindex = ...;
260 * NOTE: For unverifiable g use "hindex" instead of "gindex"
261 * extra_params[1] = OSSL_PARAM_construct_int("hindex", &hindex);
H A DEVP_PKEY-FFC.pod93 =item "hindex" (B<OSSL_PKEY_PARAM_FFC_H>) <integer>
183 =item "hindex" (B<OSSL_PKEY_PARAM_FFC_H>) <integer>
/freebsd/crypto/openssl/test/
H A Devp_pkey_provided_test.c507 int gindex = 0, pcounter = 0, hindex = 0; in test_fromdata_dh_named_group()
648 &hindex)) in test_fromdata_dh_named_group()
649 || !TEST_int_eq(hindex, 0) in test_fromdata_dh_named_group()
721 int gindex = 0, pcounter = 0, hindex = 0; in test_fromdata_dh_fips186_4()
832 &hindex)) in test_fromdata_dh_fips186_4()
833 || !TEST_int_eq(hindex, 0) in test_fromdata_dh_fips186_4()
504 int gindex = 0, pcounter = 0, hindex = 0; test_fromdata_dh_named_group() local
715 int gindex = 0, pcounter = 0, hindex = 0; test_fromdata_dh_fips186_4() local
/freebsd/sys/net/altq/
H A Daltq_fairq.c612 u_int hindex; in fairq_addq() local
625 hindex = bucketid & cl->cl_nbucket_mask; in fairq_addq()
626 b = &cl->cl_buckets[hindex]; in fairq_addq()
/freebsd/contrib/jemalloc/src/
H A Darena.c385 szind_t index, hindex; in arena_large_malloc_stats_update() local
393 hindex = (index >= SC_NBINS) ? index - SC_NBINS : 0; in arena_large_malloc_stats_update()
396 &arena->stats.lstats[hindex].nmalloc, 1); in arena_large_malloc_stats_update()
401 szind_t index, hindex; in arena_large_dalloc_stats_update() local
409 hindex = (index >= SC_NBINS) ? index - SC_NBINS : 0; in arena_large_dalloc_stats_update()
412 &arena->stats.lstats[hindex].ndalloc, 1); in arena_large_dalloc_stats_update()
/freebsd/sys/dev/hwpmc/
H A Dhwpmc_mod.c2301 uint32_t hindex; in pmc_allocate_owner_descriptor() local
2303 hindex = PMC_HASH_PTR(p, pmc_ownerhashmask); in pmc_allocate_owner_descriptor()
2304 poh = &pmc_ownerhash[hindex]; in pmc_allocate_owner_descriptor()
2535 uint32_t hindex; in pmc_find_process_descriptor() local
2537 hindex = PMC_HASH_PTR(p, pmc_processhashmask); in pmc_find_process_descriptor()
2538 pph = &pmc_processhash[hindex]; in pmc_find_process_descriptor()
2616 uint32_t hindex; in pmc_find_owner_descriptor() local
2618 hindex = PMC_HASH_PTR(p, pmc_ownerhashmask); in pmc_find_owner_descriptor()
2619 poh = &pmc_ownerhash[hindex]; in pmc_find_owner_descriptor()
2628 "pmc-owner=%p", p, p->p_pid, p->p_comm, hindex, po); in pmc_find_owner_descriptor()