Lines Matching refs:szB
1200 SSizeT szB = nBits / 8; in mc_LOADV_128_or_256_slow() local
1201 SSizeT szL = szB / 8; /* Size in Longs (64-bit units) */ in mc_LOADV_128_or_256_slow()
1210 tl_assert((szB & (szB-1)) == 0 && szL > 0); in mc_LOADV_128_or_256_slow()
1255 MC_(record_address_error)( VG_(get_running_tid)(), a, szB, False ); in mc_LOADV_128_or_256_slow()
1288 if (0 == (a & (szB - 1)) && n_addrs_bad < szB) { in mc_LOADV_128_or_256_slow()
1304 MC_(record_address_error)( VG_(get_running_tid)(), a, szB, False ); in mc_LOADV_128_or_256_slow()
1348 SSizeT szB = nBits / 8; in mc_LOADVn_slow() local
1365 for (i = szB-1; i >= 0; i--) { in mc_LOADVn_slow()
1367 ai = a + byte_offset_w(szB, bigendian, i); in mc_LOADVn_slow()
1384 MC_(record_address_error)( VG_(get_running_tid)(), a, szB, False ); in mc_LOADVn_slow()
1415 if (szB == VG_WORDSIZE && VG_IS_WORD_ALIGNED(a) in mc_LOADVn_slow()
1448 MC_(record_address_error)( VG_(get_running_tid)(), a, szB, False ); in mc_LOADVn_slow()
1458 SizeT szB = nBits / 8; in mc_STOREVn_slow() local
1525 for (i = 0; i < szB; i++) { in mc_STOREVn_slow()
1527 ai = a + byte_offset_w(szB, bigendian, i); in mc_STOREVn_slow()
1536 MC_(record_address_error)( VG_(get_running_tid)(), a, szB, True ); in mc_STOREVn_slow()
2394 static void* ocacheL2_malloc ( const HChar* cc, SizeT szB ) { in ocacheL2_malloc() argument
2395 return VG_(malloc)(cc, szB); in ocacheL2_malloc()
4936 SizeT szB, in mc_get_or_set_vbits_for_client() argument
4948 for (i = 0; i < szB; i++) { in mc_get_or_set_vbits_for_client()
4958 for (i = 0; i < szB; i++) { in mc_get_or_set_vbits_for_client()
4964 for (i = 0; i < szB; i++) { in mc_get_or_set_vbits_for_client()
4971 MC_(make_mem_defined)(vbits, szB); in mc_get_or_set_vbits_for_client()
5550 SizeT szB = 1; in handle_gdb_monitor_command() local
5551 if (VG_(strtok_get_address_and_size) (&address, &szB, &ssaveptr)) { in handle_gdb_monitor_command()
5555 for (i = 0; i < szB; i++) { in handle_gdb_monitor_command()
5578 (void *)address, szB, unaddressable); in handle_gdb_monitor_command()
5687 SizeT szB = 1; in handle_gdb_monitor_command() local
5691 if (!VG_(strtok_get_address_and_size) (&address, &szB, &ssaveptr)) in handle_gdb_monitor_command()
5696 case 0: MC_(make_mem_noaccess) (address, szB); break; in handle_gdb_monitor_command()
5697 case 1: make_mem_undefined_w_tid_and_okind ( address, szB, tid, in handle_gdb_monitor_command()
5699 case 2: MC_(make_mem_defined) ( address, szB ); break; in handle_gdb_monitor_command()
5700 case 3: make_mem_defined_if_addressable ( address, szB ); break;; in handle_gdb_monitor_command()
5708 SizeT szB = 1; in handle_gdb_monitor_command() local
5720 if (!VG_(strtok_get_address_and_size) (&address, &szB, &ssaveptr)) in handle_gdb_monitor_command()
5726 if (is_mem_addressable ( address, szB, &bad_addr )) in handle_gdb_monitor_command()
5728 (void *)address, szB); in handle_gdb_monitor_command()
5732 (void *)address, szB, (void *) bad_addr); in handle_gdb_monitor_command()
5736 res = is_mem_defined ( address, szB, &bad_addr, &otag ); in handle_gdb_monitor_command()
5740 (void *)address, szB, (void *) bad_addr); in handle_gdb_monitor_command()
5757 (void *)address, szB, (void *) bad_addr, src); in handle_gdb_monitor_command()
5766 (void *)address, szB); in handle_gdb_monitor_command()
5793 SizeT szB = 1; in handle_gdb_monitor_command() local
5795 if (!VG_(strtok_get_address_and_size) (&address, &szB, &ssaveptr)) in handle_gdb_monitor_command()
5801 MC_(who_points_at) (address, szB); in handle_gdb_monitor_command()