Lines Matching refs:szB
535 SizeT szB; member
558 SizeT szB; // memory size for the node, be it Sig or Insig member
589 xpt->szB = 0; in new_XPt()
633 return ( sxpt1->szB < sxpt2->szB ? 1 in SXPt_revcmp_szB()
634 : sxpt1->szB > sxpt2->szB ? -1 in SXPt_revcmp_szB()
673 if (xpt->children[i]->szB >= sig_child_threshold_szB) { in dup_XTree()
684 sxpt->szB = xpt->szB; in dup_XTree()
699 if (xpt->children[i]->szB >= sig_child_threshold_szB) { in dup_XTree()
701 sig_children_szB += xpt->children[i]->szB; in dup_XTree()
703 insig_children_szB += xpt->children[i]->szB; in dup_XTree()
715 insig_sxpt->szB = insig_children_szB; in dup_XTree()
983 if (space_delta < 0) tl_assert(xpt->szB >= -space_delta); in update_XCon()
984 xpt->szB += space_delta; in update_XCon()
987 if (space_delta < 0) tl_assert(alloc_xpt->szB >= -space_delta); in update_XCon()
988 alloc_xpt->szB += space_delta; in update_XCon()
1313 tl_assert( alloc_xpt->szB == heap_szB); in take_snapshot()
1314 tl_assert(snapshot->alloc_sxpt->szB == heap_szB); in take_snapshot()
1736 static void* ms_malloc ( ThreadId tid, SizeT szB ) in ms_malloc() argument
1738 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False ); in ms_malloc()
1741 static void* ms___builtin_new ( ThreadId tid, SizeT szB ) in ms___builtin_new() argument
1743 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False ); in ms___builtin_new()
1746 static void* ms___builtin_vec_new ( ThreadId tid, SizeT szB ) in ms___builtin_vec_new() argument
1748 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False ); in ms___builtin_vec_new()
1751 static void* ms_calloc ( ThreadId tid, SizeT m, SizeT szB ) in ms_calloc() argument
1753 return alloc_and_record_block( tid, m*szB, VG_(clo_alignment), /*is_zeroed*/True ); in ms_calloc()
1756 static void *ms_memalign ( ThreadId tid, SizeT alignB, SizeT szB ) in ms_memalign() argument
1758 return alloc_and_record_block( tid, szB, alignB, False ); in ms_memalign()
1974 SizeT szB = argv[2]; in ms_handle_client_request() local
1975 record_block( tid, p, szB, /*slop_szB*/0, /*exclude_first_entry*/False, in ms_handle_client_request()
2152 FP("%sn%d: %lu ", depth_str, sxpt->Sig.n_children, sxpt->szB); in pp_snapshot_SXPt()
2217 depth_str, sxpt->szB, sxpt->Insig.n_xpts, s, clo_threshold); in pp_snapshot_SXPt()