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 strtoul() local
77 for (acc = 0, any = 0;; c = *s++) { in strtoul()
88 if ((any < 0) || (acc > cutoff) || ((acc == cutoff) && (c > cutlim))) { in strtoul()
89 any = -1; in strtoul()
91 any = 1; in strtoul()
96 if (any < 0) { in strtoul()
103 *endptr = (char *)(any ? (s - 1) : nptr); in strtoul()