Home
last modified time | relevance | path

Searched refs:picos (Results 1 – 6 of 6) sorted by relevance

/external/caliper/caliper/src/main/java/com/google/caliper/util/
DShortDuration.java60 BigDecimal picos = duration.multiply(ONE_IN_PICOS.get(unit)); in of() local
61 return ofPicos(toLong(picos, RoundingMode.HALF_UP)); in of()
86 private static ShortDuration ofPicos(long picos) { in ofPicos() argument
87 if (picos == 0) { in ofPicos()
90 checkArgument(picos > 0); in ofPicos()
91 return new PositiveShortDuration(picos); in ofPicos()
96 final long picos; field in ShortDuration
98 ShortDuration(long picos) { in ShortDuration() argument
99 this.picos = picos; in ShortDuration()
103 return picos; in toPicos()
[all …]
/external/u-boot/drivers/ddr/fsl/
Dutil.c85 unsigned int picos_to_mclk(const unsigned int ctrl_num, unsigned int picos) in picos_to_mclk() argument
91 if (!picos) in picos_to_mclk()
95 clks = picos * (unsigned long long)data_rate; in picos_to_mclk()
Dinteractive.c31 static unsigned int picos_to_mhz(unsigned int picos) in picos_to_mhz() argument
33 return 1000000 / picos; in picos_to_mhz()
/external/u-boot/arch/powerpc/cpu/mpc83xx/
Dspd_sdram.c74 picos_to_clk(int picos) in picos_to_clk() argument
80 clks = picos / (1000000000 / (mem_bus_clk / 1000)); in picos_to_clk()
81 if (picos % (1000000000 / (mem_bus_clk / 1000)) != 0) in picos_to_clk()
/external/u-boot/include/
Dfsl_ddr.h110 unsigned int picos_to_mclk(const unsigned int ctrl_num, unsigned int picos);
/external/tensorflow/tensorflow/core/profiler/
Dtrace_events.proto53 // The timestamp that this event occurred at (in picos since tracing started).