/kernel/linux/linux-5.10/arch/um/os-Linux/ |
H A D | time.c | 52 int os_timer_set_interval(unsigned long long nsecs) in os_timer_set_interval() argument 56 its.it_value.tv_sec = nsecs / UM_NSEC_PER_SEC; in os_timer_set_interval() 57 its.it_value.tv_nsec = nsecs % UM_NSEC_PER_SEC; in os_timer_set_interval() 59 its.it_interval.tv_sec = nsecs / UM_NSEC_PER_SEC; in os_timer_set_interval() 60 its.it_interval.tv_nsec = nsecs % UM_NSEC_PER_SEC; in os_timer_set_interval() 68 int os_timer_one_shot(unsigned long long nsecs) in os_timer_one_shot() argument 71 .it_value.tv_sec = nsecs / UM_NSEC_PER_SEC, in os_timer_one_shot() 72 .it_value.tv_nsec = nsecs % UM_NSEC_PER_SEC, in os_timer_one_shot() 102 * os_idle_sleep() - sleep for a given time of nsecs 103 * @nsecs 105 os_idle_sleep(unsigned long long nsecs) os_idle_sleep() argument [all...] |
/kernel/linux/linux-5.10/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/ |
H A D | Util.pm | 17 avg nsecs nsecs_secs nsecs_nsecs nsecs_usecs print_nsecs 32 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_nsec [all...] |
/kernel/linux/linux-6.6/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/ |
H A D | Util.pm | 17 avg nsecs nsecs_secs nsecs_nsecs nsecs_usecs print_nsecs 32 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_nsec [all...] |
/kernel/linux/linux-5.10/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
H A D | Util.py | 23 def nsecs(secs, nsecs): function 24 return secs * NSECS_PER_SEC + nsecs 26 def nsecs_secs(nsecs): 27 return nsecs / NSECS_PER_SEC 29 def nsecs_nsecs(nsecs): 30 return nsecs % NSECS_PER_SEC 32 def nsecs_str(nsecs): 33 str = "%5u.%09u" % (nsecs_secs(nsecs), nsecs_nsecs(nsecs)), [all...] |
/kernel/linux/linux-6.6/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
H A D | Util.py | 23 def nsecs(secs, nsecs): function 24 return secs * NSECS_PER_SEC + nsecs 26 def nsecs_secs(nsecs): 27 return nsecs / NSECS_PER_SEC 29 def nsecs_nsecs(nsecs): 30 return nsecs % NSECS_PER_SEC 32 def nsecs_str(nsecs): 33 str = "%5u.%09u" % (nsecs_secs(nsecs), nsecs_nsecs(nsecs)), [all...] |
/kernel/linux/linux-6.6/drivers/spi/ |
H A D | spi-bitbang-txrx.h | 50 unsigned nsecs, unsigned cpol, unsigned flags, in bitbang_txrx_be_cpha0() 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() 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() 131 spidelay(nsecs); /* T(setup) */ in bitbang_txrx_le_cpha0() 134 spidelay(nsecs); in bitbang_txrx_le_cpha0() 147 unsigned int nsecs, unsigne in bitbang_txrx_le_cpha1() 49 bitbang_txrx_be_cpha0(struct spi_device *spi, unsigned nsecs, unsigned cpol, unsigned flags, u32 word, u8 bits) bitbang_txrx_be_cpha0() argument 81 bitbang_txrx_be_cpha1(struct spi_device *spi, unsigned nsecs, unsigned cpol, unsigned flags, u32 word, u8 bits) bitbang_txrx_be_cpha1() argument 113 bitbang_txrx_le_cpha0(struct spi_device *spi, unsigned int nsecs, unsigned int cpol, unsigned int flags, u32 word, u8 bits) bitbang_txrx_le_cpha0() argument 146 bitbang_txrx_le_cpha1(struct spi_device *spi, unsigned int nsecs, unsigned int cpol, unsigned int flags, u32 word, u8 bits) bitbang_txrx_le_cpha1() argument [all...] |
H A D | spi-gpio.c | 116 #define spidelay(nsecs) do {} while (0) 135 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_txrx_word_mode0() 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() 147 return bitbang_txrx_le_cpha1(spi, nsecs, 0, flags, word, bits); in spi_gpio_txrx_word_mode1() 149 return bitbang_txrx_be_cpha1(spi, nsecs, 0, flags, word, bits); in spi_gpio_txrx_word_mode1() 153 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_txrx_word_mode2() 156 return bitbang_txrx_le_cpha0(spi, nsecs, 1, flags, word, bits); in spi_gpio_txrx_word_mode2() 158 return bitbang_txrx_be_cpha0(spi, nsecs, in spi_gpio_txrx_word_mode2() 134 spi_gpio_txrx_word_mode0(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_txrx_word_mode0() argument 143 spi_gpio_txrx_word_mode1(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_txrx_word_mode1() argument 152 spi_gpio_txrx_word_mode2(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_txrx_word_mode2() argument 161 spi_gpio_txrx_word_mode3(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_txrx_word_mode3() argument 180 spi_gpio_spec_txrx_word_mode0(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_spec_txrx_word_mode0() argument 190 spi_gpio_spec_txrx_word_mode1(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_spec_txrx_word_mode1() argument 200 spi_gpio_spec_txrx_word_mode2(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_spec_txrx_word_mode2() argument 210 spi_gpio_spec_txrx_word_mode3(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_spec_txrx_word_mode3() argument [all...] |
H A D | spi-bitbang.c | 41 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() 86 unsigned nsecs, in bitbang_txrx_16() 115 unsigned nsecs, in bitbang_txrx_32() 167 /* nsecs = (clock period)/2 */ in spi_bitbang_setup_transfer() 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() 213 dev_dbg(&spi->dev, "%s, %u nsec/bit\n", __func__, 2 * cs->nsecs); in spi_bitbang_setup() 54 bitbang_txrx_8( struct spi_device *spi, u32 (*txrx_word)(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags), unsigned ns, struct spi_transfer *t, unsigned flags ) bitbang_txrx_8() argument 83 bitbang_txrx_16( struct spi_device *spi, u32 (*txrx_word)(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags), unsigned ns, struct spi_transfer *t, unsigned flags ) bitbang_txrx_16() argument 112 bitbang_txrx_32( struct spi_device *spi, u32 (*txrx_word)(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags), unsigned ns, struct spi_transfer *t, unsigned flags ) bitbang_txrx_32() argument 236 unsigned nsecs = cs->nsecs; spi_bitbang_bufs() local [all...] |
H A D | spi-sh-sci.c | 79 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode0() 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() 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() 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() 103 return bitbang_txrx_be_cpha1(spi, nsecs, 1, flags, word, bits); in sh_sci_spi_txrx_mode3() 78 sh_sci_spi_txrx_mode0(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) sh_sci_spi_txrx_mode0() argument 85 sh_sci_spi_txrx_mode1(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) sh_sci_spi_txrx_mode1() argument 92 sh_sci_spi_txrx_mode2(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) sh_sci_spi_txrx_mode2() argument 99 sh_sci_spi_txrx_mode3(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) sh_sci_spi_txrx_mode3() argument
|
/kernel/linux/linux-6.6/arch/um/os-Linux/ |
H A D | time.c | 47 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()
|
/kernel/linux/linux-5.10/drivers/spi/ |
H A D | spi-gpio.c | 117 #define spidelay(nsecs) do {} while (0) 136 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_txrx_word_mode0() 138 return bitbang_txrx_be_cpha0(spi, nsecs, 0, flags, word, bits); in spi_gpio_txrx_word_mode0() 142 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_txrx_word_mode1() 144 return bitbang_txrx_be_cpha1(spi, nsecs, 0, flags, word, bits); in spi_gpio_txrx_word_mode1() 148 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_txrx_word_mode2() 150 return bitbang_txrx_be_cpha0(spi, nsecs, 1, flags, word, bits); in spi_gpio_txrx_word_mode2() 154 unsigned nsecs, u32 word, u8 bits, unsigned flags) in spi_gpio_txrx_word_mode3() 156 return bitbang_txrx_be_cpha1(spi, nsecs, 1, flags, word, bits); in spi_gpio_txrx_word_mode3() 170 unsigned nsecs, u3 in spi_gpio_spec_txrx_word_mode0() 135 spi_gpio_txrx_word_mode0(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_txrx_word_mode0() argument 141 spi_gpio_txrx_word_mode1(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_txrx_word_mode1() argument 147 spi_gpio_txrx_word_mode2(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_txrx_word_mode2() argument 153 spi_gpio_txrx_word_mode3(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_txrx_word_mode3() argument 169 spi_gpio_spec_txrx_word_mode0(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_spec_txrx_word_mode0() argument 176 spi_gpio_spec_txrx_word_mode1(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_spec_txrx_word_mode1() argument 183 spi_gpio_spec_txrx_word_mode2(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_spec_txrx_word_mode2() argument 190 spi_gpio_spec_txrx_word_mode3(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) spi_gpio_spec_txrx_word_mode3() argument [all...] |
H A D | spi-bitbang-txrx.h | 48 unsigned nsecs, unsigned cpol, unsigned flags, in bitbang_txrx_be_cpha0() 64 spidelay(nsecs); /* T(setup) */ in bitbang_txrx_be_cpha0() 67 spidelay(nsecs); in bitbang_txrx_be_cpha0() 80 unsigned nsecs, unsigned cpol, unsigned flags, in bitbang_txrx_be_cpha1() 97 spidelay(nsecs); /* T(setup) */ in bitbang_txrx_be_cpha1() 100 spidelay(nsecs); in bitbang_txrx_be_cpha1() 47 bitbang_txrx_be_cpha0(struct spi_device *spi, unsigned nsecs, unsigned cpol, unsigned flags, u32 word, u8 bits) bitbang_txrx_be_cpha0() argument 79 bitbang_txrx_be_cpha1(struct spi_device *spi, unsigned nsecs, unsigned cpol, unsigned flags, u32 word, u8 bits) bitbang_txrx_be_cpha1() argument
|
H A D | spi-bitbang.c | 41 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() 85 unsigned nsecs, in bitbang_txrx_16() 113 unsigned nsecs, in bitbang_txrx_32() 164 /* nsecs = (clock period)/2 */ in spi_bitbang_setup_transfer() 168 cs->nsecs = (1000000000/2) / hz; in spi_bitbang_setup_transfer() 169 if (cs->nsecs > (MAX_UDELAY_MS * 1000 * 1000)) in spi_bitbang_setup_transfer() 210 dev_dbg(&spi->dev, "%s, %u nsec/bit\n", __func__, 2 * cs->nsecs); in spi_bitbang_setup() 54 bitbang_txrx_8( struct spi_device *spi, u32 (*txrx_word)(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags), unsigned ns, struct spi_transfer *t, unsigned flags ) bitbang_txrx_8() argument 82 bitbang_txrx_16( struct spi_device *spi, u32 (*txrx_word)(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags), unsigned ns, struct spi_transfer *t, unsigned flags ) bitbang_txrx_16() argument 110 bitbang_txrx_32( struct spi_device *spi, u32 (*txrx_word)(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags), unsigned ns, struct spi_transfer *t, unsigned flags ) bitbang_txrx_32() argument 233 unsigned nsecs = cs->nsecs; spi_bitbang_bufs() local [all...] |
H A D | spi-sh-sci.c | 79 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode0() 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() 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() 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() 103 return bitbang_txrx_be_cpha1(spi, nsecs, 1, flags, word, bits); in sh_sci_spi_txrx_mode3() 78 sh_sci_spi_txrx_mode0(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) sh_sci_spi_txrx_mode0() argument 85 sh_sci_spi_txrx_mode1(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) sh_sci_spi_txrx_mode1() argument 92 sh_sci_spi_txrx_mode2(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) sh_sci_spi_txrx_mode2() argument 99 sh_sci_spi_txrx_mode3(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits, unsigned flags) sh_sci_spi_txrx_mode3() argument
|
H A D | spi-ath79.c | 64 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() 193 dev_dbg(&pdev->dev, "register read/write delay is %u nsecs\n", in ath79_spi_probe()
|
/kernel/linux/linux-5.10/arch/s390/lib/ |
H A D | delay.c | 118 void __ndelay(unsigned long long nsecs) in __ndelay() argument 122 nsecs <<= 9; in __ndelay() 123 do_div(nsecs, 125); in __ndelay() 124 end = get_tod_clock_fast() + nsecs; in __ndelay() 125 if (nsecs & ~0xfffUL) in __ndelay() 126 __udelay(nsecs >> 12); in __ndelay()
|
/kernel/linux/linux-6.6/arch/s390/lib/ |
H A D | delay.c | 39 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()
|
/kernel/linux/linux-5.10/arch/alpha/lib/ |
H A D | udelay.c | 51 ndelay(unsigned long nsecs) in ndelay() argument 53 nsecs *= (((unsigned long)HZ << 32) / 1000000000) * LPJ; in ndelay() 54 __delay((long)nsecs >> 32); in ndelay()
|
/kernel/linux/linux-5.10/arch/um/include/asm/ |
H A D | delay.h | 7 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()
|
/kernel/linux/linux-6.6/arch/alpha/lib/ |
H A D | udelay.c | 51 ndelay(unsigned long nsecs) in ndelay() argument 53 nsecs *= (((unsigned long)HZ << 32) / 1000000000) * LPJ; in ndelay() 54 __delay((long)nsecs >> 32); in ndelay()
|
/kernel/linux/linux-6.6/arch/um/include/asm/ |
H A D | delay.h | 7 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()
|
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nft_limit.c | 27 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, pri in nft_limit_obj_pkts_init() [all...] |
/kernel/linux/linux-5.10/tools/perf/scripts/python/ |
H A D | netdev-times.py | 235 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 241 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 247 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 252 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, 257 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, irq, ret) 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(se [all...] |
/kernel/linux/linux-6.6/tools/perf/scripts/python/ |
H A D | netdev-times.py | 235 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 241 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 247 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 252 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, 257 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, irq, ret) 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(se [all...] |
/kernel/linux/linux-5.10/arch/arm/plat-omap/ |
H A D | counter_32k.c | 48 * nsecs and adds to a monotonically increasing timespec64. 56 unsigned long long nsecs; in omap_read_persistent_clock64() local 62 nsecs = clocksource_cyc2ns(cycles - last_cycles, in omap_read_persistent_clock64() 65 timespec64_add_ns(&persistent_ts, nsecs); in omap_read_persistent_clock64()
|