/external/v8/tools/turbolizer/ |
constants.js | 25 { perc: 0, col: { r: 255, g: 255, b: 255 } }, 26 { perc: 0.5, col: { r: 255, g: 255, b: 128 } }, 27 { perc: 5, col: { r: 255, g: 128, b: 0 } }, 28 { perc: 15, col: { r: 255, g: 0, b: 0 } }, 29 { perc: 100, col: { r: 0, g: 0, b: 0 } }
|
disassembly-view.js | 234 let perc = count / view.total_event_counts[event] * 100; 238 if (perc === PROF_COLS[i].perc) { 242 else if (perc > PROF_COLS[i].perc && perc < PROF_COLS[i + 1].perc) { 246 let val = perc - PROF_COLS[i].perc; 247 let max = PROF_COLS[i + 1].perc - PROF_COLS[i].perc [all...] |
/external/fio/ |
eta.c | 183 unsigned int perc = 50; local 186 perc = td->o.rwmix[DDIR_WRITE]; 188 bytes_total += (bytes_total * perc) / 100; 194 double perc, perc_t; local 199 perc = (double) bytes_done / (double) bytes_total; 200 if (perc > 1.0) 201 perc = 1.0; 203 perc = 0.0; 208 if (perc_t < perc) 209 perc = perc_t 481 double perc = 0.0; local [all...] |
gclient.c | 318 char *status_message, double perc) 325 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(ge->thread_status_pb), perc / 100.0); 330 double perc) 337 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(ui->thread_status_pb), perc / 100.0); 352 double perc = 0.0; local 361 perc = (double) je->elapsed_sec / (double) (je->elapsed_sec + je->eta_sec); 399 perc *= 100.0; 400 sprintf(output, "%3.1f%% done", perc); 437 gfio_update_thread_status(ge, output, perc); 450 double perc = 0.0 local [all...] |
/external/objenesis/main/src/main/java/org/objenesis/instantiator/perc/ |
PercInstantiator.java | 16 package org.objenesis.instantiator.perc; 27 * Instantiates a class by making a call to internal Perc private methods. It is only supposed to 28 * work on Perc JVMs. This instantiator will not call any constructors. The code was provided by 29 * Aonix Perc support team.
|
PercSerializationInstantiator.java | 16 package org.objenesis.instantiator.perc; 29 * Instantiates a class by making a call to internal Perc private methods. It is only supposed to 30 * work on Perc JVMs. This instantiator will create classes in a way compatible with serialization, 55 // Get the special Perc method to call
|
/external/fio/t/ |
btrace2fio.c | 613 float perc; local 620 perc = ((float) o->ios[i] * 100.0) / (float) total; 621 printf("\tios: %lu (perc=%3.2f%%)\n", o->ios[i], perc); 622 perc = ((float) o->merges[i] * 100.0) / (float) total; 623 printf("\tmerges: %lu (perc=%3.2f%%)\n", o->merges[i], perc); 624 perc = ((float) o->seq[i] * 100.0) / (float) o->ios[i]; 625 printf("\tseq: %lu (perc=%3.2f%%)\n", (unsigned long) o->seq[i], perc); 653 float perc; local [all...] |
dedupe.c | 345 float perc; local 359 perc = (float) nitems / (float) total; 360 perc *= 100.0; 366 printf("%3.2f%% done (%luKB/sec)\r", perc, this_items); 370 printf("%3.2f%% done\r", perc); 482 double perc, ratio; local 492 perc = 1.00 - ((double) nchunks / (double) nextents); 493 perc *= 100.0; 494 printf("Fio setting: dedupe_percentage=%u\n", (int) (perc + 0.50));
|
genzipf.c | 178 double perc, perc_i; local 292 perc = 0.0; 310 perc += perc_i; 312 i ? "|->" : "Top", perc, os->output, os->nranges,
|
/external/fio/profiles/ |
act.c | 355 double perc = 0.0; local 358 perc = 100.0 * (double) slice->lat_buckets[i] / (double) slice->total_ios; 359 if ((perc * 10.0) >= act_pass[i].max_perm) 361 log_info("\t%2.2f", perc); 364 double perc = 0.0; local 367 perc = 100.0 * (double) slice->lat_buckets[i] / (double) slice->total_ios; 368 log_info("\t%2.2f", perc);
|
/external/iproute2/tipc/ |
link.c | 204 static uint32_t perc(uint32_t count, uint32_t total) function 250 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P0]), proft), 251 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P1]), proft), 252 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P2]), proft), 253 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P3]), proft), 254 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P4]), proft), 255 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P5]), proft), 256 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P6]), proft));
|
/external/objenesis/main/src/main/java/org/objenesis/strategy/ |
SerializingInstantiatorStrategy.java | 24 import org.objenesis.instantiator.perc.PercSerializationInstantiator; 79 else if(JVM_NAME.startsWith(PERC)) {
|
StdInstantiatorStrategy.java | 25 import org.objenesis.instantiator.perc.PercInstantiator; 92 else if(PlatformDescription.isThisJVM(PERC)) {
|