| /dflybsd-src/contrib/zstd/lib/common/ |
| H A D | entropy_common.c | 72 int threshold; in FSE_readNCount_body() local 100 threshold = 1<<nbBits; in FSE_readNCount_body() 154 int const max = (2*threshold-1) - remaining; in FSE_readNCount_body() 157 if ((bitStream & (threshold-1)) < (U32)max) { in FSE_readNCount_body() 158 count = bitStream & (threshold-1); in FSE_readNCount_body() 161 count = bitStream & (2*threshold-1); in FSE_readNCount_body() 162 if (count >= threshold) count -= max; in FSE_readNCount_body() 179 assert(threshold > 1); in FSE_readNCount_body() 180 if (remaining < threshold) { in FSE_readNCount_body() 187 threshold = 1 << (nbBits - 1); in FSE_readNCount_body()
|
| H A D | fse.h | 574 U32 const threshold = (minNbBits+1) << 16; in FSE_bitCost() local 578 U32 const deltaFromThreshold = threshold - (symbolTT[symbolValue].deltaNbBits + tableSize); in FSE_bitCost() 581 assert(symbolTT[symbolValue].deltaNbBits + tableSize <= threshold); in FSE_bitCost()
|
| /dflybsd-src/contrib/gcc-4.7/gcc/ |
| H A D | tree-ssa-sink.c | 285 int threshold; in select_best_block() local 308 threshold = PARAM_VALUE (PARAM_SINK_FREQUENCY_THRESHOLD); in select_best_block() 311 threshold += 7; in select_best_block() 312 if (threshold > 100) in select_best_block() 313 threshold = 100; in select_best_block() 319 && best_bb->frequency < (early_bb->frequency * threshold / 100.0)) in select_best_block()
|
| H A D | params.def | 43 threshold (in percent), then it is considered well predictable. */ 222 /* This is the threshold ratio when to perform partial redundancy 230 "The threshold ratio for performing partial redundancy elimination after reload", 232 /* This is the threshold ratio of the critical edges execution count compared to 237 …"The threshold ratio of critical edges execution count that permit performing redundancy eliminati… 354 "sms-loop-average-count-threshold", 355 "A threshold on the average loop count considered by the swing modulo scheduler", 368 "align-threshold", 406 …"Stop reverse growth if the reverse probability of best edge is less than this threshold (in perce… 410 …"Stop forward growth if the probability of best edge is less than this threshold (in percent). Use… [all …]
|
| H A D | dbgcnt.def | 22 and return false after the counter has exceeded the threshold 37 And the incremented value is compared against the threshold (limit) 39 dbg_cnt () returns true if it is at or below threshold, and false if above.
|
| /dflybsd-src/contrib/gdb-7/gdb/tui/ |
| H A D | tui-source.c | 95 int offset, cur_line_no, cur_line, cur_len, threshold; in tui_set_source_content() local 112 threshold = (line_width - 1) + offset; in tui_set_source_content() 121 (threshold + 1) * sizeof (char)); in tui_set_source_content() 166 && (++i < threshold)) in tui_set_source_content() 192 && i < threshold; in tui_set_source_content() 219 && i < threshold in tui_set_source_content()
|
| H A D | tui-winsource.c | 661 int i, threshold; in tui_line_is_displayed() local 664 threshold = SCROLL_THRESHOLD; in tui_line_is_displayed() 666 threshold = 0; in tui_line_is_displayed() 668 while (i < win_info->generic.content_size - threshold in tui_line_is_displayed() 692 int i, threshold; in tui_addr_is_displayed() local 695 threshold = SCROLL_THRESHOLD; in tui_addr_is_displayed() 697 threshold = 0; in tui_addr_is_displayed() 699 while (i < win_info->generic.content_size - threshold in tui_addr_is_displayed()
|
| /dflybsd-src/contrib/gcc-8.0/gcc/ |
| H A D | ipa-profile.c | 509 gcov_type threshold; in ipa_profile() local 532 threshold = 0; in ipa_profile() 536 threshold = histogram[i]->count; in ipa_profile() 538 if (!threshold) in ipa_profile() 539 threshold = 1; in ipa_profile() 545 i < (int)histogram.length () && histogram[i]->count >= threshold; in ipa_profile() 553 (int64_t)threshold, in ipa_profile() 557 if (threshold > get_hot_bb_threshold () in ipa_profile() 562 set_hot_bb_threshold (threshold); in ipa_profile()
|
| H A D | tree-ssa-sink.c | 195 int threshold; in select_best_block() local 218 threshold = PARAM_VALUE (PARAM_SINK_FREQUENCY_THRESHOLD); in select_best_block() 221 threshold += 7; in select_best_block() 222 if (threshold > 100) in select_best_block() 223 threshold = 100; in select_best_block() 232 > (early_bb->count.apply_scale (threshold, 1)))) in select_best_block()
|
| H A D | params.def | 46 threshold (in percent), then it is considered well predictable. */ 240 /* This is the threshold ratio when to perform partial redundancy 248 "The threshold ratio for performing partial redundancy elimination after reload.", 250 /* This is the threshold ratio of the critical edges execution count compared to 255 …"The threshold ratio of critical edges execution count that permit performing redundancy eliminati… 392 "sms-loop-average-count-threshold", 393 "A threshold on the average loop count considered by the swing modulo scheduler.", 412 "align-threshold", 463 …"Stop reverse growth if the reverse probability of best edge is less than this threshold (in perce… 467 …"Stop forward growth if the probability of best edge is less than this threshold (in percent). Use… [all …]
|
| H A D | dbgcnt.def | 22 and return false after the counter has exceeded the threshold 37 And the incremented value is compared against the threshold (limit) 39 dbg_cnt () returns true if it is at or below threshold, and false if above.
|
| /dflybsd-src/sys/dev/drm/i915/ |
| H A D | intel_fbc.c | 225 int threshold = dev_priv->fbc.threshold; in ilk_fbc_activate() local 229 threshold++; in ilk_fbc_activate() 231 switch (threshold) { in ilk_fbc_activate() 292 int threshold = dev_priv->fbc.threshold; in gen7_fbc_activate() local 312 threshold++; in gen7_fbc_activate() 314 switch (threshold) { in gen7_fbc_activate() 600 fbc->threshold = ret; in intel_fbc_alloc_cfb() 625 fbc->compressed_fb.size, fbc->threshold); in intel_fbc_alloc_cfb() 848 fbc->compressed_fb.size * fbc->threshold) { in intel_fbc_can_activate() 903 32 * fbc->threshold) * 8; in intel_fbc_get_reg_params()
|
| H A D | intel_hotplug.c | 157 const int threshold = dev_priv->hotplug.hpd_storm_threshold; in intel_hpd_irq_storm_detect() local 164 } else if (dev_priv->hotplug.stats[pin].count > threshold && in intel_hpd_irq_storm_detect() 165 threshold) { in intel_hpd_irq_storm_detect()
|
| /dflybsd-src/contrib/binutils-2.34/libctf/ |
| H A D | ctf-archive.c | 35 static off_t arc_write_one_ctf (ctf_file_t * f, int fd, size_t threshold); 57 const char **names, size_t threshold) in ctf_arc_write_fd() argument 147 off = arc_write_one_ctf (ctf_files[i], fd, threshold); in ctf_arc_write_fd() 220 const char **names, size_t threshold) in ctf_arc_write() argument 232 err = ctf_arc_write_fd (fd, ctf_files, ctf_file_cnt, names, threshold); in ctf_arc_write() 262 arc_write_one_ctf (ctf_file_t * f, int fd, size_t threshold) in arc_write_one_ctf() argument 276 if (f->ctf_size > threshold) in arc_write_one_ctf()
|
| H A D | ctf-link.c | 768 ctf_link_write (ctf_file_t *fp, size_t *size, size_t threshold) in ctf_link_write() argument 795 return ctf_write_mem (fp, size, threshold); in ctf_link_write() 841 threshold)) < 0) in ctf_link_write()
|
| /dflybsd-src/contrib/mpfr/src/ |
| H A D | hypot.c | 36 mpfr_prec_t threshold; in mpfr_hypot() local 87 threshold = (MAX (N, Nz) + (rnd_mode == MPFR_RNDN ? 1 : 0)) << 1; in mpfr_hypot() 93 if (diff_exp > threshold) in mpfr_hypot()
|
| H A D | mul.c | 220 mp_size_t bn, cn, tn, k, threshold; in mpfr_mul() local 361 if (MPFR_UNLIKELY (bn > (threshold = b != c ? in mpfr_mul() 372 MPFR_ASSERTN (threshold >= 1); in mpfr_mul() 432 || bn <= threshold + 1)) in mpfr_mul()
|
| H A D | vasprintf.c | 1612 int threshold; in partition_number() local 1616 threshold = (spec.prec < 0) ? 6 : (spec.prec == 0) ? 1 : spec.prec; in partition_number() 1617 dec_info.str = mpfr_get_str (NULL, &dec_info.exp, 10, threshold, in partition_number() 1624 if (threshold > x && x >= -4) in partition_number() 1627 spec.prec = threshold - x - 1; in partition_number() 1634 spec.prec = threshold - 1; in partition_number()
|
| /dflybsd-src/sys/dev/sound/pci/ |
| H A D | hdspe-pcm.c | 448 int threshold; in hdspechan_setspeed() local 468 threshold = hr->speed + ((rate_map[i + 1].speed != 0) ? in hdspechan_setspeed() 470 if (speed < threshold) in hdspechan_setspeed() 512 int threshold; in hdspechan_setblocksize() local 540 threshold = hl->period + ((latency_map[i + 1].period != 0) ? in hdspechan_setblocksize() 542 if (blocksize < threshold) in hdspechan_setblocksize()
|
| /dflybsd-src/contrib/zstd/lib/compress/ |
| H A D | fse_compress.c | 207 int threshold; in FSE_writeNCount_generic() local 220 threshold = tableSize; in FSE_writeNCount_generic() 255 int const max = (2*threshold-1) - remaining; in FSE_writeNCount_generic() 258 if (count>=threshold) in FSE_writeNCount_generic() 265 while (remaining<threshold) { nbBits--; threshold>>=1; } in FSE_writeNCount_generic()
|
| /dflybsd-src/sys/dev/drm/include/drm/ |
| H A D | gpu_scheduler.h | 199 int threshold) in drm_sched_invalidate_job() argument 201 return (s_job && atomic_inc_return(&s_job->karma) > threshold); in drm_sched_invalidate_job()
|
| /dflybsd-src/sys/dev/sound/pcm/ |
| H A D | channel.c | 789 chn_sync(struct pcm_channel *c, int threshold) in chn_sync() argument 803 (threshold < 1 && sndbuf_getready(bs) < 1)) in chn_sync() 808 if (threshold > 0 || sndbuf_getready(bs) > 0) { in chn_sync() 818 minflush = threshold + sndbuf_xbytes(sndbuf_getready(b), b, bs); in chn_sync() 822 if (syncdelay < 0 && (threshold > 0 || sndbuf_getready(bs) > 0)) in chn_sync() 837 threshold = min(minflush, sndbuf_getfree(bs)); in chn_sync() 838 sndbuf_clear(bs, threshold); in chn_sync() 839 sndbuf_acquire(bs, NULL, threshold); in chn_sync() 840 minflush -= threshold; in chn_sync() 894 threshold = min(minflush, in chn_sync() [all …]
|
| /dflybsd-src/contrib/pam_passwdqc/ |
| H A D | passwdqc_filter.h | 15 uint8_t threshold; /* 0 to 4 */ member 49 … header->threshold > header->bucket_size || header->bucket_size < 2 || header->bucket_size > 4 || in passwdqc_filter_verify_header()
|
| /dflybsd-src/usr.bin/window/ |
| H A D | compress.c | 465 short threshold = thresh(length); in cc_sweep() local 598 (p->bcount >= threshold in cc_sweep() 752 int threshold = thresh(length); in cc_compress() local 772 if (p->code >= 0 || ccount >= threshold) in cc_compress()
|
| /dflybsd-src/contrib/binutils-2.34/include/ |
| H A D | ctf-api.h | 410 extern unsigned char *ctf_write_mem (ctf_file_t *, size_t *, size_t threshold); 424 size_t threshold);
|