HomeSort by: relevance | last modified time | path
    Searched defs:cutoff (Results 1 - 7 of 7) sorted by relevancy

  /src/common/lib/libc/stdlib/
_strtol.h 59 __INT acc, cutoff; local in function:_FUNCNAME
123 * Compute the cutoff value between legal numbers and illegal
131 * cutoff will be set to 214748364 and cutlim to either
139 cutoff = (__INT)(neg ? __INT_MIN : __INT_MAX);
140 cutlim = (int)(cutoff % base);
141 cutoff /= base;
145 cutoff += 1;
163 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
178 if (acc > cutoff || (acc == cutoff && i > cutlim))
    [all...]
_strtoul.h 59 __UINT acc, cutoff; local in function:_FUNCNAME
125 cutoff = ((__UINT)__UINT_MAX / (__UINT)base);
140 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
  /src/sys/arch/ia64/stand/common/
strtol.c 62 unsigned long cutoff; local in function:strtol
93 * Compute the cutoff value between legal numbers and illegal
101 * cutoff will be set to 214748364 and cutlim to either
109 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
110 cutlim = cutoff % (unsigned long)base;
111 cutoff /= (unsigned long)base;
123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
  /src/lib/libc/locale/
_wcstol.h 57 __INT acc, cutoff; local in function:INT_FUNCNAME
66 (void)&acc; (void)&cutoff;
104 cutoff = neg ? __INT_MIN : __INT_MAX;
105 cutlim = (int)(cutoff % base);
106 cutoff /= base;
110 cutoff += 1;
123 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
133 if (acc > cutoff || (acc == cutoff && i > cutlim))
    [all...]
_wcstoul.h 56 __UINT acc, cutoff; local in function:INT_FUNCNAME
98 cutoff = __UINT_MAX / (__UINT)base;
108 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
  /src/usr.bin/locate/locate/
locate.c 189 char *cutoff, *patend, *q; local in function:fastfind
222 cutoff = (found ? path : path + count);
223 for (found = 0, s = p; s >= cutoff; s--)
  /src/usr.sbin/sa/
main.c 77 int cutoff = 1; variable in typeref:typename:int
174 cutoff = atoi(optarg);
549 "usage: %s [-abcdDfijkKlmnqrstu] [-v cutoff] [file ...]\n",

Completed in 40 milliseconds