Home
last modified time | relevance | path

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

/hal_nxp-latest/mcux/mcux-sdk/utilities/misc_utilities/
Dfsl_sbrk.c28 static char *heap_end; in _sbrk() local
32 if (heap_end == NULL) in _sbrk()
34 heap_end = &end; in _sbrk()
37 prev_heap_end = heap_end; in _sbrk()
39 if ((uintptr_t)heap_end + (uintptr_t)incr > (uintptr_t)(&heap_limit)) in _sbrk()
47 heap_end = (char *)((uintptr_t)heap_end + (uintptr_t)incr); in _sbrk()