Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/machine/xstormy16/
Dtiny-malloc.c218 free (void *block_p) in free() argument
221 fle block = (fle)((size_t) block_p - offsetof (struct freelist_entry, next)); in free()
223 if (block_p == NULL) in free()
280 realloc (void *block_p, size_t sz) in realloc() argument
282 fle block = (fle)((size_t) block_p - offsetof (struct freelist_entry, next)); in realloc()
286 if (block_p == NULL) in realloc()
301 memcpy (result, block_p, old_size < sz ? old_size : sz); in realloc()
302 free (block_p); in realloc()
313 return block_p; in realloc()
592 malloc_usable_size (void *block_p) in malloc_usable_size() argument
[all …]