HomeSort by relevance Sort by last modified time
    Searched refs:perc (Results 1 - 25 of 47) sorted by null

1 2

  /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 192 unsigned int perc = 50; local
195 perc = td->o.rwmix[DDIR_WRITE];
197 bytes_total += (bytes_total * perc) / 100;
203 double perc, perc_t; local
208 perc = (double) bytes_done / (double) bytes_total;
209 if (perc > 1.0)
210 perc = 1.0;
212 perc = 0.0;
217 if (perc_t < perc)
218 perc = perc_t
520 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 (%luKiB/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 200 double perc, perc_i; local
249 perc = 0.0;
267 perc += perc_i;
271 i ? "|->" : "Top", perc, os->output, hit_percent_sum,
  /external/fio/profiles/
act.c 356 double perc = 0.0; local
359 perc = 100.0 * (double) slice->lat_buckets[i] / (double) slice->total_ios;
360 if ((perc * 10.0) >= act_pass[i].max_perm)
362 log_info("\t%2.2f", perc);
365 double perc = 0.0; local
368 perc = 100.0 * (double) slice->lat_buckets[i] / (double) slice->total_ios;
369 log_info("\t%2.2f", perc);
  /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)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
locale.py 231 for perc in percents:
232 if perc.group()[-1]=='%':
235 new_val.append(format(perc.group(), val, grouping))
241 for perc in percents:
242 if perc.group()[-1]=='%':
245 starcount = perc.group('modifiers').count('*')
246 new_val.append(_format(perc.group(),
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
locale.py 225 for perc in percents:
226 if perc.group()[-1]=='%':
229 new_val.append(format(perc.group(), val, grouping))
235 for perc in percents:
236 if perc.group()[-1]=='%':
239 starcount = perc.group('modifiers').count('*')
240 new_val.append(_format(perc.group(),
    [all...]
  /external/python/cpython2/Lib/
locale.py 233 for perc in percents:
234 if perc.group()[-1]=='%':
237 new_val.append(format(perc.group(), val, grouping))
243 for perc in percents:
244 if perc.group()[-1]=='%':
247 starcount = perc.group('modifiers').count('*')
248 new_val.append(_format(perc.group(),
    [all...]
  /external/python/cpython3/Lib/
locale.py 229 for perc in percents:
230 if perc.group()[-1]=='%':
233 new_val.append(format(perc.group(), val, grouping))
239 for perc in percents:
240 if perc.group()[-1]=='%':
243 starcount = perc.group('modifiers').count('*')
244 new_val.append(_format(perc.group(),
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
locale.py 231 for perc in percents:
232 if perc.group()[-1]=='%':
235 new_val.append(format(perc.group(), val, grouping))
241 for perc in percents:
242 if perc.group()[-1]=='%':
245 starcount = perc.group('modifiers').count('*')
246 new_val.append(_format(perc.group(),
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
locale.py 231 for perc in percents:
232 if perc.group()[-1]=='%':
235 new_val.append(format(perc.group(), val, grouping))
241 for perc in percents:
242 if perc.group()[-1]=='%':
245 starcount = perc.group('modifiers').count('*')
246 new_val.append(_format(perc.group(),
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
locale.py 231 for perc in percents:
232 if perc.group()[-1]=='%':
235 new_val.append(format(perc.group(), val, grouping))
241 for perc in percents:
242 if perc.group()[-1]=='%':
245 starcount = perc.group('modifiers').count('*')
246 new_val.append(_format(perc.group(),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
locale.py 231 for perc in percents:
232 if perc.group()[-1]=='%':
235 new_val.append(format(perc.group(), val, grouping))
241 for perc in percents:
242 if perc.group()[-1]=='%':
245 starcount = perc.group('modifiers').count('*')
246 new_val.append(_format(perc.group(),
    [all...]
  /external/iproute2/tipc/
link.c 209 static uint32_t perc(uint32_t count, uint32_t total) function
254 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P0]), proft),
255 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P1]), proft),
256 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P2]), proft),
257 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P3]), proft),
258 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P4]), proft),
259 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P5]), proft),
260 perc(mnl_attr_get_u32(stats[TIPC_NLA_STATS_MSG_LEN_P6]), proft));
  /external/valgrind/massif/
ms_print.in 205 my $perc = safe_div_0(100 * $bytes, $mem_total_B);
215 "$this_prefix$arrow%05.2f%% (%sB)%s\n", $perc, commify($bytes),
238 $perc = safe_div_0(100 * $total_insig_children_szB, $mem_total_B);
241 $this_prefix2, $perc, commify($total_insig_children_szB),
  /prebuilts/devtools/tools/lib/
objenesis-2.1.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
objenesis-2.1.jar 
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/1.2/
objenesis-1.2.jar 
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/2.1/
objenesis-2.1.jar 

Completed in 1124 milliseconds

1 2