Searched refs:nmemb (Results 1 – 7 of 7) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/search/ |
A D | _lsearch.c | 18 void *lfind(const void *key, const void *base, size_t *nmemb, in lfind() argument 21 register int n = *nmemb; in lfind() 37 void *lsearch(const void *key, void *base, size_t *nmemb, in libc_hidden_def() 42 if ((p = lfind(key, base, nmemb, size, compar)) == NULL) { in libc_hidden_def() 43 p = memcpy((base + (size * (*nmemb))), key, size); in libc_hidden_def() 44 ++(*nmemb); in libc_hidden_def()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdio/ |
A D | fwrite.c | 14 size_t nmemb, register FILE * __restrict stream) in fwrite_unlocked() argument 23 && size && nmemb in fwrite_unlocked() 26 if (nmemb <= (SIZE_MAX / size)) { in fwrite_unlocked() 28 size*nmemb, stream) / size; in fwrite_unlocked() 47 size_t nmemb, register FILE * __restrict stream) 54 retval = fwrite_unlocked(ptr, size, nmemb, stream);
|
A D | fread.c | 14 size_t fread_unlocked(void * __restrict ptr, size_t size, size_t nmemb, in fread_unlocked() argument 25 && size && nmemb in fread_unlocked() 28 if (nmemb <= (SIZE_MAX / size)) { in fread_unlocked() 32 todo = bytes = size * nmemb; in fread_unlocked() 96 size_t fread(void * __restrict ptr, size_t size, size_t nmemb, 104 retval = fread_unlocked(ptr, size, nmemb, stream);
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdlib/malloc/ |
A D | calloc.c | 26 void * calloc(size_t nmemb, size_t lsize) in calloc() argument 29 size_t size=lsize * nmemb; in calloc() 33 if (nmemb && lsize != (size / nmemb)) { in calloc()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdlib/malloc-simple/ |
A D | alloc.c | 63 void * calloc(size_t nmemb, size_t lsize) in calloc() argument 66 size_t size=lsize * nmemb; in calloc() 70 if (nmemb && lsize != (size / nmemb)) { in calloc()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/ |
A D | util.c | 154 void *xcalloc(size_t nmemb, size_t size) in xcalloc() argument 156 void *p = calloc(nmemb, size); in xcalloc()
|
A D | lkc.h | 127 void *xcalloc(size_t nmemb, size_t size);
|
Completed in 7 milliseconds