Searched refs:cyc (Results 1 - 12 of 12) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Dtimer.h48 static inline unsigned long long __cycles_2_ns(unsigned long long cyc) argument
52 ns += cyc * per_cpu(cyc2ns, cpu) >> CYC2NS_SCALE_FACTOR;
56 static inline unsigned long long cycles_2_ns(unsigned long long cyc) argument
62 ns = __cycles_2_ns(cyc);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-pxa/
H A Dmp900.c33 int cyc = delay / 10; local
39 :"=r" (cyc)
40 :"0"(cyc)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-s3c24xx/
H A Ds3c2410-iotiming.c81 * @cyc: The cycle time, in 10ths of nanoseconds.
87 static inline unsigned int to_div(unsigned int cyc, unsigned int hclk_tns) argument
89 if (cyc == 0)
92 return DIV_ROUND_UP(cyc, hclk_tns);
97 * @cyc: The cycle time, in 10ths of nanoseconds.
105 static unsigned int calc_0124(unsigned int cyc, unsigned long hclk_tns, argument
108 unsigned int div = to_div(cyc, hclk_tns);
111 s3c_freq_iodbg("%s: cyc=%d, hclk=%lu, shift=%d => div %d\n",
112 __func__, cyc, hclk_tns, shift, div);
136 int calc_tacp(unsigned int cyc, unsigne argument
153 calc_tacc(unsigned int cyc, int nwait_en, unsigned long hclk_tns, unsigned long *v) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-iop/
H A Dtime.c57 cycle_t cyc = iop_clocksource_read(NULL); local
60 return clocksource_cyc2ns(cyc, cs->mult, cs->shift);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/include/asm/
H A Ddmactl-regs.h94 u32 cyc; member in struct:mn10300_dmactl_regs
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/common/
H A Dpl330.c974 const struct _xfer_spec *pxs, int cyc)
978 while (cyc--) {
989 const struct _xfer_spec *pxs, int cyc)
993 while (cyc--) {
1004 const struct _xfer_spec *pxs, int cyc)
1008 while (cyc--) {
1019 const struct _xfer_spec *pxs, int cyc)
1025 off += _ldst_memtodev(dry_run, &buf[off], pxs, cyc);
1028 off += _ldst_devtomem(dry_run, &buf[off], pxs, cyc);
1031 off += _ldst_memtomem(dry_run, &buf[off], pxs, cyc);
973 _ldst_memtomem(unsigned dry_run, u8 buf[], const struct _xfer_spec *pxs, int cyc) argument
988 _ldst_devtomem(unsigned dry_run, u8 buf[], const struct _xfer_spec *pxs, int cyc) argument
1003 _ldst_memtodev(unsigned dry_run, u8 buf[], const struct _xfer_spec *pxs, int cyc) argument
1018 _bursts(unsigned dry_run, u8 buf[], const struct _xfer_spec *pxs, int cyc) argument
1045 int cyc, cycmax, szlp, szlpend, szbrst, off; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/microblaze/kernel/
H A Dtimer.c306 cycle_t cyc = cnt32_to_63(cs->read(NULL)); local
307 return clocksource_cyc2ns(cyc, cs->mult, cs->shift);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dtlb_uv.c363 cycles_2_us(unsigned long long cyc) argument
367 ns = (cyc * per_cpu(cyc2ns, smp_processor_id()))
458 cycles_t cyc; local
461 cyc = (ns << CYC2NS_SCALE_FACTOR)/(per_cpu(cyc2ns, smp_processor_id()));
462 return cyc;
927 unsigned long long cyc; local
930 cyc = (ns << CYC2NS_SCALE_FACTOR)/(per_cpu(cyc2ns, smp_processor_id()));
931 return cyc;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-ixp4xx/
H A Dcommon.c433 cycle_t cyc = ixp4xx_get_cycles(NULL); local
436 return clocksource_cyc2ns(cyc, cs->mult, cs->shift);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/rc4/asm/
H A Drc4-ia64.pl87 # Data = *inp++ ld1 data = [inp], 1 M0-M1 1 cyc c0
88 # shladd Iptr = I, KeyTable, 3 M0-M3, I0, I1 1 cyc
89 # I = (I + 1) & 0xff padd1 nextI = I, one M0-M3, I0, I1 3 cyc
91 # SI = S[I] ld8 SI = [Iptr] M0-M1 1 cyc c1 * after SWAP!
94 # J = SI + J add J = J, SI M0-M3, I0, I1 1 cyc c2
98 # J = J & 0xff zxt1 J = J I0, I1, 1 cyc c3
100 # shladd Jptr = J, KeyTable, 3 M0-M3, I0, I1 1 cyc c4
102 # SJ = S[J] ld8 SJ = [Jptr] M0-M1 1 cyc c5
105 # T = (SI + SJ) add T = SI, SJ M0-M3, I0, I1 1 cyc c6
107 # T = T & 0xff zxt1 T = T I0, I1 1 cyc
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/rc4/asm/
H A Drc4-ia64.pl87 # Data = *inp++ ld1 data = [inp], 1 M0-M1 1 cyc c0
88 # shladd Iptr = I, KeyTable, 3 M0-M3, I0, I1 1 cyc
89 # I = (I + 1) & 0xff padd1 nextI = I, one M0-M3, I0, I1 3 cyc
91 # SI = S[I] ld8 SI = [Iptr] M0-M1 1 cyc c1 * after SWAP!
94 # J = SI + J add J = J, SI M0-M3, I0, I1 1 cyc c2
98 # J = J & 0xff zxt1 J = J I0, I1, 1 cyc c3
100 # shladd Jptr = J, KeyTable, 3 M0-M3, I0, I1 1 cyc c4
102 # SJ = S[J] ld8 SJ = [Jptr] M0-M1 1 cyc c5
105 # T = (SI + SJ) add T = SI, SJ M0-M3, I0, I1 1 cyc c6
107 # T = T & 0xff zxt1 T = T I0, I1 1 cyc
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/kernel/
H A Dtime.c89 extern cputime_t cycle_to_cputime(u64 cyc);

Completed in 113 milliseconds