Home
last modified time | relevance | path

Searched refs:maxidx (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/netpfil/ipfw/
H A Ddn_sched_fq_codel.c295 int idx, drop, i, maxidx; in fq_codel_enqueue() local
330 for (maxidx = 0; maxidx < schk->cfg.flows_cnt; maxidx++) in fq_codel_enqueue()
331 if (si->flows[maxidx].active) in fq_codel_enqueue()
333 if (maxidx < schk->cfg.flows_cnt) { in fq_codel_enqueue()
335 for (i = maxidx + 1; i < schk->cfg.flows_cnt; i++) in fq_codel_enqueue()
337 si->flows[maxidx].stats.length) in fq_codel_enqueue()
338 maxidx = i; in fq_codel_enqueue()
339 codel_drop_head(&si->flows[maxidx], si); in fq_codel_enqueue()
340 D("maxidx = %d",maxidx); in fq_codel_enqueue()
H A Ddn_sched_fq_pie.c871 int idx, drop, i, maxidx; in fq_pie_enqueue() local
906 for (maxidx = 0; maxidx < schk->cfg.flows_cnt; maxidx++) in fq_pie_enqueue()
907 if (flows[maxidx].active) in fq_pie_enqueue()
909 if (maxidx < schk->cfg.flows_cnt) { in fq_pie_enqueue()
911 for (i = maxidx + 1; i < schk->cfg.flows_cnt; i++) in fq_pie_enqueue()
913 flows[maxidx].stats.length) in fq_pie_enqueue()
914 maxidx = i; in fq_pie_enqueue()
915 pie_drop_head(&flows[maxidx], si); in fq_pie_enqueue()
/freebsd/crypto/openssh/
H A Dsshkey-xmss.c70 u_int32_t maxidx; /* restricted # of signatures */ member
340 (r = sshbuf_put_u32(b, state->maxidx)) != 0) in sshkey_xmss_serialize_pk_info()
362 (r = sshbuf_get_u32(b, &state->maxidx)) != 0) in sshkey_xmss_deserialize_pk_info()
461 if (state->maxidx) { in sshkey_xmss_get_state()
464 if (idx < state->maxidx) { in sshkey_xmss_get_state()
581 if (state->maxidx) { in sshkey_xmss_update_state()
757 if ((r = sshbuf_put_u32(b, state->maxidx)) != 0 || in sshkey_xmss_serialize_state_opt()
868 if ((r = sshbuf_get_u32(b, &state->maxidx)) != 0 || in sshkey_xmss_deserialize_state_opt()
1091 state->maxidx) { in sshkey_xmss_signatures_left()
1093 if (idx < state->maxidx) in sshkey_xmss_signatures_left()
[all …]
/freebsd/crypto/openssl/util/
H A Dcheck-format-commit.sh149 let maxidx=${#range_start[@]}-1
150 for k in $(seq 0 1 $maxidx)
/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dhash.c264 int maxidx = 0; in hash_stats() local
279 maxidx = i; in hash_stats()
289 printf(" Min/Max: %d in #%d, %d in #%d\n", min, minidx, max, maxidx); in hash_stats()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddsl_bookmark.c1672 uint64_t maxidx = rl->rl_phys->rlp_num_entries - 1; in dsl_redaction_list_traverse() local
1674 while (resume != NULL && maxidx > minidx) { in dsl_redaction_list_traverse()
1676 ASSERT3U(maxidx, >, minidx); in dsl_redaction_list_traverse()
1677 uint64_t mididx = minidx + ((maxidx - minidx) / 2); in dsl_redaction_list_traverse()
1689 maxidx = in dsl_redaction_list_traverse()
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dfil.c8461 int i, nelem, maxidx; local
8483 maxidx = nelem - 1;
8487 if (array[maxidx] != IPF_EXP_END) {
8491 for (i = 1; i < maxidx; ) {
8500 (e->ipfe_size + i > maxidx)) {
/freebsd/sys/contrib/openzfs/cmd/zdb/
H A Dzdb.c951 int maxidx = 0; in dump_histogram() local
959 if (i > maxidx) in dump_histogram()
960 maxidx = i; in dump_histogram()
968 for (i = minidx; i <= maxidx; i++) { in dump_histogram()