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

  /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/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/lib/libc/citrus/
citrus_prop.c 86 _type_ acc, cutoff; \
94 cutoff = _max_ / base; \
101 if (acc > cutoff || (acc == cutoff && n > cutlim)) \
  /src/usr.sbin/sa/
extern.h 90 extern int cutoff;
main.c 77 int cutoff = 1; variable in typeref:typename:int
174 cutoff = atoi(optarg);
549 "usage: %s [-abcdDfijkKlmnqrstu] [-v cutoff] [file ...]\n",
pdb.c 263 if (vflag && ci.ci_calls <= (unsigned)cutoff &&
  /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/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
omap3-n950-n9.dtsi 315 st,highpass-cutoff-hz = <2>;

Completed in 18 milliseconds