Lines Matching refs:szB

3985       SizeT       szB;     /* size requested         */  member
4013 SizeT szB, SizeT alignB, Bool is_zeroed ) in handle_alloc() argument
4018 tl_assert( ((SSizeT)szB) >= 0 ); in handle_alloc()
4019 p = (Addr)VG_(cli_malloc)(alignB, szB); in handle_alloc()
4024 VG_(memset)((void*)p, 0, szB); in handle_alloc()
4031 md->szB = szB; in handle_alloc()
4038 evh__new_mem_heap( p, szB, is_zeroed ); in handle_alloc()
4081 SizeT szB; in handle_free() local
4089 szB = md->szB; in handle_free()
4102 evh__die_mem_heap( (Addr)p, szB ); in handle_free()
4131 if (md->szB == new_size) { in hg_cli__realloc()
4137 if (md->szB > new_size) { in hg_cli__realloc()
4139 md->szB = new_size; in hg_cli__realloc()
4141 evh__die_mem_heap( md->payload + new_size, md->szB - new_size ); in hg_cli__realloc()
4152 evh__copy_mem( payload, p_new, md->szB ); in hg_cli__realloc()
4153 evh__new_mem_heap ( p_new + md->szB, new_size - md->szB, in hg_cli__realloc()
4158 evh__die_mem_heap( payload, md->szB ); in hg_cli__realloc()
4161 for (i = 0; i < md->szB; i++) in hg_cli__realloc()
4181 md_new->szB = new_size; in hg_cli__realloc()
4198 return ( md ? md->szB : 0 ); in hg_cli_malloc_usable_size()
4211 if (UNLIKELY(mm->szB == 0 && a == mm->payload)) in addr_is_in_MM_Chunk()
4215 if (LIKELY(a >= mm->payload + mm->szB)) return False; in addr_is_in_MM_Chunk()
4222 /*OUT*/SizeT* szB, in HG_()
4259 if (szB) *szB = mm->szB; in HG_()
4297 Int szB, in instrument_mem_access() argument
4324 switch (szB) { in instrument_mem_access()
4346 tl_assert(szB > 8 && szB <= 512); /* stay sane */ in instrument_mem_access()
4350 argv = mkIRExprVec_2( addr, mkIRExpr_HWord( szB )); in instrument_mem_access()
4354 switch (szB) { in instrument_mem_access()
4376 tl_assert(szB > 8 && szB <= 512); /* stay sane */ in instrument_mem_access()
4380 argv = mkIRExprVec_2( addr, mkIRExpr_HWord( szB )); in instrument_mem_access()
4864 SizeT szB = 1; in handle_gdb_monitor_command() local
4865 if (VG_(strtok_get_address_and_size) (&address, &szB, &ssaveptr)) { in handle_gdb_monitor_command()
4866 if (szB >= 1) in handle_gdb_monitor_command()
4867 libhb_event_map_access_history (address, szB, HG_(print_access)); in handle_gdb_monitor_command()