Lines Matching refs:parent
283 to initialize child lock while holding parent lock. The implementation
2345 | Pointer to parent |
2359 parent pointer.) If a chunk with the same size an an existing node
2401 struct malloc_tree_chunk* parent;
3335 if (u->parent == 0) {
3340 assert(head == 0); /* only one node on chain has parent */
3342 assert(u->parent != u);
3343 assert (u->parent->child[0] == u ||
3344 u->parent->child[1] == u ||
3345 *((tbinptr*)(u->parent)) == u);
3347 assert(u->child[0]->parent == u);
3352 assert(u->child[1]->parent == u);
3674 X->parent = (tchunkptr)H;\
3688 X->parent = T;\
3703 X->parent = 0;\
3728 3. If x is the base of a chain (i.e., has parent links) relink
3729 x's parent and children to x's replacement (or null if none).
3733 tchunkptr XP = X->parent;\
3779 R->parent = XP;\
3783 C0->parent = R;\
3791 C1->parent = R;\