Searched refs:cutoff (Results 26 - 42 of 42) sorted by relevance

12

/freebsd-10.0-release/lib/libc/locale/
H A Dwcstoumax.c61 uintmax_t cutoff; local
92 cutoff = UINTMAX_MAX / base;
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd-10.0-release/lib/libc/stdlib/
H A Dstrtoul.c59 unsigned long cutoff; local
93 cutoff = ULONG_MAX / base;
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoull.c60 unsigned long long cutoff; local
94 cutoff = ULLONG_MAX / base;
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoumax.c60 uintmax_t cutoff; local
94 cutoff = UINTMAX_MAX / base;
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/freebsd-10.0-release/lib/libc/iconv/
H A Dcitrus_prop.c82 _type_ acc, cutoff; \
87 cutoff = _max_ / base; \
94 if (acc > cutoff || (acc == cutoff && n > cutlim)) \
/freebsd-10.0-release/contrib/ntp/parseutil/
H A Ddcfd.c528 register unsigned int i, lowmax, highmax, cutoff, span; local
546 * between the maxima. The following code tries to find this cutoff point.
557 cutoff = 0;
582 cutoff += i;
598 * first cutoff estimate (average bit count - must be between both
603 cutoff /= lowmax;
607 cutoff = 4; /* doesn't really matter - it'll fail anyway, but gives error output */
610 dprintf(("parse: cvt_rawdcf: average bit count: %d\n", cutoff));
619 for (i = 0; i <= cutoff; i++)
647 cutoff
[all...]
/freebsd-10.0-release/usr.bin/locate/locate/
H A Dfastfind.c145 u_char *cutoff; local
279 cutoff = path;
284 cutoff = path + count;
289 for (s = foundchar; s >= cutoff; s--) {
/freebsd-10.0-release/usr.sbin/sa/
H A Dextern.h95 extern u_quad_t cutoff;
H A Dmain.c73 u_quad_t cutoff = 1; variable
182 cutoff = atoi(optarg);
306 "usage: sa [-abcdDfijkKlmnqrstu] [-P file] [-U file] [-v cutoff] [file ...]\n");
H A Dpdb.c199 if (vflag && ci.ci_calls <= cutoff &&
/freebsd-10.0-release/crypto/openssl/crypto/x509v3/
H A Dv3_ocsp.c185 static int i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, argument
189 if(!ASN1_GENERALIZEDTIME_print(bp, cutoff)) return 0;
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dbfd.c1060 bfd_vma cutoff;
1095 cutoff = (~ (bfd_vma) 0) / (bfd_vma) base;
1112 if (value > cutoff || (value == cutoff && digit > cutlim))
1057 bfd_vma cutoff; local
/freebsd-10.0-release/sys/net/
H A Dif_clone.c537 int cutoff = INT_MAX / 10; local
552 if (*unit > cutoff ||
553 (*unit == cutoff && *cp - '0' > cutlim))
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_acl.c341 int count, cutoff; local
351 cutoff = 3;
353 cutoff = 0;
355 if (count > cutoff)
/freebsd-10.0-release/sys/dev/sound/isa/
H A Dess.c452 int cutoff; local
454 /* cutoff = 7160000 / (256 - divisor) */
455 /* divisor = 256 - (7160000 / cutoff) */
456 cutoff = (spd * 9 * 82) / 20;
457 return (256 - (7160000 / cutoff));
487 /* filter cutoff */
516 /* filter cutoff */
/freebsd-10.0-release/sys/dev/sound/pci/
H A Dsolo.c418 int cutoff; local
420 /* cutoff = 7160000 / (256 - divisor) */
421 /* divisor = 256 - (7160000 / cutoff) */
422 cutoff = (spd * 9 * 82) / 20;
423 return (256 - (7160000 / cutoff));
455 /* filter cutoff */
490 /* filter cutoff */
/freebsd-10.0-release/contrib/sendmail/src/
H A Dconf.c4081 register unsigned long cutoff; local
4107 ** Compute the cutoff value between legal numbers and illegal
4115 ** cutoff will be set to 214748364 and cutlim to either
4123 cutoff = neg ? -(unsigned long) LONG_MIN : LONG_MAX;
4124 cutlim = cutoff % (unsigned long) base;
4125 cutoff /= (unsigned long) base;
4135 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)

Completed in 195 milliseconds

12