Home
last modified time | relevance | path

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

/TwlSDK-5.5/build/demos/os/heap-1/src/
Dmain.c34 OSHeapHandle handle1; variable
80 handle1 = OS_CreateHeap(OS_ARENA_MAIN, heapArea1, (void *)((u32)heapArea1 + MAIN_HEAP_SIZE1)); in NitroMain()
83 …OS_Printf("heap1 handle=%d area1 = %x-%x\n", handle1, heapArea1, (u32)heapArea1 + MAIN_HEAP_SIZE1); in NitroMain()
87 (void)OS_SetCurrentHeap(OS_ARENA_MAIN, handle1); in NitroMain()
95 area3 = OS_AllocFromHeap(OS_ARENA_MAIN, handle1, ALLOC_SIZE3); in NitroMain()
122 OS_AddToHeap(OS_ARENA_MAIN, handle1, heapArea3, (void *)((u32)heapArea3 + MAIN_HEAP_SIZE3)); in NitroMain()
146 OS_DumpHeap(OS_ARENA_MAIN, handle1); in DisplayHeap()