Home
last modified time | relevance | path

Searched full:cutoff (Results 1 – 25 of 161) sorted by relevance

1234567

/freebsd/contrib/sendmail/libsm/
H A Dstrto.c51 register LONGLONG_T acc, cutoff; variable
88 ** Compute the cutoff value between legal numbers and illegal
96 ** is 10, cutoff will be set to 922337203685477580 and cutlim to
106 cutoff = neg ? LLONG_MIN : LLONG_MAX;
107 cutlim = cutoff % base;
108 cutoff /= base;
114 cutoff += 1;
132 if (acc < cutoff || (acc == cutoff && c > cutlim))
147 if (acc > cutoff || (acc == cutoff && c > cutlim))
191 register ULONGLONG_T acc, cutoff; local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSizeOpts.cpp51 "pgso-cutoff-instr-prof", cl::Hidden, cl::init(950000),
52 cl::desc("The profile guided size optimization profile summary cutoff "
56 "pgso-cutoff-sample-prof", cl::Hidden, cl::init(990000),
57 cl::desc("The profile guided size optimization profile summary cutoff "
67 static bool isFunctionHotInCallGraphNthPercentile(int CutOff, in isFunctionHotInCallGraphNthPercentile()
71 return PSI->isFunctionHotInCallGraphNthPercentile(CutOff, F, BFI); in isFunctionHotInCallGraphNthPercentile()
73 static bool isFunctionColdInCallGraphNthPercentile(int CutOff, in isFunctionColdInCallGraphNthPercentile()
77 return PSI->isFunctionColdInCallGraphNthPercentile(CutOff, F, BFI); in isFunctionColdInCallGraphNthPercentile()
84 static bool isHotBlockNthPercentile(int CutOff, in isHotBlockNthPercentile()
88 return PSI->isHotBlockNthPercentile(CutOff, BB, BFI); in isHotBlockNthPercentile()
[all …]
/freebsd/crypto/openssh/openbsd-compat/
H A Dstrtoll.c53 long long acc, cutoff; in strtoll() local
84 * Compute the cutoff value between legal numbers and illegal in strtoll()
92 * is 10, cutoff will be set to 922337203685477580 and cutlim to in strtoll()
101 cutoff = neg ? LLONG_MIN : LLONG_MAX; in strtoll()
102 cutlim = cutoff % base; in strtoll()
103 cutoff /= base; in strtoll()
107 cutoff += 1; in strtoll()
123 if (acc < cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
133 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
H A Dstrtoull.c53 unsigned long long acc, cutoff; in strtoull() local
81 cutoff = ULLONG_MAX / (unsigned long long)base; in strtoull()
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoull()
H A Dstrtoul.c51 unsigned long acc, cutoff; in strtoul() local
79 cutoff = ULONG_MAX / (unsigned long)base; in strtoul()
92 if (acc > cutoff || acc == cutoff && c > cutlim) { in strtoul()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp34 "profile-summary-cutoff-hot", cl::Hidden, cl::init(990000),
39 "profile-summary-cutoff-cold", cl::Hidden, cl::init(999999),
47 " blocks required to reach the -profile-summary-cutoff-hot"
54 " blocks required to reach the -profile-summary-cutoff-hot"
62 " profile-summary-cutoff-hot"));
67 " profile-summary-cutoff-cold"));
70 // A set of cutoff values. Each value, when divided by ProfileSummary::Scale
84 return Entry.Cutoff < Percentile; in getEntryForPercentile()
89 report_fatal_error("Desired percentile exceeds the maximum cutoff"); in getEntryForPercentile()
131 // The argument to this method is a vector of cutoff percentage
143 for (const uint32_t Cutoff : DetailedSummaryCutoffs) { computeDetailedSummary() local
[all...]
/freebsd/lib/libc/iconv/
H A D_strtol.h51 __INT acc, cutoff; in _FUNCNAME() local
105 * Compute the cutoff value between legal numbers and illegal in _FUNCNAME()
113 * cutoff will be set to 214748364 and cutlim to either in _FUNCNAME()
121 cutoff = (neg ? __INT_MIN : __INT_MAX); in _FUNCNAME()
122 cutlim = (int)(cutoff % base); in _FUNCNAME()
123 cutoff /= base; in _FUNCNAME()
127 cutoff += 1; in _FUNCNAME()
143 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
158 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
/freebsd/contrib/bmake/
H A D_strtol.h59 __INT acc, cutoff; in _FUNCNAME() local
123 * Compute the cutoff value between legal numbers and illegal in _FUNCNAME()
131 * cutoff will be set to 214748364 and cutlim to either in _FUNCNAME()
139 cutoff = (__INT)(neg ? __INT_MIN : __INT_MAX); in _FUNCNAME()
140 cutlim = (int)(cutoff % base); in _FUNCNAME()
141 cutoff /= base; in _FUNCNAME()
145 cutoff += 1; in _FUNCNAME()
163 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
178 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
/freebsd/sys/libkern/
H A Dstrtol.c52 unsigned long cutoff; in strtol() local
78 * Compute the cutoff value between legal numbers and illegal in strtol()
86 * cutoff will be set to 214748364 and cutlim to either in strtol()
94 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX; in strtol()
95 cutlim = cutoff % (unsigned long)base; in strtol()
96 cutoff /= (unsigned long)base; in strtol()
108 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
H A Dstrtoq.c52 u_quad_t qbase, cutoff; in strtoq() local
82 * Compute the cutoff value between legal numbers and illegal in strtoq()
90 * is 10, cutoff will be set to 922337203685477580 and cutlim to in strtoq()
100 cutoff = neg ? (u_quad_t)-(QUAD_MIN + QUAD_MAX) + QUAD_MAX : QUAD_MAX; in strtoq()
101 cutlim = cutoff % qbase; in strtoq()
102 cutoff /= qbase; in strtoq()
114 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoq()
H A Dstrtoul.c52 unsigned long cutoff; in strtoul() local
74 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base; in strtoul()
87 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
H A Dstrtouq.c52 u_quad_t qbase, cutoff; in strtouq() local
78 cutoff = (u_quad_t)UQUAD_MAX / qbase; in strtouq()
91 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtouq()
/freebsd/contrib/unbound/util/
H A Drfc_1982.c48 const uint32_t cutoff = ((uint32_t) 1 << (32 - 1)); in compare_1982() local
52 } else if ((a < b && b - a < cutoff) || (a > b && a - b > cutoff)) { in compare_1982()
63 const uint32_t cutoff = ((uint32_t) 1 << (32 - 1)); in subtract_1982() local
67 if(a < b && b - a < cutoff) { in subtract_1982()
70 if(a > b && a - b > cutoff) { in subtract_1982()
/freebsd/lib/libc/stdlib/
H A Dstrtoimax.c56 uintmax_t cutoff; in strtoimax_l() local
100 * Compute the cutoff value between legal numbers and illegal in strtoimax_l()
108 * is 10, cutoff will be set to 922337203685477580 and cutlim to in strtoimax_l()
117 cutoff = neg ? (uintmax_t)-(INTMAX_MIN + INTMAX_MAX) + INTMAX_MAX in strtoimax_l()
119 cutlim = cutoff % base; in strtoimax_l()
120 cutoff /= base; in strtoimax_l()
132 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoimax_l()
H A Dstrtol.c56 unsigned long cutoff; in strtol_l() local
100 * Compute the cutoff value between legal numbers and illegal in strtol_l()
108 * cutoff will be set to 214748364 and cutlim to either in strtol_l()
116 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX in strtol_l()
118 cutlim = cutoff % base; in strtol_l()
119 cutoff /= base; in strtol_l()
131 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol_l()
H A Dstrtoll.c56 unsigned long long cutoff; in strtoll_l() local
101 * Compute the cutoff value between legal numbers and illegal in strtoll_l()
109 * is 10, cutoff will be set to 922337203685477580 and cutlim to in strtoll_l()
118 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX in strtoll_l()
120 cutlim = cutoff % base; in strtoll_l()
121 cutoff /= base; in strtoll_l()
133 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll_l()
H A Dstrtoul.c55 unsigned long cutoff; in strtoul_l() local
96 cutoff = ULONG_MAX / base; in strtoul_l()
109 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul_l()
H A Dstrtoull.c56 unsigned long long cutoff; in strtoull_l() local
97 cutoff = ULLONG_MAX / base; in strtoull_l()
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull_l()
H A Dstrtoumax.c56 uintmax_t cutoff; in strtoumax_l() local
97 cutoff = UINTMAX_MAX / base; in strtoumax_l()
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoumax_l()
/freebsd/contrib/ntp/libparse/
H A Dclk_rawdcf.c408 unsigned int i, lowmax, highmax, cutoff, span; in cvt_rawdcf() local
425 cutoff = 0; in cvt_rawdcf()
444 cutoff += i; in cvt_rawdcf()
458 cutoff /= lowmax; in cvt_rawdcf()
462 cutoff = 4; /* doesn't really matter - it'll fail anyway, but gives error output */ in cvt_rawdcf()
465 parseprintf(DD_RAWDCF,("parse: cvt_rawdcf: average bit count: %d\n", cutoff)); in cvt_rawdcf()
471 for (i = 0; i <= cutoff; i++) in cvt_rawdcf()
491 cutoff = 0; in cvt_rawdcf()
496 cutoff +=histbuf[i]; in cvt_rawdcf()
501 if (cutoff) in cvt_rawdcf()
[all...]
/freebsd/lib/libc/locale/
H A Dwcstoimax.c54 uintmax_t cutoff; in wcstoimax_l() local
95 cutoff = neg ? (uintmax_t)-(INTMAX_MIN + INTMAX_MAX) + INTMAX_MAX in wcstoimax_l()
97 cutlim = cutoff % base; in wcstoimax_l()
98 cutoff /= base; in wcstoimax_l()
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoimax_l()
H A Dwcstol.c54 unsigned long cutoff; in wcstol_l() local
95 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX in wcstol_l()
97 cutlim = cutoff % base; in wcstol_l()
98 cutoff /= base; in wcstol_l()
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstol_l()
H A Dwcstoll.c54 unsigned long long cutoff; in wcstoll_l() local
95 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX in wcstoll_l()
97 cutlim = cutoff % base; in wcstoll_l()
98 cutoff /= base; in wcstoll_l()
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoll_l()
/freebsd/contrib/processor-trace/libipt/test/src/
H A Dptunit-packet.c467 static struct ptunit_result cutoff(struct packet_fixture *pfix, in cutoff() function
628 ptu_run_fp(suite, cutoff, pfix, ppt_psb); in main()
633 ptu_run_fp(suite, cutoff, pfix, ppt_ovf); in main()
634 ptu_run_fp(suite, cutoff, pfix, ppt_psbend); in main()
635 ptu_run_fp(suite, cutoff, pfix, ppt_tnt_64); in main()
636 ptu_run_fp(suite, cutoff, pfix, ppt_tsc); in main()
637 ptu_run_fp(suite, cutoff, pfix, ppt_cbr); in main()
638 ptu_run_fp(suite, cutoff, pfix, ppt_tma); in main()
639 ptu_run_fp(suite, cutoff, pfix, ppt_mtc); in main()
643 ptu_run_fp(suite, cutoff, pfix, ppt_vmcs); in main()
[all …]
/freebsd/sys/contrib/openzfs/include/sys/
H A Dddt_impl.h222 * cutoff value where entries older than the cutoff get pruned.
234 void ddt_prune_walk(spa_t *spa, uint64_t cutoff, ddt_age_histo_t *histogram);
237 #define ddt_dump_age_histogram(histo, cutoff) ((void)0) argument
240 ddt_dump_age_histogram(ddt_age_histo_t *histogram, uint64_t cutoff) in ddt_dump_age_histogram() argument
245 (void) printf("DDT prune unique class age, %llu hour cutoff\n", in ddt_dump_age_histogram()
246 (u_longlong_t)(gethrestime_sec() - cutoff)/3600); in ddt_dump_age_histogram()

1234567