Lines Matching full:any
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 register int neg = 0, any, cutlim; in strtol() local
52 * Skip white space and pick up leading +/- sign if any. in strtol()
91 * Set any if any `digits' consumed; make it negative to indicate in strtol()
97 for (acc = 0, any = 0;; c = *s++) { in strtol()
108 if ((any < 0) || (acc > cutoff) || ((acc == cutoff) && (c > cutlim))) { in strtol()
109 any = -1; in strtol()
111 any = 1; in strtol()
117 if (any < 0) { in strtol()
125 *endptr = (char *)(any ? (s - 1) : nptr); in strtol()