Home
last modified time | relevance | path

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

/picolibc-3.7.0-3.6.0/newlib/libc/machine/spu/
Dmalloc_ea.c42 unsigned long long sz; in malloc_ea() local
44 sz = (unsigned long long) size; in malloc_ea()
45 __send_to_ppe (JSRE_LIBEA_SIGNALCODE, SPE_LIBEA_MALLOC, &sz); in malloc_ea()
46 return ull_to_eavoid (sz); in malloc_ea()
/picolibc-3.7.0-3.6.0/newlib/libc/machine/xstormy16/
Dtiny-malloc.c121 #define REAL_SIZE(sz) \ argument
122 ((sz) < sizeof (struct freelist_entry) - sizeof (size_t) \
124 : sz + sizeof (size_t) + M_ALIGN(sz, sizeof (size_t)))
132 malloc (size_t sz) in malloc() argument
139 size_t real_size = REAL_SIZE (sz); in malloc()
278 realloc (void *block_p, size_t sz) in realloc() argument
281 size_t real_size = REAL_SIZE (sz); in realloc()
285 return malloc (sz); in realloc()
296 result = malloc (sz); in realloc()
299 memcpy (result, block_p, old_size < sz ? old_size : sz); in realloc()
[all …]
Dmallocr.c5 _malloc_r (struct _reent *r, size_t sz) in _malloc_r() argument
7 return malloc (sz); in _malloc_r()
Dreallocr.c4 _realloc_r (struct _reent *r, void *x, size_t sz) in _realloc_r() argument
6 return realloc (x, sz); in _realloc_r()
/picolibc-3.7.0-3.6.0/newlib/libc/stdlib/
Dmallocr.c1604 #define bin_index(sz) \ argument
1605 (((((unsigned long)(sz)) >> 9) == 0) ? (((unsigned long)(sz)) >> 3): \
1606 ((((unsigned long)(sz)) >> 9) <= 4) ? 56 + (((unsigned long)(sz)) >> 6): \
1607 ((((unsigned long)(sz)) >> 9) <= 20) ? 91 + (((unsigned long)(sz)) >> 9): \
1608 ((((unsigned long)(sz)) >> 9) <= 84) ? 110 + (((unsigned long)(sz)) >> 12): \
1609 ((((unsigned long)(sz)) >> 9) <= 340) ? 119 + (((unsigned long)(sz)) >> 15): \
1610 ((((unsigned long)(sz)) >> 9) <= 1364) ? 124 + (((unsigned long)(sz)) >> 18): \
1622 #define smallbin_index(sz) (((unsigned long)(sz)) >> SMALLBIN_WIDTH_BITS) argument
1754 INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE; local
1762 assert((char*)p + sz <= (char*)top);
[all …]
/picolibc-3.7.0-3.6.0/newlib/libc/machine/mips/machine/
Dasm.h313 #define EXPORTS(name,sz) \ argument
316 .size name,sz; \
322 #define WEXPORT(name,sz) \ argument
325 .size name,sz; \