Lines Matching full:ulong
53 static ULong g_guest_instrs_executed = 0;
56 static ULong g_tot_blocks = 0; // total blocks allocated
57 static ULong g_tot_bytes = 0; // total bytes allocated
59 static ULong g_cur_blocks_live = 0; // curr # blocks live
60 static ULong g_cur_bytes_live = 0; // curr # bytes live
62 static ULong g_max_blocks_live = 0; // bytes and blocks at
63 static ULong g_max_bytes_live = 0; // the max residency point
76 ULong allocd_at; /* instruction number */
77 ULong n_reads;
78 ULong n_writes;
178 ULong cur_blocks_live;
179 ULong cur_bytes_live;
185 ULong max_blocks_live;
186 ULong max_bytes_live;
188 ULong tot_blocks;
189 ULong tot_bytes;
192 ULong death_ages_sum;
193 ULong deaths;
196 ULong n_reads;
197 ULong n_writes;
309 bk->ap, api->cur_bytes_live, (ULong)bk->req_szB);
1031 static Bool identify_metric ( /*OUT*/ULong(**get_metricP)(APInfo*),
1043 ULong (*dummyFn)(APInfo*);
1085 static void show_N_div_100( /*OUT*/HChar* buf, ULong n )
1087 ULong nK = n / 100;
1088 ULong nR = n % 100;
1099 show_N_div_100( bufA, ((ULong)api->tot_bytes * 100ULL)
1100 / (ULong)api->tot_blocks );
1115 ULong aad = api->deaths == 0
1120 ULong aad_frac_10k
1169 static ULong get_metric__max_bytes_live ( APInfo* api ) {
1172 static ULong get_metric__tot_bytes ( APInfo* api ) {
1175 static ULong get_metric__max_blocks_live ( APInfo* api ) {
1184 static Bool identify_metric ( /*OUT*/ULong(**get_metricP)(APInfo*),
1211 ULong (*get_metric)(APInfo*);
1238 ULong best_metric = increasing ? ~0ULL : 0ULL;
1246 ULong metric = get_metric(api);