Lines Matching refs:szB

620 static void* dh_malloc ( ThreadId tid, SizeT szB )  in dh_malloc()  argument
622 return new_block( tid, NULL, szB, VG_(clo_alignment), /*is_zeroed*/False ); in dh_malloc()
625 static void* dh___builtin_new ( ThreadId tid, SizeT szB ) in dh___builtin_new() argument
627 return new_block( tid, NULL, szB, VG_(clo_alignment), /*is_zeroed*/False ); in dh___builtin_new()
630 static void* dh___builtin_vec_new ( ThreadId tid, SizeT szB ) in dh___builtin_vec_new() argument
632 return new_block( tid, NULL, szB, VG_(clo_alignment), /*is_zeroed*/False ); in dh___builtin_vec_new()
635 static void* dh_calloc ( ThreadId tid, SizeT m, SizeT szB ) in dh_calloc() argument
637 return new_block( tid, NULL, m*szB, VG_(clo_alignment), /*is_zeroed*/True ); in dh_calloc()
640 static void *dh_memalign ( ThreadId tid, SizeT alignB, SizeT szB ) in dh_memalign() argument
642 return new_block( tid, NULL, szB, alignB, False ); in dh_memalign()
684 void inc_histo_for_block ( Block* bk, Addr addr, UWord szB ) in inc_histo_for_block() argument
689 offMax1 = offMin + szB; in inc_histo_for_block()
701 void dh_handle_write ( Addr addr, UWord szB ) in dh_handle_write() argument
705 bk->n_writes += szB; in dh_handle_write()
707 inc_histo_for_block(bk, addr, szB); in dh_handle_write()
712 void dh_handle_read ( Addr addr, UWord szB ) in dh_handle_read() argument
716 bk->n_reads += szB; in dh_handle_read()
718 inc_histo_for_block(bk, addr, szB); in dh_handle_read()
799 void addMemEvent(IRSB* sbOut, Bool isWrite, Int szB, IRExpr* addr, in addMemEvent() argument
822 argv = mkIRExprVec_2( addr, mkIRExpr_HWord(szB) ); in addMemEvent()