Searched refs:cutoff (Results 1 - 25 of 29) sorted by relevance

12

/openbsd-current/sbin/unwind/libunbound/util/
H A Drfc_1982.c48 const uint32_t cutoff = ((uint32_t) 1 << (32 - 1)); local
52 } else if ((a < b && b - a < cutoff) || (a > b && a - b > cutoff)) {
63 const uint32_t cutoff = ((uint32_t) 1 << (32 - 1)); local
67 if(a < b && b - a < cutoff) {
70 if(a > b && a - b > cutoff) {
/openbsd-current/usr.sbin/unbound/util/
H A Drfc_1982.c48 const uint32_t cutoff = ((uint32_t) 1 << (32 - 1)); local
52 } else if ((a < b && b - a < cutoff) || (a > b && a - b > cutoff)) {
63 const uint32_t cutoff = ((uint32_t) 1 << (32 - 1)); local
67 if(a < b && b - a < cutoff) {
70 if(a > b && a - b > cutoff) {
/openbsd-current/lib/libc/locale/
H A D_wcstol.h52 int_type acc, cutoff; local
92 cutoff = neg ? MIN_VALUE : MAX_VALUE;
93 cutlim = (int)(cutoff % base);
94 cutoff /= base;
98 cutoff += 1;
111 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
121 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
H A D_wcstoul.h51 uint_type acc, cutoff; local
90 cutoff = MAX_VALUE / (uint_type)base;
100 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
/openbsd-current/lib/libc/stdlib/
H A Dstrtoimax.c45 intmax_t acc, cutoff; local
87 * Compute the cutoff value between legal numbers and illegal
95 * is 10, cutoff will be set to 922337203685477580 and cutlim to
104 cutoff = neg ? INTMAX_MIN : INTMAX_MAX;
105 cutlim = cutoff % base;
106 cutoff /= base;
110 cutoff += 1;
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
136 if (acc > cutoff || (ac
[all...]
H A Dstrtol.c46 long acc, cutoff; local
88 * Compute the cutoff value between legal numbers and illegal
96 * cutoff will be set to 214748364 and cutlim to either
104 cutoff = neg ? LONG_MIN : LONG_MAX;
105 cutlim = cutoff % base;
106 cutoff /= base;
110 cutoff += 1;
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
136 if (acc > cutoff || (ac
[all...]
H A Dstrtoll.c48 long long acc, cutoff; local
90 * Compute the cutoff value between legal numbers and illegal
98 * is 10, cutoff will be set to 922337203685477580 and cutlim to
107 cutoff = neg ? LLONG_MIN : LLONG_MAX;
108 cutlim = cutoff % base;
109 cutoff /= base;
113 cutoff += 1;
129 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
139 if (acc > cutoff || (ac
[all...]
H A Dstrtoul.c46 unsigned long acc, cutoff; local
81 cutoff = ULONG_MAX / (unsigned long)base;
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoull.c48 unsigned long long acc, cutoff; local
83 cutoff = ULLONG_MAX / (unsigned long long)base;
96 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoumax.c45 uintmax_t acc, cutoff; local
80 cutoff = UINTMAX_MAX / (uintmax_t)base;
93 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
/openbsd-current/sys/lib/libsa/
H A Dstrtol.c45 long acc, cutoff; local
76 * Compute the cutoff value between legal numbers and illegal
84 * cutoff will be set to 214748364 and cutlim to either
92 cutoff = neg ? LONG_MIN : LONG_MAX;
93 cutlim = cutoff % base;
94 cutoff /= base;
98 cutoff += 1;
116 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
125 if (acc > cutoff || (ac
[all...]
H A Dstrtoll.c45 long long acc, cutoff; local
76 * Compute the cutoff value between legal numbers and illegal
84 * is 10, cutoff will be set to 922337203685477580 and cutlim to
93 cutoff = neg ? LLONG_MIN : LLONG_MAX;
94 cutlim = cutoff % base;
95 cutoff /= base;
99 cutoff += 1;
115 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
124 if (acc > cutoff || (ac
[all...]
/openbsd-current/libexec/ld.so/
H A Dstrtol.c47 long acc, cutoff; local
79 * Compute the cutoff value between legal numbers and illegal
87 * cutoff will be set to 214748364 and cutlim to either
95 cutoff = neg ? LONG_MIN : LONG_MAX;
96 cutlim = cutoff % base;
97 cutoff /= base;
101 cutoff += 1;
119 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
128 if (acc > cutoff || (ac
[all...]
/openbsd-current/gnu/lib/libiberty/src/
H A Dstrtol.c93 register unsigned long cutoff; local
119 * Compute the cutoff value between legal numbers and illegal
127 * cutoff will be set to 214748364 and cutlim to either
135 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
136 cutlim = cutoff % (unsigned long)base;
137 cutoff /= (unsigned long)base;
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c66 register unsigned long cutoff; local
88 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/openbsd-current/usr.sbin/dhcpd/
H A Doptions.c402 int buflen, code, cutoff, i, incr, ix, length, optstart, overflow; local
409 cutoff = main_buffer_size;
410 second_cutoff = cutoff + ((overload & 1) ? DHCP_FILE_LEN : 0);
455 cutoff - bufix, code, length,
467 * cutoff. Fill the unusable space with DHO_PAD and
468 * move cutoff for another attempt.
470 memset(&buffer[bufix], DHO_PAD, cutoff - bufix);
471 bufix = cutoff;
472 if (cutoff < second_cutoff)
473 cutoff
[all...]
/openbsd-current/usr.sbin/nsd/
H A Dedns.c208 const uint32_t cutoff = ((uint32_t) 1 << (32 - 1)); local
212 } else if ((a < b && b - a < cutoff) || (a > b && a - b > cutoff)) {
225 const uint32_t cutoff = ((uint32_t) 1 << (32 - 1)); local
229 if(a < b && b - a < cutoff) {
232 if(a > b && a - b > cutoff) {
/openbsd-current/usr.sbin/sa/
H A Dextern.h87 extern int cutoff;
H A Dmain.c62 int cutoff = 1; variable
163 cutoff = strtonum(optarg, 1, INT_MAX, &errstr);
169 "usage: %s [-abcDdfijKklmnqrstu] [-v cutoff]"
/openbsd-current/usr.bin/locate/locate/
H A Dfastfind.c114 u_char *cutoff; local
219 cutoff = path;
224 cutoff = path + count;
229 for (s = foundchar; s >= cutoff; s--) {
/openbsd-current/gnu/gcc/gcc/config/sh/
H A Ddivtab.c63 double cutoff; local
68 cutoff = (cutoff_val * (1<<CUTOFF_BITS) - val) * y2d;
69 defect = cutoff + val * d2;
/openbsd-current/gnu/usr.bin/binutils/bfd/
H A Dbfd.c920 bfd_vma cutoff;
955 cutoff = (~ (bfd_vma) 0) / (bfd_vma) base;
972 if (value > cutoff || (value == cutoff && digit > cutlim))
917 bfd_vma cutoff; local
/openbsd-current/lib/libcrypto/x509/
H A Dx509_ocsp.c252 i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, BIO *bp, argument
257 if (!ASN1_GENERALIZEDTIME_print(bp, cutoff))
/openbsd-current/gnu/usr.bin/binutils-2.17/bfd/
H A Dbfd.c1005 bfd_vma cutoff;
1040 cutoff = (~ (bfd_vma) 0) / (bfd_vma) base;
1057 if (value > cutoff || (value == cutoff && digit > cutlim))
1002 bfd_vma cutoff; local
/openbsd-current/sys/dev/pv/
H A Dxenstore.c880 unsigned long long res, cutoff;
885 cutoff = ULLONG_MAX / (unsigned long long)10;
894 if (res > cutoff || (res == cutoff && ch > cutlim)) {
882 unsigned long long res, cutoff; local

Completed in 177 milliseconds

12