Lines Matching refs:XPt
544 typedef struct _XPt XPt; typedef
553 XPt* parent; // pointer to parent XPt
561 XPt** children; // pointers to children XPts
596 static XPt* alloc_xpt;
620 static XPt* new_XPt(Addr ip, XPt* parent) in new_XPt()
625 XPt* xpt = perm_malloc(sizeof(XPt)); in new_XPt()
643 static void add_child_xpt(XPt* parent, XPt* child) in add_child_xpt()
651 parent->max_children * sizeof(XPt*) ); in add_child_xpt()
657 parent->max_children * sizeof(XPt*) ); in add_child_xpt()
681 static SXPt* dup_XTree(XPt* xpt, SizeT total_szB) in dup_XTree()
792 static void sanity_check_XTree(XPt* xpt, XPt* parent) in sanity_check_XTree()
935 static XPt* get_XCon( ThreadId tid, Bool exclude_first_entry ) in get_XCon()
939 XPt* xpt = alloc_xpt; in get_XCon()
962 XPt* new_child_xpt = new_XPt(ip, xpt); in get_XCon()
1017 static void update_XCon(XPt* xpt, SSizeT space_delta) in update_XCon()
1516 XPt* where; // Where allocated; bottom-XPt
1670 XPt *old_where, *new_where; in realloc_block()