Home
last modified time | relevance | path

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

/SCP-firmware-master/arch/arm/armv8-a/src/
A Darch_mm.c27 static struct arch_mm_ctx { struct
30 } arch_mm_ctx = { argument
38 return (void *)arch_mm_ctx.heap_break; in _sbrk()
40 uintptr_t heap_old = FWK_ALIGN_NEXT(arch_mm_ctx.heap_break, 16); in _sbrk()
43 if (heap_new > arch_mm_ctx.heap_end) { in _sbrk()
46 arch_mm_ctx.heap_break = heap_new; in _sbrk()
/SCP-firmware-master/arch/arm/src/
A Darch_mm.c35 } arch_mm_ctx = { variable
70 return (void *)arch_mm_ctx.heap_break; in _sbrk()
72 uintptr_t heap_old = arch_mm_ctx.heap_break; in _sbrk()
73 uintptr_t heap_new = arch_mm_ctx.heap_break + increment; in _sbrk()
80 arch_mm_ctx.heap_break = heap_new; in _sbrk()

Completed in 6 milliseconds