Lines Matching full:while
24 while (*s != '\0') { in strcpy()
46 while ((n > 0) && (*s != '\0')) { in strncpy()
53 while (n > 0) { in strncpy()
73 while ((*s != tmp) && (*s != '\0')) { in strchr()
95 } while (*s++ != '\0'); in strrchr()
111 while (*s != '\0') { in strlen()
128 while ((*s1 == *s2) && (*s1 != '\0')) { in strcmp()
145 while ((n > 0) && (*s1 == *s2) && (*s1 != '\0')) { in strncmp()
168 while (*start && strchr(sep, *start)) { in strtok_r()
179 while (*end && !strchr(sep, *end)) { in strtok_r()
206 while ((n-- > 0) && (*src != '\0')) { in strncat()
229 while ((--n > 0) && (*c1 == *c2)) { in memcmp()
255 while (n > 0) { in memmove()
261 while (n > 0) { in memmove()
293 while (((uintptr_t)d_byte) & mask) { in memcpy()
306 while (n >= sizeof(mem_word_t)) { in memcpy()
318 while (n > 0) { in memcpy()
341 while (((uintptr_t)d_byte) & (sizeof(mem_word_t) - 1)) { in memset()
360 while (n >= sizeof(mem_word_t)) { in memset()
370 while (n > 0) { in memset()
395 } while (--n != 0); in memchr()