Home | History | Annotate | Download | only in utils

Lines Matching full:size

22 /* checked malloc, only returns NULL if size is 0 */
23 void* android_alloc( size_t size );
25 /* checked calloc, only returns NULL if size is 0 */
26 void* android_alloc0( size_t size );
28 /* checked realloc, only returns NULL if size if 0 */
29 void* android_realloc( void* block, size_t size );
41 #define AMEM_ZERO(dst,size) memset((char*)(dst), 0, (size_t)(size))
42 #define AMEM_COPY(dst,src,size) memcpy((char*)(dst),(const char*)(src),(size_t)(size))
43 #define AMEM_MOVE(dst,src,size) memmove((char*)(dst),(const char*)(src),(size_t)(size))