/optee_os/lib/libutils/isoc/include/ |
A D | malloc.h | 18 void *calloc(size_t nmemb, size_t size); 26 void *mdbg_calloc(const char *fname, int lineno, size_t nmemb, size_t size); 34 #define calloc(nmemb, size) \ argument 35 mdbg_calloc(__FILE__, __LINE__, (nmemb), (size)) 96 void *nex_mdbg_calloc(const char *fname, int lineno, size_t nmemb, size_t size); 104 #define nex_calloc(nmemb, size) \ argument 105 nex_mdbg_calloc(__FILE__, __LINE__, (nmemb), (size)) 114 void *nex_calloc(size_t nmemb, size_t size); 139 #define nex_calloc(nmemb, size) calloc(nmemb, size) argument
|
A D | stdio.h | 42 size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream);
|
/optee_os/out/arm/export-ta_arm64/include/ |
A D | malloc.h | 18 void *calloc(size_t nmemb, size_t size); 26 void *mdbg_calloc(const char *fname, int lineno, size_t nmemb, size_t size); 34 #define calloc(nmemb, size) \ argument 35 mdbg_calloc(__FILE__, __LINE__, (nmemb), (size)) 96 void *nex_mdbg_calloc(const char *fname, int lineno, size_t nmemb, size_t size); 104 #define nex_calloc(nmemb, size) \ argument 105 nex_mdbg_calloc(__FILE__, __LINE__, (nmemb), (size)) 114 void *nex_calloc(size_t nmemb, size_t size); 139 #define nex_calloc(nmemb, size) calloc(nmemb, size) argument
|
A D | mempool.h | 68 void *mempool_calloc(struct mempool *pool, size_t nmemb, size_t size);
|
A D | stdio.h | 42 size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream);
|
/optee_os/out/arm/export-ta_arm32/include/ |
A D | malloc.h | 18 void *calloc(size_t nmemb, size_t size); 26 void *mdbg_calloc(const char *fname, int lineno, size_t nmemb, size_t size); 34 #define calloc(nmemb, size) \ argument 35 mdbg_calloc(__FILE__, __LINE__, (nmemb), (size)) 96 void *nex_mdbg_calloc(const char *fname, int lineno, size_t nmemb, size_t size); 104 #define nex_calloc(nmemb, size) \ argument 105 nex_mdbg_calloc(__FILE__, __LINE__, (nmemb), (size)) 114 void *nex_calloc(size_t nmemb, size_t size); 139 #define nex_calloc(nmemb, size) calloc(nmemb, size) argument
|
A D | mempool.h | 68 void *mempool_calloc(struct mempool *pool, size_t nmemb, size_t size);
|
A D | stdio.h | 42 size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream);
|
/optee_os/lib/libutils/isoc/ |
A D | fwrite.c | 10 size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream) in fwrite() argument 21 return write(fd, ptr, size * nmemb); in fwrite()
|
A D | bget_malloc.c | 561 size_t nmemb, size_t size) in gen_mdbg_calloc() argument 567 mdbg_get_ftr_size(nmemb * size), nmemb, size, in gen_mdbg_calloc() 570 mdbg_update_hdr(hdr, fname, lineno, nmemb * size); in gen_mdbg_calloc() 669 return gen_mdbg_calloc(&malloc_ctx, fname, lineno, nmemb, size); in mdbg_calloc() 701 void *calloc(size_t nmemb, size_t size) in calloc() argument 703 return mdbg_calloc(__FILE__, __LINE__, nmemb, size); in calloc() 732 void *calloc(size_t nmemb, size_t size) in calloc() argument 737 p = raw_calloc(0, 0, nmemb, size, &malloc_ctx); in calloc() 946 void *nex_calloc(size_t nmemb, size_t size) in nex_calloc() argument 951 p = raw_calloc(0, 0, nmemb, size, &nex_malloc_ctx); in nex_calloc() [all …]
|
/optee_os/lib/libutils/ext/ |
A D | mempool.c | 166 void *mempool_calloc(struct mempool *pool, size_t nmemb, size_t size) in mempool_calloc() argument 171 if (MUL_OVERFLOW(nmemb, size, &sz)) in mempool_calloc()
|
/optee_os/lib/libutils/ext/include/ |
A D | mempool.h | 68 void *mempool_calloc(struct mempool *pool, size_t nmemb, size_t size);
|
/optee_os/lib/libmbedtls/mbedtls/library/ |
A D | platform.c | 59 void * mbedtls_calloc( size_t nmemb, size_t size ) in mbedtls_calloc() argument 61 return (*mbedtls_calloc_func)( nmemb, size ); in mbedtls_calloc()
|
/optee_os/core/lib/libtomcrypt/src/headers/ |
A D | tomcrypt_cfg.h | 39 LTC_EXPORT void LTC_CALL XQSORT(void *base, size_t nmemb, size_t size, int(*compar)(const void *, c…
|