Searched refs:hindex (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/less/ |
H A D | line.c | 141 int hindex; /* Index into hyperlink prefix */ global() member
|
/freebsd/crypto/openssl/providers/implementations/keymgmt/ |
H A D | dsa_kmgmt.c | 65 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 D | dh_kmgmt.c | 69 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 D | EVP_PKEY-DH.pod | 138 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 D | EVP_PKEY-FFC.pod | 93 =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 D | evp_pkey_provided_test.c | 507 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 D | altq_fairq.c | 612 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 D | arena.c | 385 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 D | hwpmc_mod.c | 2301 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()
|