Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/src/
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()
227 } while ((node = heapPrvGetNext(node)) != NULL); in heapFreeAll()