Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dfree_tree.d87 auto newRoot = which.kid[toggler], orphan = which.kid[!toggler]; in FreeTree() local
88 which = newRoot; in FreeTree()
89 for (Node* n = void; (n = newRoot.kid[!toggler]) !is null; ) in FreeTree()
91 newRoot = n; in FreeTree()
93 newRoot.kid[!toggler] = orphan; in FreeTree()
H A Dkernighan_ritchie.d401 auto newRoot = cast(Node*) (result + actualBytes); in allocate() local
402 newRoot.next = root.next; in allocate()
403 newRoot.size = balance; in allocate()
404 root = newRoot; in allocate()
H A Dfree_list.d1011 auto newRoot = cast(shared Node*) b.ptr; in deallocate() local
1013 newRoot.next = _root; in deallocate()
1014 _root = newRoot; in deallocate()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dfree_tree.d90 auto newRoot = which.kid[toggler], orphan = which.kid[!toggler]; in FreeTree() local
91 which = newRoot; in FreeTree()
92 for (Node* n = void; (n = newRoot.kid[!toggler]) !is null; ) in FreeTree()
94 newRoot = n; in FreeTree()
96 newRoot.kid[!toggler] = orphan; in FreeTree()
H A Dkernighan_ritchie.d416 auto newRoot = cast(Node*) (result + actualBytes); in allocate() local
417 newRoot.next = root.next; in allocate()
418 newRoot.size = balance; in allocate()
419 root = newRoot; in allocate()
H A Dfree_list.d1093 auto newRoot = cast(shared Node*) b.ptr; in deallocate() local
1095 newRoot.next = _root; in deallocate()
1096 _root = newRoot; in deallocate()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/
H A Dslist.d350 Node * n, newRoot; in SList() local
354 (newRoot ? n._next : newRoot) = newNode; in SList()
361 _first = newRoot; in SList()
370 auto newRoot = new Node(_first, stuff); in SList() local
371 _first = newRoot; in SList()