Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/os/core/
Dheap.c67 static inline struct HeapNode* heapPrvGetNext(struct HeapNode* node) in heapPrvGetNext() function
98 next = heapPrvGetNext(node); in heapMergeFreeChunks()
103 next = heapPrvGetNext(node); in heapMergeFreeChunks()
136 node = heapPrvGetNext(node); in heapAlloc()
152 heapPrvGetNext(node)->prev = node; in heapAlloc()
190 while ((t = heapPrvGetNext(node)) && !t->used) { in heapFree()
196 if ((t = heapPrvGetNext(node))) in heapFree()
220 for (node = gHeapHead; node; node = heapPrvGetNext(node)) { in heapFreeAll()
245 for (node = gHeapHead; node; node = heapPrvGetNext(node)) { in heapGetFreeSize()
270 for (node = gHeapHead; node; node = heapPrvGetNext(node)) { in heapGetTaskSize()