Home | History | Annotate | Download | only in massif

Lines Matching refs:szB

541    SizeT szB;
564 SizeT szB; // memory size for the node, be it Sig or Insig
595 xpt->szB = 0;
639 return ( sxpt1->szB < sxpt2->szB ? 1
640 : sxpt1->szB > sxpt2->szB ? -1
679 if (xpt->children[i]->szB >= sig_child_threshold_szB) {
690 sxpt->szB = xpt->szB;
702 // insig_children_szB doesn't necessarily equal xpt->szB.)
705 if (xpt->children[i]->szB >= sig_child_threshold_szB) {
707 sig_children_szB += xpt->children[i]->szB;
709 insig_children_szB += xpt->children[i]->szB;
721 insig_sxpt->szB = insig_children_szB;
784 // Check the sum of any children szBs equals the SXPt's szB. Check the
984 // Update 'szB' of every XPt in the XCon, by percolating upwards.
994 if (space_delta < 0) tl_assert(xpt->szB >= -space_delta);
995 xpt->szB += space_delta;
998 if (space_delta < 0) tl_assert(alloc_xpt->szB >= -space_delta);
999 alloc_xpt->szB += space_delta;
1324 tl_assert( alloc_xpt->szB == heap_szB);
1325 tl_assert(snapshot->alloc_sxpt->szB == heap_szB);
1747 static void* ms_malloc ( ThreadId tid, SizeT szB )
1749 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False );
1752 static void* ms___builtin_new ( ThreadId tid, SizeT szB )
1754 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False );
1757 static void* ms___builtin_vec_new ( ThreadId tid, SizeT szB )
1759 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False );
1762 static void* ms_calloc ( ThreadId tid, SizeT m, SizeT szB )
1764 return alloc_and_record_block( tid, m*szB, VG_(clo_alignment), /*is_zeroed*/True );
1767 static void *ms_memalign ( ThreadId tid, SizeT alignB, SizeT szB )
1769 return alloc_and_record_block( tid, szB, alignB, False );
1982 SizeT szB = argv[2];
1983 record_block( tid, p, szB, /*slop_szB*/0, /*exclude_first_entry*/False,
2181 FP("%sn%d: %lu ", depth_str, sxpt->Sig.n_children, sxpt->szB);
2223 // Sort SXPt's children by szB (reverse order: biggest to smallest).
2258 depth_str, sxpt->szB, sxpt->Insig.n_xpts, s,