/linux/tools/perf/tests/shell/ |
H A D | stat+shadow_stat.sh | 28 cyc=$num 33 if [ -z "$cyc" ]; then 38 res=`echo $num $cyc | awk '{printf "%.2f", $1 / $2}'` 45 echo "IPC is different: $res != $ipc ($num / $cyc)" 71 cyc=${results##* $cpu:} 72 cyc=${cyc%% *} 75 if [ -z "$cyc" ]; then 80 res=`echo $num $cyc | awk '{printf "%.2f", $1 / $2}'` 87 echo "IPC is different: $res != $ipc ($num / $cyc)"
|
/linux/tools/perf/scripts/python/ |
H A D | stat-cpi.py | 56 cyc = get(time, "cycles", cpu, thread) 61 cpi = cyc/float(ins) 63 …15f: cpu %d, thread %d -> cpi %f (%d/%d)" % (time/(float(1000000000)), cpu, thread, cpi, cyc, ins))
|
/linux/drivers/pwm/ |
H A D | pwm-rcar.c | 110 u32 cyc, ph; in rcar_pwm_set_counter() local 117 cyc = (tmp << RCAR_PWMCNT_CYC0_SHIFT) & RCAR_PWMCNT_CYC0_MASK; in rcar_pwm_set_counter() 124 if (cyc == 0 || ph == 0) in rcar_pwm_set_counter() 127 rcar_pwm_write(rp, cyc | ph, RCAR_PWMCNT); in rcar_pwm_set_counter()
|
/linux/arch/arm/lib/ |
H A D | delay.c | 40 static inline u64 cyc_to_ns(u64 cyc, u32 mult, u32 shift) in cyc_to_ns() argument 42 return (cyc * mult) >> shift; in cyc_to_ns()
|
/linux/tools/lib/perf/ |
H A D | mmap.c | 484 u64 cnt, cyc = 0, time_offset = 0, time_cycles = 0, time_mask = ~0ULL; in perf_mmap__read_self() local 497 cyc = read_timestamp(); in perf_mmap__read_self() 527 cyc = time_cycles + ((cyc - time_cycles) & time_mask); in perf_mmap__read_self() 529 delta = time_offset + mul_u64_u32_shr(cyc, time_mult, time_shift); in perf_mmap__read_self()
|
/linux/drivers/dma/ |
H A D | pl330.c | 1096 const struct _xfer_spec *pxs, int cyc) in _ldst_memtomem() argument 1103 while (cyc--) { in _ldst_memtomem() 1108 while (cyc--) { in _ldst_memtomem() 1187 const struct _xfer_spec *pxs, int cyc, in _ldst_peripheral() argument 1198 while (cyc--) { in _ldst_peripheral() 1210 const struct _xfer_spec *pxs, int cyc) in _bursts() argument 1221 off += _ldst_peripheral(pl330, dry_run, &buf[off], pxs, cyc, in _bursts() 1226 off += _ldst_memtomem(dry_run, &buf[off], pxs, cyc); in _bursts() 1293 int cyc, cycmax, szlp, szlpend, szbrst, off; in _loop() local 1304 cyc = *bursts / lcnt1 / lcnt0; in _loop() [all …]
|
/linux/arch/arc/include/asm/ |
H A D | arcregs.h | 275 unsigned int pad2:12, cyc:3, pad1:1, sz1:4, sz0:4, ver:8; member 277 unsigned int ver:8, sz0:4, sz1:4, pad1:1, cyc:3, pad2:12;
|
/linux/drivers/mtd/nand/raw/ |
H A D | renesas-nand-controller.c | 896 unsigned int cyc, cle, ale, bef_dly, ca_to_data; in rnandc_setup_interface() local 923 cyc = sdr->tDS_min + sdr->tDH_min; in rnandc_setup_interface() 936 TIM_GEN_SEQ0_D0(TO_CYCLES64(cle - cyc, period_ns)) | in rnandc_setup_interface() 937 TIM_GEN_SEQ0_D1(TO_CYCLES64(cle - cyc, period_ns)) | in rnandc_setup_interface() 948 TIM_GEN_SEQ1_D4(TO_CYCLES64(ale - cyc, period_ns)) | in rnandc_setup_interface() 949 TIM_GEN_SEQ1_D5(TO_CYCLES64(ale - cyc, period_ns)) | in rnandc_setup_interface() 962 TIM_GEN_SEQ2_D10(TO_CYCLES64(cle - cyc, period_ns)) | in rnandc_setup_interface()
|
/linux/tools/perf/Documentation/ |
H A D | perf-intel-pt.txt | 154 If the 'cyc' config term (see <<_config_terms,config terms>> section below) was used, then IPC 166 Even with the 'cyc' config term, it is possible to produce IPC information for 250 /sys/bus/event_source/devices/intel_pt/format/cyc:config:1 317 -e intel_pt/cyc/ 322 -e intel_pt/cyc=1/ 331 -e intel_pt/cyc,mtc_period=9/ 442 *cyc*:: 461 Specifies how frequently CYC packets are produced - see cyc 484 $ perf record -e intel_pt/cyc,cyc_thresh=15/u uname 1355 However, IPC can still be determined, hence cyc [all...] |
/linux/drivers/mtd/nand/raw/atmel/ |
H A D | nand-controller.c | 72 #define ATMEL_HSMC_NFC_CFG_DTO(cyc, mul) (((cyc) << 16) | ((mul) << 20)) argument
|