Home
last modified time | relevance | path

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

/freebsd/sys/dev/hwt/
H A Dhwt_contexthash.c78 int hindex; local
80 hindex = HWT_HASH_PTR(p, hwt_contexthashmask);
81 hch = &hwt_contexthash[hindex];
100 int hindex; in hwt_contexthash_insert() local
102 hindex = HWT_HASH_PTR(ctx->proc, hwt_contexthashmask); in hwt_contexthash_insert()
103 hch = &hwt_contexthash[hindex]; in hwt_contexthash_insert()
H A Dhwt_ownerhash.c73 int hindex; local
75 hindex = HWT_HASH_PTR(p, hwt_ownerhashmask);
76 hoh = &hwt_ownerhash[hindex];
94 int hindex; in hwt_ownerhash_insert() local
96 hindex = HWT_HASH_PTR(ho->p, hwt_ownerhashmask); in hwt_ownerhash_insert()
97 hoh = &hwt_ownerhash[hindex]; in hwt_ownerhash_insert()
/freebsd/crypto/openssl/providers/implementations/keymgmt/
H A Ddsa_kmgmt.c68 int hindex; member
427 gctx->hindex = 0; in dsa_gen_init()
504 && !OSSL_PARAM_get_int(p, &gctx->hindex)) in dsa_gen_set_params()
653 } else if (gctx->hindex != 0) { in dsa_gen()
654 ossl_ffc_params_set_h(ffc, gctx->hindex); in dsa_gen()
H A Ddh_kmgmt.c72 int hindex; member
475 gctx->hindex = 0; in dh_gen_init_base()
617 if (p != NULL && !OSSL_PARAM_get_int(p, &gctx->hindex)) in dhx_gen_set_params()
755 } else if (gctx->hindex != 0) { in dh_gen()
756 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/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/crypto/openssl/test/
H A Devp_pkey_provided_test.c887 int gindex = 0, pcounter = 0, hindex = 0; in test_fromdata_dh_named_group() local
1054 &hindex)) in test_fromdata_dh_named_group()
1055 || !TEST_int_eq(hindex, 0) in test_fromdata_dh_named_group()
1127 int gindex = 0, pcounter = 0, hindex = 0; in test_fromdata_dh_fips186_4() local
1263 &hindex)) in test_fromdata_dh_fips186_4()
1264 || !TEST_int_eq(hindex, 0) in test_fromdata_dh_fips186_4()
/freebsd/contrib/jemalloc/src/
H A Darena.c292 szind_t index, hindex; in arena_slab_reg_alloc_batch()
300 hindex = (index >= SC_NBINS) ? index - SC_NBINS : 0; in arena_slab_reg_alloc_batch()
303 &arena->stats.lstats[hindex].nmalloc, 1); in arena_slab_reg_alloc_batch()
308 szind_t index, hindex; in arena_slab_reg_alloc_batch()
316 hindex = (index >= SC_NBINS) ? index - SC_NBINS : 0; in arena_slab_reg_alloc_batch()
319 &arena->stats.lstats[hindex].ndalloc, 1); in arena_slab_reg_alloc_batch()
385 szind_t index, hindex; arena_large_malloc_stats_update() local
401 szind_t index, hindex; arena_large_dalloc_stats_update() local
/freebsd/sys/dev/hwpmc/
H A Dhwpmc_mod.c2303 uint32_t hindex; in pmc_allocate_owner_descriptor() local
2305 hindex = PMC_HASH_PTR(p, pmc_ownerhashmask); in pmc_allocate_owner_descriptor()
2306 poh = &pmc_ownerhash[hindex]; in pmc_allocate_owner_descriptor()
2537 uint32_t hindex; in pmc_find_process_descriptor() local
2539 hindex = PMC_HASH_PTR(p, pmc_processhashmask); in pmc_find_process_descriptor()
2540 pph = &pmc_processhash[hindex]; in pmc_find_process_descriptor()
2618 uint32_t hindex; in pmc_find_owner_descriptor() local
2620 hindex = PMC_HASH_PTR(p, pmc_ownerhashmask); in pmc_find_owner_descriptor()
2621 poh = &pmc_ownerhash[hindex]; in pmc_find_owner_descriptor()
2630 "pmc-owner=%p", p, p->p_pid, p->p_comm, hindex, po); in pmc_find_owner_descriptor()