Home
last modified time | relevance | path

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

/external/u-boot/common/
Ddlmalloc.c52 static unsigned int gAddressBase = 0; variable
73 assert ( (head == NULL) || (head->base == (void*)gAddressBase)); in gcleanup()
74 if (gAddressBase && (gNextAddress - gAddressBase)) in gcleanup()
76 rval = VirtualFree ((void*)gAddressBase, in gcleanup()
77 gNextAddress - gAddressBase, in gcleanup()
137 if (gAddressBase == 0) in wsbrk()
140 gNextAddress = gAddressBase = in wsbrk()
143 } else if (AlignPage (gNextAddress + size) > (gAddressBase + in wsbrk()
147 void* new_address = (void*)(gAddressBase+gAllocatedSize); in wsbrk()
155 gAddressBase = gNextAddress = in wsbrk()
[all …]
Ddlmalloc.src967 static unsigned int gAddressBase = 0;
988 assert ( (head == NULL) || (head->base == (void*)gAddressBase));
989 if (gAddressBase && (gNextAddress - gAddressBase))
991 rval = VirtualFree ((void*)gAddressBase,
992 gNextAddress - gAddressBase,
1052 if (gAddressBase == 0)
1055 gNextAddress = gAddressBase =
1058 } else if (AlignPage (gNextAddress + size) > (gAddressBase +
1062 void* new_address = (void*)(gAddressBase+gAllocatedSize);
1070 gAddressBase = gNextAddress =
[all …]