Home | History | Annotate | Download | only in massif

Lines Matching refs:Sig

570    SizeT szB;              // memory size for the node, be it Sig or Insig
579 Sig;
685 // 0 sig, 0 insig alloc 0 children
686 // N sig, 0 insig alloc N children, dup all
687 // N sig, M insig alloc N+1, dup first N, aggregate remaining M
688 // 0 sig, M insig alloc 1, aggregate M
719 sxpt->Sig.ip = xpt->ip;
720 sxpt->Sig.n_children = n_child_sxpts;
726 sxpt->Sig.children = VG_(malloc)("ms.main.dX.2",
734 sxpt->Sig.children[j++] = dup_XTree(xpt->children[i], total_szB);
751 sxpt->Sig.children[n_sig_children] = insig_sxpt;
754 sxpt->Sig.children = NULL;
768 for (i = 0; i < sxpt->Sig.n_children; i++) {
769 free_SXTree(sxpt->Sig.children[i]);
770 sxpt->Sig.children[i] = NULL;
772 VG_(free)(sxpt->Sig.children); sxpt->Sig.children = NULL;
816 if (sxpt->Sig.n_children > 0) {
817 for (i = 0; i < sxpt->Sig.n_children; i++) {
818 sanity_check_SXTree(sxpt->Sig.children[i]);
1963 new_mem_stack_2(len, "sig-new");
1968 die_mem_stack_2(len, "sig-die");
2180 Vg_FnNameKind kind = VG_(get_fnname_kind_from_IP)(sxpt->Sig.ip);
2182 sxpt->Sig.n_children = 0;
2187 ip_desc = VG_(describe_IP)(sxpt->Sig.ip-1, ip_desc, BUF_LEN);
2191 FP("%sn%d: %lu ", depth_str, sxpt->Sig.n_children, sxpt->szB);
2239 VG_(ssort)(sxpt->Sig.children, sxpt->Sig.n_children, sizeof(SXPt*),
2244 for (i = 0; i < sxpt->Sig.n_children; i++) {
2245 child = sxpt->Sig.children[i];