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 strtoll() local
52 * Skip white space and pick up leading +/- sign if any. in strtoll()
90 * Set any if any `digits' consumed; make it negative to indicate in strtoll()
96 for (acc = 0, any = 0;; c = *s++) { in strtoll()
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll()
108 any = -1; in strtoll()
110 any = 1; in strtoll()
116 if (any < 0) { in strtoll()
124 *endptr = (char *)(any ? (char *)s - 1 : nptr); in strtoll()