/src/common/lib/libc/stdlib/ |
_strtol.h | 61 int i, neg, any, cutlim; local in function:_FUNCNAME 131 * cutoff will be set to 214748364 and cutlim to either 140 cutlim = (int)(cutoff % base); 143 if (cutlim > 0) { 144 cutlim -= base; 147 cutlim = -cutlim; 163 if (acc < cutoff || (acc == cutoff && i > cutlim)) { 178 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
|
_strtoul.h | 61 int i, neg, any, cutlim; local in function:_FUNCNAME 126 cutlim = (int)((__UINT)__UINT_MAX % (__UINT)base); 140 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
|
/src/sys/arch/ia64/stand/common/ |
strtol.c | 63 int neg = 0, any, cutlim; local in function:strtol 101 * cutoff will be set to 214748364 and cutlim to either 110 cutlim = cutoff % (unsigned long)base; 123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
|
/src/lib/libc/locale/ |
_wcstol.h | 60 int neg, any, cutlim; local in function:INT_FUNCNAME 105 cutlim = (int)(cutoff % base); 108 if (cutlim > 0) { 109 cutlim -= base; 112 cutlim = -cutlim; 123 if (acc < cutoff || (acc == cutoff && i > cutlim)) { 133 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
|
_wcstoul.h | 59 int neg, any, cutlim; local in function:INT_FUNCNAME 99 cutlim = (int)(__UINT_MAX % (__UINT)base); 108 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
|