Lines Matching refs:n
23 void bzero(void* s, size_t n) in bzero() argument
25 rt_memset(s, 0, n); in bzero()
29 void bcopy(const void* src, void* dest, size_t n) in bcopy() argument
31 rt_memcpy(dest, src, n); in bcopy()
34 int bcmp(const void* s1, const void* s2, size_t n) in bcmp() argument
36 return rt_memcmp(s1, s2, n); in bcmp()
39 void explicit_bzero(void* s, size_t n) in explicit_bzero() argument
42 while (n) in explicit_bzero()
45 n--; in explicit_bzero()
143 int strncasecmp(const char* s1, const char* s2, size_t n) in strncasecmp() argument
149 for (; n != 0; n--) in strncasecmp()