Lines Matching full:if
51 if (*a != *b || *a == '\0') in strncmp()
60 if (tolower(*a) != tolower(*b) || *a == '\0') in strncasecmp()
79 if (*s++ == '\0') in strchr()
88 if (*s == (char)c) in strrchr()
106 if (!l2) in strstr()
111 if (!memcmp(s1, s2, l2)) in strstr()
148 if (ret) in memcmp()
160 if (d <= s) { in memmove()
176 if (*str++ == chr) in memchr()
193 if (*s == '-') { in __strtoll()
198 if (*s == '+') in __strtoll()
202 if (base == 0 || base == 16) { in __strtoll()
203 if (*s == '0') { in __strtoll()
205 if (*s == 'x' || *s == 'X') { in __strtoll()
208 } else if (base == 0) in __strtoll()
210 } else if (base == 0) in __strtoll()
215 if (*s >= '0' && *s < '0' + base && *s <= '9') in __strtoll()
217 else if (*s >= 'a' && *s < 'a' + base - 10) in __strtoll()
219 else if (*s >= 'A' && *s < 'A' + base - 10) in __strtoll()
224 if (!is_longlong) { in __strtoll()
225 if (is_signed) { in __strtoll()
235 if (is_signed) { in __strtoll()
249 if (neg) in __strtoll()
252 if (endptr) in __strtoll()
294 if (memcmp(name, *envp, len) == 0 && !name[len]) in getenv()
309 if (pattern[0] == '*') { in simple_glob()
317 if (n > 0 && pattern[n - 1] == '*') { in simple_glob()
323 if (star_start && star_end) in simple_glob()
326 if (star_end) in simple_glob()
329 if (star_start) { in simple_glob()
333 if (n > text_len) in simple_glob()