Searched refs:cutlim (Results 1 - 16 of 16) sorted by relevance

/openbsd-current/lib/libc/locale/
H A D_wcstol.h55 int neg, any, cutlim; local
93 cutlim = (int)(cutoff % base);
96 if (cutlim > 0) {
97 cutlim -= base;
100 cutlim = -cutlim;
111 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
121 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
H A D_wcstoul.h54 int neg, any, cutlim; local
91 cutlim = (int)(MAX_VALUE % (uint_type)base);
100 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
/openbsd-current/lib/libc/stdlib/
H A Dstrtoimax.c47 int neg, any, cutlim; local
95 * is 10, cutoff will be set to 922337203685477580 and cutlim to
105 cutlim = cutoff % base;
108 if (cutlim > 0) {
109 cutlim -= base;
112 cutlim = -cutlim;
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
136 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtol.c48 int neg, any, cutlim; local
96 * cutoff will be set to 214748364 and cutlim to either
105 cutlim = cutoff % base;
108 if (cutlim > 0) {
109 cutlim -= base;
112 cutlim = -cutlim;
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
136 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoll.c50 int neg, any, cutlim; local
98 * is 10, cutoff will be set to 922337203685477580 and cutlim to
108 cutlim = cutoff % base;
111 if (cutlim > 0) {
112 cutlim -= base;
115 cutlim = -cutlim;
129 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
139 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoul.c48 int neg, any, cutlim; local
82 cutlim = ULONG_MAX % (unsigned long)base;
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoull.c50 int neg, any, cutlim; local
84 cutlim = ULLONG_MAX % (unsigned long long)base;
96 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoumax.c47 int neg, any, cutlim; local
81 cutlim = UINTMAX_MAX % (uintmax_t)base;
93 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
/openbsd-current/sys/lib/libsa/
H A Dstrtol.c47 int neg, any, cutlim; local
84 * cutoff will be set to 214748364 and cutlim to either
93 cutlim = cutoff % base;
96 if (cutlim > 0) {
97 cutlim -= base;
100 cutlim = -cutlim;
116 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
125 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
H A Dstrtoll.c47 int neg, any, cutlim; local
84 * is 10, cutoff will be set to 922337203685477580 and cutlim to
94 cutlim = cutoff % base;
97 if (cutlim > 0) {
98 cutlim -= base;
101 cutlim = -cutlim;
115 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
124 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
/openbsd-current/libexec/ld.so/
H A Dstrtol.c49 int neg, any, cutlim; local
87 * cutoff will be set to 214748364 and cutlim to either
96 cutlim = cutoff % base;
99 if (cutlim > 0) {
100 cutlim -= base;
103 cutlim = -cutlim;
119 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
128 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
/openbsd-current/gnu/lib/libiberty/src/
H A Dstrtol.c94 register int neg = 0, any, cutlim; local
127 * cutoff will be set to 214748364 and cutlim to either
136 cutlim = cutoff % (unsigned long)base;
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoul.c67 register int neg = 0, any, cutlim; local
89 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/openbsd-current/gnu/usr.bin/binutils/bfd/
H A Dbfd.c921 unsigned int cutlim;
956 cutlim = (~ (bfd_vma) 0) % (bfd_vma) base;
972 if (value > cutoff || (value == cutoff && digit > cutlim))
918 unsigned int cutlim; local
/openbsd-current/gnu/usr.bin/binutils-2.17/bfd/
H A Dbfd.c1006 unsigned int cutlim;
1041 cutlim = (~ (bfd_vma) 0) % (bfd_vma) base;
1057 if (value > cutoff || (value == cutoff && digit > cutlim))
1003 unsigned int cutlim; local
/openbsd-current/sys/dev/pv/
H A Dxenstore.c882 int cutlim; local
886 cutlim = ULLONG_MAX % (unsigned long long)10;
894 if (res > cutoff || (res == cutoff && ch > cutlim)) {

Completed in 114 milliseconds