Home
last modified time | relevance | path

Searched refs:Void_t (Results 1 – 3 of 3) sorted by relevance

/external/u-boot/include/
Dmalloc.h236 #ifndef Void_t
238 #define Void_t void macro
240 #define Void_t char macro
371 Void_t* memset();
372 Void_t* memcpy();
814 Void_t * __default_morecore_init (ptrdiff_t);
815 Void_t *(*__morecore)(ptrdiff_t) = __default_morecore_init;
819 Void_t * __default_morecore_init ();
820 Void_t *(*__morecore)() = __default_morecore_init;
831 extern Void_t* sbrk(ptrdiff_t);
[all …]
/external/u-boot/common/
Ddlmalloc.c362 #define chunk2mem(p) ((Void_t*)((char*)(p) + 2*SIZE_SZ))
1237 Void_t* mALLOc(size_t bytes) in mALLOc()
1239 Void_t* mALLOc(bytes) size_t bytes; in mALLOc()
1509 void fREe(Void_t* mem) in fREe()
1511 void fREe(mem) Void_t* mem; in fREe()
1647 Void_t* rEALLOc(Void_t* oldmem, size_t bytes) in rEALLOc()
1649 Void_t* rEALLOc(oldmem, bytes) Void_t* oldmem; size_t bytes; in rEALLOc()
1659 Void_t* newmem; /* corresponding user mem */
1877 Void_t* mEMALIGn(size_t alignment, size_t bytes) in mEMALIGn()
1879 Void_t* mEMALIGn(alignment, bytes) size_t alignment; size_t bytes; in mEMALIGn()
[all …]
Ddlmalloc.src30 free(Void_t* p);
32 realloc(Void_t* p, size_t n);
53 cfree(Void_t* p);
58 malloc_usable_size(Void_t* p);
237 #ifndef Void_t
239 #define Void_t void
241 #define Void_t char
243 #endif /*Void_t*/
377 Void_t* memset();
378 Void_t* memcpy();
[all …]