Home | History | Annotate | Download | only in massif

Lines Matching defs:szB

547    SizeT szB;
570 SizeT szB; // memory size for the node, be it Sig or Insig
623 xpt->szB = 0;
667 return ( sxpt1->szB < sxpt2->szB ? 1
668 : sxpt1->szB > sxpt2->szB ? -1
707 if (xpt->children[i]->szB >= sig_child_threshold_szB) {
718 sxpt->szB = xpt->szB;
730 // insig_children_szB doesn't necessarily equal xpt->szB.)
733 if (xpt->children[i]->szB >= sig_child_threshold_szB) {
735 sig_children_szB += xpt->children[i]->szB;
737 insig_children_szB += xpt->children[i]->szB;
749 insig_sxpt->szB = insig_children_szB;
812 // Check the sum of any children szBs equals the SXPt's szB. Check the
1012 // Update 'szB' of every XPt in the XCon, by percolating upwards.
1022 if (space_delta < 0) tl_assert(xpt->szB >= -space_delta);
1023 xpt->szB += space_delta;
1026 if (space_delta < 0) tl_assert(alloc_xpt->szB >= -space_delta);
1027 alloc_xpt->szB += space_delta;
1352 tl_assert( alloc_xpt->szB == heap_szB);
1353 tl_assert(snapshot->alloc_sxpt->szB == heap_szB);
1775 static void* ms_malloc ( ThreadId tid, SizeT szB )
1777 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False );
1780 static void* ms___builtin_new ( ThreadId tid, SizeT szB )
1782 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False );
1785 static void* ms___builtin_vec_new ( ThreadId tid, SizeT szB )
1787 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False );
1790 static void* ms_calloc ( ThreadId tid, SizeT m, SizeT szB )
1792 return alloc_and_record_block( tid, m*szB, VG_(clo_alignment), /*is_zeroed*/True );
1795 static void *ms_memalign ( ThreadId tid, SizeT alignB, SizeT szB )
1797 return alloc_and_record_block( tid, szB, alignB, False );
2010 SizeT szB = argv[2];
2011 record_block( tid, p, szB, /*slop_szB*/0, /*exclude_first_entry*/False,
2204 FP("%sn%d: %lu ", depth_str, sxpt->Sig.n_children, sxpt->szB);
2246 // Sort SXPt's children by szB (reverse order: biggest to smallest).
2281 depth_str, sxpt->szB, sxpt->Insig.n_xpts, s,