Lines Matching full:size_t
99 int os_get_random(unsigned char *buf, size_t len)
102 size_t rc;
126 size_t len = 128, cwd_len, rel_len, ret_len;
190 char * os_readfile(const char *name, size_t *len)
216 void * os_zalloc(size_t size)
225 void * os_malloc(size_t size)
231 void * os_realloc(void *ptr, size_t size)
243 void * os_memcpy(void *dest, const void *src, size_t n)
253 void * os_memmove(void *dest, const void *src, size_t n)
268 void * os_memset(void *s, int c, size_t n)
277 int os_memcmp(const void *s1, const void *s2, size_t n)
299 size_t len;
310 size_t os_strlen(const char *s)
329 int os_strncasecmp(const char *s1, const char *s2, size_t n)
378 int os_strncmp(const char *s1, const char *s2, size_t n)
397 char * os_strncpy(char *dest, const char *src, size_t n)
415 size_t len = os_strlen(needle);
426 int os_snprintf(char *str, size_t size, const char *format, ...)