Home
last modified time | relevance | path

Searched refs:threshold (Results 1 – 25 of 126) sorted by relevance

123456

/openbsd-src/usr.sbin/map-mbone/
H A Dmapper.c58 u_char threshold; /* TTL threshold to forward */ member
307 u_char metric, threshold, ncount; in accept_neighbors() local
321 threshold = *p++; in accept_neighbors()
357 || nb_i->threshold != nb_n->threshold) in accept_neighbors()
360 "metric/threshold", in accept_neighbors()
401 if (metric != nb->metric || threshold != nb->threshold) in accept_neighbors()
404 "metric/threshold", in accept_neighbors()
442 u_char metric, threshold, ncount, flags; accept_neighbors2() local
[all...]
/openbsd-src/gnu/llvm/llvm/utils/filecheck_lint/
H A Dfilecheck_lint.py182 threshold: int = 3,
204 [(threshold + 1, typo)] + [(levenshtein(typo, d), d)
206 if abs(len(d) - len(typo)) <= threshold],
223 if len(potential_directive) > max(map(len, all_directives)) + threshold:
229 elif score <= threshold and best_match not in _ignore:
245 threshold=_distance_threshold,
/openbsd-src/gnu/gcc/gcc/
H A Dtree-ssa-math-opts.c293 tree def, tree recip_def, int threshold) in insert_reciprocals() argument
301 && occ->num_divisions >= threshold) in insert_reciprocals()
340 insert_reciprocals (def_bsi, occ_child, def, recip_def, threshold); in insert_reciprocals()
402 int count = 0, threshold; in execute_cse_reciprocals_1() local
417 threshold = targetm.min_divisions_for_recip_mul (TYPE_MODE (TREE_TYPE (def))); in execute_cse_reciprocals_1()
418 if (count >= threshold) in execute_cse_reciprocals_1()
424 insert_reciprocals (def_bsi, occ, def, NULL, threshold); in execute_cse_reciprocals_1()
H A Dparams.def85 "The threshold ratio between instantiated fields and the total structure size",
213 /* This is the threshold ratio when to perform partial redundancy
221 "The threshold ratio for performing partial redundancy elimination after reload",
223 /* This is the threshold ratio of the critical edges execution count compared to
228 …"The threshold ratio of critical edges execution count that permit performing redundancy eliminati…
317 "sms-loop-average-count-threshold",
318 "A threshold on the average loop count considered by the swing modulo scheduler",
359 …"Stop reverse growth if the reverse probability of best edge is less than this threshold (in perce…
363 …"Stop forward growth if the probability of best edge is less than this threshold (in percent). Use…
367 …"Stop forward growth if the probability of best edge is less than this threshold (in percent). Use…
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/tui/
H A Dtui-source.c90 int offset, cur_line_no, cur_line, cur_len, threshold; in tui_set_source_content() local
105 threshold = (line_width - 1) + offset; in tui_set_source_content()
112 (threshold + 1) * sizeof (char)); in tui_set_source_content()
154 (c != '\r') && (++i < threshold)) in tui_set_source_content()
179 i < threshold); in tui_set_source_content()
197 i < threshold && (c = fgetc (stream))); in tui_set_source_content()
H A Dtui-winsource.c607 int i, threshold; in tui_line_is_displayed() local
610 threshold = SCROLL_THRESHOLD; in tui_line_is_displayed()
612 threshold = 0; in tui_line_is_displayed()
614 while (i < win_info->generic.content_size - threshold && !is_displayed) in tui_line_is_displayed()
633 int i, threshold; in tui_addr_is_displayed() local
636 threshold = SCROLL_THRESHOLD; in tui_addr_is_displayed()
638 threshold = 0; in tui_addr_is_displayed()
640 while (i < win_info->generic.content_size - threshold && !is_displayed) in tui_addr_is_displayed()
/openbsd-src/sys/dev/usb/
H A Dutpms.c170 int threshold; /* Changes less than this are ignored. */ member
186 .threshold = 5, \
315 sc->sc_threshold = pd->threshold; in utpms_attach()
626 detect_pos(int *sensors, int n_sensors, int threshold, int fact, in detect_pos() argument
638 if (sensors[i] >= threshold) { in detect_pos()
639 if (i == 0 || sensors[i - 1] < threshold) in detect_pos()
641 s += sensors[i] - threshold; in detect_pos()
642 w += (sensors[i] - threshold) * i; in detect_pos()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTProperties.td5 Property<"infinite-decoding-loop-verification-threshold", "UInt64">,
11 "threshold T, another attempt will be done after 2T instructions, then "
17 Property<"extremely-large-decoding-threshold", "UInt64">,
/openbsd-src/lib/librthread/
H A Drthread_barrier.c54 b->threshold = count; in pthread_barrier_init()
116 _rthread_debug(6, "in: %d, threshold: %d\n", b->in, b->threshold); in pthread_barrier_wait()
117 if (++b->in == b->threshold) { in pthread_barrier_wait()
H A Drthread.h62 int threshold; member
/openbsd-src/sbin/atactl/
H A Datasmart.h94 struct threshold { struct
103 struct threshold threshold[30]; member
/openbsd-src/sys/dev/pci/drm/i915/gt/
H A Dintel_rps.h41 int intel_rps_set_up_threshold(struct intel_rps *rps, u8 threshold);
43 int intel_rps_set_down_threshold(struct intel_rps *rps, u8 threshold);
/openbsd-src/gnu/llvm/llvm/bindings/ocaml/transforms/scalar_opts/
H A Dscalar_opts_ocaml.c179 value llvm_add_scalar_repl_aggregates_with_threshold(value threshold, in llvm_add_scalar_repl_aggregates_with_threshold() argument
181 LLVMAddScalarReplAggregatesPassWithThreshold(PM, Int_val(threshold)); in llvm_add_scalar_repl_aggregates_with_threshold()
/openbsd-src/sys/arch/riscv64/dev/
H A Dplic.c217 * enable, threshold, and claim bits by "context" in plic_attach()
502 * After set the new threshold, if there is any pending in plic_splx()
504 * threshold, they will get passed through plic to cpu, in plic_splx()
671 /* update threshold for 'cpu' */
673 plic_set_threshold(int cpu, uint32_t threshold) in plic_set_threshold() argument
678 if (threshold < 4) // enable everything (as far as plic is concerned) in plic_set_threshold()
680 else if (threshold >= 12) // invalid priority level ? in plic_set_threshold()
681 prival = IPL_HIGH - 4; // XXX Device-specific high threshold in plic_set_threshold()
683 prival = threshold - 4; // XXX Device-specific threshold offse in plic_set_threshold()
[all...]
/openbsd-src/gnu/llvm/llvm/docs/CommandGuide/
H A Dllvm-profdata.rst170 .. option:: --zero-counter-threshold=<float>
174 counters is above the threshold, the profile of the function will be regarded
177 .. option:: --instr-prof-cold-threshold=<int>
179 User specified cold threshold for instr profile which will override the cold
180 threshold got from profile summary.
182 .. option:: --suppl-min-size-threshold=<int>
184 If the size of a function is smaller than the threshold, assume it can be
/openbsd-src/usr.sbin/mrouted/
H A Drsrr.h110 u_char threshold; /* vif threshold ttl */ member
/openbsd-src/sys/dev/pci/drm/include/drm/
H A Dgpu_scheduler.h381 int threshold) in drm_sched_invalidate_job() argument
383 return s_job && atomic_inc_return(&s_job->karma) > threshold; in drm_sched_invalidate_job()
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN/lib/App/
H A DCpan.pm1526 my $threshold = (
1532 my $guesses = _guess_at_module_name( $module, $threshold );
1592 my( $target, $threshold ) = @_;
1601 $threshold ||= $try->[2];
1604 $_threshold ||= $threshold;
/openbsd-src/gnu/llvm/compiler-rt/lib/xray/
H A Dxray_basic_flags.inc18 "microseconds than this threshold.")
H A Dxray_fdr_flags.inc19 "microseconds than this threshold.")
/openbsd-src/gnu/llvm/llvm/docs/
H A DMisExpect.rst35 We calculate the threshold for emitting MisExpect related diagnostics
39 profile weights mismatch the calculated threshold, then we will emit a
H A DXRay.rst67 ``-fxray-instruction-threshold=`` flag:
71 clang -fxray-instrument -fxray-instruction-threshold=1 ...
74 instruction threshold. You can also specifically instrument functions in your
112 You can also set the ``xray-instruction-threshold`` attribute and provide a
118 define i32 @maybe_instrument() uwtable "xray-instruction-threshold"="2" {
/openbsd-src/sys/dev/pci/
H A Dmaestro.c413 u_int16_t threshold; member
1073 sc->record.threshold = sc->record.start; in maestro_trigger_input()
1187 sc->play.threshold = sc->play.start; in maestro_trigger_output()
1406 if (pos >= ch->threshold && in maestro_channel_advance_dma()
1407 pos < ch->threshold + ch->blocksize/2) in maestro_channel_advance_dma()
1409 ch->threshold += ch->blocksize/2; in maestro_channel_advance_dma()
1410 if (ch->threshold >= ch->end) in maestro_channel_advance_dma()
1411 ch->threshold = ch->start; in maestro_channel_advance_dma()
/openbsd-src/sys/net/
H A Drtable.c505 int threshold, npaths = 0; in rtable_match() local
516 threshold = (0xffff / npaths) + 1; in rtable_match()
529 while (hash > threshold && mrt != NULL) { in rtable_match()
531 hash -= threshold; in rtable_match()
/openbsd-src/sys/dev/pci/drm/amd/amdgpu/
H A Dnavi10_ih.c106 u32 threshold, u32 timeout, bool enabled) in force_update_wptr_for_self_int() argument
121 RB_USED_INT_THRESHOLD, threshold); in force_update_wptr_for_self_int()
132 RB_USED_INT_THRESHOLD, threshold); in force_update_wptr_for_self_int()

123456