Home
last modified time | relevance | path

Searched refs:nsecs (Results 1 – 25 of 88) sorted by relevance

1234

/openbmc/linux/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.pm32 sub nsecs subroutine
34 my ($secs, $nsecs) = @_;
36 return $secs * $NSECS_PER_SEC + $nsecs;
40 my ($nsecs) = @_;
42 return $nsecs / $NSECS_PER_SEC;
46 my ($nsecs) = @_;
48 return $nsecs % $NSECS_PER_SEC;
52 my ($nsecs) = @_;
54 my $str = sprintf("%5u.%09u", nsecs_secs($nsecs), nsecs_nsecs($nsecs));
/openbmc/linux/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.py23 def nsecs(secs, nsecs): argument
24 return secs * NSECS_PER_SEC + nsecs
26 def nsecs_secs(nsecs): argument
27 return nsecs / NSECS_PER_SEC
29 def nsecs_nsecs(nsecs): argument
30 return nsecs % NSECS_PER_SEC
32 def nsecs_str(nsecs): argument
33 str = "%5u.%09u" % (nsecs_secs(nsecs), nsecs_nsecs(nsecs)),
H A DCore.py107 self.nsecs = common_nsecs
113 return (self.secs * (10 ** 9)) + self.nsecs
116 return "%d.%d" % (self.secs, int(self.nsecs / 1000))
/openbmc/linux/drivers/spi/
H A Dspi-bitbang-txrx.h50 unsigned nsecs, unsigned cpol, unsigned flags, in bitbang_txrx_be_cpha0() argument
66 spidelay(nsecs); /* T(setup) */ in bitbang_txrx_be_cpha0()
69 spidelay(nsecs); in bitbang_txrx_be_cpha0()
82 unsigned nsecs, unsigned cpol, unsigned flags, in bitbang_txrx_be_cpha1() argument
99 spidelay(nsecs); /* T(setup) */ in bitbang_txrx_be_cpha1()
102 spidelay(nsecs); in bitbang_txrx_be_cpha1()
114 unsigned int nsecs, unsigned int cpol, unsigned int flags, in bitbang_txrx_le_cpha0() argument
131 spidelay(nsecs); /* T(setup) */ in bitbang_txrx_le_cpha0()
134 spidelay(nsecs); in bitbang_txrx_le_cpha0()
165 spidelay(nsecs); /* T(setup) */ in bitbang_txrx_le_cpha1()
[all …]
H A Dspi-gpio.c116 #define spidelay(nsecs) do {} while (0) argument
135 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_txrx_word_mode0() argument
138 return bitbang_txrx_le_cpha0(spi, nsecs, 0, flags, word, bits); in spi_gpio_txrx_word_mode0()
140 return bitbang_txrx_be_cpha0(spi, nsecs, 0, flags, word, bits); in spi_gpio_txrx_word_mode0()
144 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_txrx_word_mode1() argument
153 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_txrx_word_mode2() argument
162 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_txrx_word_mode3() argument
181 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_spec_txrx_word_mode0() argument
191 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_spec_txrx_word_mode1() argument
201 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_spec_txrx_word_mode2() argument
[all …]
H A Dspi-bitbang.c41 unsigned nsecs; /* (clock cycle time)/2 */ member
42 u32 (*txrx_word)(struct spi_device *spi, unsigned nsecs,
47 unsigned nsecs,
57 unsigned nsecs, in bitbang_txrx_8() argument
86 unsigned nsecs, in bitbang_txrx_16() argument
115 unsigned nsecs, in bitbang_txrx_32() argument
171 cs->nsecs = (1000000000/2) / hz; in spi_bitbang_setup_transfer()
172 if (cs->nsecs > (MAX_UDELAY_MS * 1000 * 1000)) in spi_bitbang_setup_transfer()
236 unsigned nsecs = cs->nsecs; in spi_bitbang_bufs() local
252 return cs->txrx_bufs(spi, cs->txrx_word, nsecs, t, flags); in spi_bitbang_bufs()
[all …]
H A Dspi-sh-sci.c79 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode0() argument
82 return bitbang_txrx_be_cpha0(spi, nsecs, 0, flags, word, bits); in sh_sci_spi_txrx_mode0()
86 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode1() argument
89 return bitbang_txrx_be_cpha1(spi, nsecs, 0, flags, word, bits); in sh_sci_spi_txrx_mode1()
93 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode2() argument
96 return bitbang_txrx_be_cpha0(spi, nsecs, 1, flags, word, bits); in sh_sci_spi_txrx_mode2()
100 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode3() argument
103 return bitbang_txrx_be_cpha1(spi, nsecs, 1, flags, word, bits); in sh_sci_spi_txrx_mode3()
H A Dspi-ath79.c64 static inline void ath79_spi_delay(struct ath79_spi *sp, unsigned int nsecs) in ath79_spi_delay() argument
66 if (nsecs > sp->rrw_delay) in ath79_spi_delay()
67 ndelay(nsecs - sp->rrw_delay); in ath79_spi_delay()
108 static u32 ath79_spi_txrx_mode0(struct spi_device *spi, unsigned int nsecs, in ath79_spi_txrx_mode0() argument
125 ath79_spi_delay(sp, nsecs); in ath79_spi_txrx_mode0()
127 ath79_spi_delay(sp, nsecs); in ath79_spi_txrx_mode0()
H A Dspi-sh-hspi.c152 const int nsecs = 50; in hspi_transfer_one_message() local
163 ndelay(nsecs); in hspi_transfer_one_message()
196 ndelay(nsecs); in hspi_transfer_one_message()
198 ndelay(nsecs); in hspi_transfer_one_message()
204 ndelay(nsecs); in hspi_transfer_one_message()
/openbmc/linux/arch/um/os-Linux/
H A Dtime.c47 int os_timer_set_interval(unsigned long long nsecs) in os_timer_set_interval() argument
51 its.it_value.tv_sec = nsecs / UM_NSEC_PER_SEC; in os_timer_set_interval()
52 its.it_value.tv_nsec = nsecs % UM_NSEC_PER_SEC; in os_timer_set_interval()
54 its.it_interval.tv_sec = nsecs / UM_NSEC_PER_SEC; in os_timer_set_interval()
55 its.it_interval.tv_nsec = nsecs % UM_NSEC_PER_SEC; in os_timer_set_interval()
63 int os_timer_one_shot(unsigned long long nsecs) in os_timer_one_shot() argument
66 .it_value.tv_sec = nsecs / UM_NSEC_PER_SEC, in os_timer_one_shot()
67 .it_value.tv_nsec = nsecs % UM_NSEC_PER_SEC, in os_timer_one_shot()
/openbmc/linux/arch/s390/lib/
H A Ddelay.c39 void __ndelay(unsigned long nsecs) in __ndelay() argument
41 nsecs <<= 9; in __ndelay()
42 do_div(nsecs, 125); in __ndelay()
43 delay_loop(nsecs); in __ndelay()
/openbmc/linux/arch/um/include/asm/
H A Ddelay.h7 static inline void um_ndelay(unsigned long nsecs) in um_ndelay() argument
11 time_travel_ndelay(nsecs); in um_ndelay()
14 ndelay(nsecs); in um_ndelay()
/openbmc/linux/arch/alpha/lib/
H A Dudelay.c51 ndelay(unsigned long nsecs) in ndelay() argument
53 nsecs *= (((unsigned long)HZ << 32) / 1000000000) * LPJ; in ndelay()
54 __delay((long)nsecs >> 32); in ndelay()
/openbmc/linux/net/netfilter/
H A Dnft_limit.c27 u64 nsecs; member
73 if (check_mul_overflow(unit, NSEC_PER_SEC, &priv->nsecs)) in nft_limit_init()
86 u64 tmp = div64_u64(priv->nsecs, priv->rate); in nft_limit_init()
97 if (check_mul_overflow(priv->nsecs, rate_with_burst, &tmp)) in nft_limit_init()
130 u64 secs = div_u64(priv->nsecs, NSEC_PER_SEC); in nft_limit_dump()
157 priv_dst->nsecs = priv_src->nsecs; in nft_limit_clone()
206 priv->cost = div64_u64(priv->limit.nsecs, priv->limit.rate); in nft_limit_pkts_init()
253 u64 cost = div64_u64(priv->nsecs * pkt->skb->len, priv->rate); in nft_limit_bytes_eval()
349 priv->cost = div64_u64(priv->limit.nsecs, priv->limit.rate); in nft_limit_obj_pkts_init()
385 u64 cost = div64_u64(priv->nsecs * pkt->skb->len, priv->rate); in nft_limit_obj_bytes_eval()
/openbmc/linux/tools/perf/scripts/python/
H A Dnetdev-times.py235 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
241 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
252 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
262 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
268 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
274 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
280 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
286 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
292 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
297 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
[all …]
H A Dpowerpc-hcalls.py176 diff = nsecs(sec, nsec) - d_enter[cpu][opcode]
200 d_enter[cpu][opcode] = nsecs(sec, nsec)
202 d_enter[cpu] = {opcode: nsecs(sec, nsec)}
H A Dcompaction-times.py96 def complete(self, secs, nsecs): argument
97 self.ns = ns(secs, nsecs) - self.ns
141 def complete_pending(cls, pid, secs, nsecs): argument
145 head.make_complete(secs, nsecs)
172 def mark_pending(self, secs, nsecs): argument
173 self.pending = cnode(ns(secs, nsecs))
178 def make_complete(self, secs, nsecs): argument
179 self.pending.complete(secs, nsecs)
/openbmc/linux/tools/perf/Documentation/
H A Dperf-script-perl.txt99 $common_nsecs the nsecs portion of the event timestamp
208 nsecs($secs, $nsecs) - returns total nsecs given secs/nsecs pair
209 nsecs_secs($nsecs) - returns whole secs portion given nsecs
210 nsecs_nsecs($nsecs) - returns nsecs remainder given nsecs
211 nsecs_str($nsecs) - returns printable string in the form secs.nsecs
/openbmc/linux/arch/sh/lib/
H A Ddelay.c50 void __ndelay(unsigned long nsecs) in __ndelay() argument
52 __const_udelay(nsecs * 0x00000005); in __ndelay()
/openbmc/linux/arch/x86/um/
H A Ddelay.c53 void __ndelay(unsigned long nsecs) in __ndelay() argument
55 __const_udelay(nsecs * 0x00005); /* 2**32 / 1000000000 (rounded up) */ in __ndelay()
/openbmc/linux/arch/csky/lib/
H A Ddelay.c35 void __ndelay(unsigned long nsecs) in __ndelay() argument
37 __const_udelay(nsecs * 0x5UL); /* 2**32 / 1000000000 (rounded up) */ in __ndelay()
/openbmc/linux/arch/nios2/lib/
H A Ddelay.c36 void __ndelay(unsigned long nsecs) in __ndelay() argument
38 __const_udelay(nsecs * 0x5UL); /* 2**32 / 1000000000 (rounded up) */ in __ndelay()
/openbmc/linux/arch/openrisc/lib/
H A Ddelay.c55 void __ndelay(unsigned long nsecs) in __ndelay() argument
57 __const_udelay(nsecs * 0x5UL); /* 2**32 / 1000000000 (rounded up) */ in __ndelay()
/openbmc/linux/block/
H A Dgenhd.c111 stat->nsecs[group] += ptr->nsecs[group]; in part_stat_read_all()
979 (unsigned int)div_u64(stat.nsecs[STAT_READ] + in part_stat_show()
980 stat.nsecs[STAT_WRITE] + in part_stat_show()
981 stat.nsecs[STAT_DISCARD] + in part_stat_show()
982 stat.nsecs[STAT_FLUSH], in part_stat_show()
1274 (unsigned int)div_u64(stat.nsecs[STAT_READ], in diskstats_show()
1279 (unsigned int)div_u64(stat.nsecs[STAT_WRITE], in diskstats_show()
1283 (unsigned int)div_u64(stat.nsecs[STAT_READ] + in diskstats_show()
1284 stat.nsecs[STAT_WRITE] + in diskstats_show()
1285 stat.nsecs[STAT_DISCARD] + in diskstats_show()
[all …]
/openbmc/linux/arch/arm/mach-omap1/
H A Dtimer32k.c193 unsigned long long nsecs; in omap_read_persistent_clock64() local
199 nsecs = clocksource_cyc2ns(cycles - last_cycles, in omap_read_persistent_clock64()
202 timespec64_add_ns(&persistent_ts, nsecs); in omap_read_persistent_clock64()

1234