Searched refs:cycles (Results 1 - 23 of 23) sorted by relevance

/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-tim.h122 uint64_t start_time; /**< Time the timer started in cycles */
212 const uint64_t cycles = cvmx_clock_get_count(CVMX_CLOCK_TIM); /* Get our reference time early for accuracy */ local
232 work_bucket = (((ticks_from_now * cvmx_tim.tick_cycles) + cycles - cvmx_tim.start_time)
289 delete_info->commit_cycles = cycles + (ticks_from_now - 2) * cvmx_tim.tick_cycles;
314 const uint64_t cycles = cvmx_clock_get_count(CVMX_CLOCK_TIM); local
316 if ((int64_t)(cycles - delete_info->commit_cycles) < 0)
H A Dcvmx-access.h180 * Reads a chip global cycle counter. This counts SCLK cycles since
191 * Wait for the specified number of core clock cycles
193 * @param cycles
195 CVMX_FUNCTION void cvmx_wait(uint64_t cycles);
205 * Wait for the specified number of io clock cycles
207 * @param cycles
209 CVMX_FUNCTION void cvmx_wait_io(uint64_t cycles);
H A Dcvmx-access-native.h149 cycles and do nothing */
269 cycles and do nothing */
613 * Reads a chip global cycle counter. This counts SCLK cycles since
628 * Wait for the specified number of core clock cycles
630 * @param cycles
632 static inline void cvmx_wait(uint64_t cycles) argument
634 uint64_t done = cvmx_get_cycle() + cycles;
659 * Wait for the specified number of io clock cycles
661 * @param cycles
663 static inline void cvmx_wait_io(uint64_t cycles) argument
[all...]
H A Dcvmx-trax-defs.h620 granularity=8^n cycles, n=0,1,2,3,4,5,6,7 */
700 granularity=8^n cycles, n=0,1,2,3,4,5,6,7 */
790 granularity=8^n cycles, n=0,1,2,3,4,5,6,7 */
854 uint64_t cycles : 48; /**< Cycles since the last entry was written */ member in struct:cvmx_trax_cycles_since::cvmx_trax_cycles_since_s
860 uint64_t cycles : 48;
893 uint64_t cycles : 40; /**< Cycles since the last entry was written */ member in struct:cvmx_trax_cycles_since1::cvmx_trax_cycles_since1_s
903 uint64_t cycles : 40;
/freebsd-10.0-release/sys/kern/
H A Dkern_poll.c208 "Every this many cycles check registers");
224 &residual_burst, 0, "# of residual cycles in burst");
423 int i, cycles; local
442 cycles = (residual_burst < poll_each_burst) ?
444 residual_burst -= cycles;
447 pr[i].handler(pr[i].ifp, arg, cycles);
/freebsd-10.0-release/contrib/gcc/
H A Dipa-inline.c516 cgraph_find_cycles (struct cgraph_node *node, htab_t cycles) argument
523 slot = htab_find_slot (cycles, node, INSERT);
535 cgraph_find_cycles (e->callee, cycles);
545 cgraph_flatten_node (struct cgraph_node *node, htab_t cycles) argument
557 && !htab_find (cycles, e->callee))
562 cgraph_flatten_node (e->callee, cycles);
961 htab_t cycles; local
965 cycles = htab_create (7, htab_hash_pointer, htab_eq_pointer, NULL);
966 cgraph_find_cycles (node, cycles);
967 cgraph_flatten_node (node, cycles);
[all...]
H A Dmodulo-sched.c69 3. Compute MII: a lower bound on the number of cycles to schedule the loop.
71 1. Set II = MII. We will try to schedule the loop within II cycles.
73 For each insn compute an interval of cycles by considering already-
75 the insn in the cycles of this window checking for potential
82 5. If we succeeded in scheduling the loop within II cycles, we now
85 II cycles (i.e. use register copies to prevent a def from overwriting
402 requires more cycles than this bound. Currently set to the sum of the
1202 /* Generate the kernel just to be able to measure its cycles. */
1206 /* Get the number of cycles the new kernel expect to execute in. */
1347 /* A limit on the number of cycles tha
2304 int cycles = 0; local
[all...]
/freebsd-10.0-release/contrib/ntp/ntpd/
H A Drefclock_irig.c249 int cycles; /* carrier cycles */ member in struct:irigunit
250 int dcycles; /* data cycles */
684 * and ten cycles in the baud interval. The amplitude of each
715 up->cycles <<= 1;
717 up->cycles |= 1;
718 if ((up->cycles & 0x303c0f03) == 0x300c0300) {
/freebsd-10.0-release/contrib/bmake/unit-tests/
H A Dtest.exp86 make: Graph cycles through `cycle.2.99'
87 make: Graph cycles through `cycle.2.98'
88 make: Graph cycles through `cycle.2.97'
/freebsd-10.0-release/sys/xen/interface/
H A Dtrace.h195 uint32_t cycles_included:1; /* u.cycles or u.no_cycles? */
200 } cycles; member in union:t_rec::__anon11252
/freebsd-10.0-release/crypto/openssl/crypto/
H A Dsparccpuid.S245 ! Probe and instrument VIS1 instruction. Output is number of cycles it
247 ! is slow (documented to be 6 cycles on T2) and the core is in-order
/freebsd-10.0-release/sys/dev/cxgbe/common/
H A Dcommon.h459 void t4_pmtx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[]);
460 void t4_pmrx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[]);
H A Dt4_hw.c3751 * @cycles: where to store the cycle statistics
3755 void t4_pmtx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[]) argument
3764 cycles[i] = t4_read_reg64(adap, A_PM_TX_STAT_LSB);
3769 cycles[i] = (((u64)data[0] << 32) | data[1]);
3778 * @cycles: where to store the cycle statistics
3782 void t4_pmrx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[]) argument
3791 cycles[i] = t4_read_reg64(adap, A_PM_RX_STAT_LSB);
3796 cycles[i] = (((u64)data[0] << 32) | data[1]);
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dminimon.h408 INT32 cycles; member in struct:status_msg_t
/freebsd-10.0-release/crypto/openssl/crypto/sha/asm/
H A Dsha1-thumb.pl233 b .Lloop @ [+6] total 3212 cycles
/freebsd-10.0-release/sys/mips/rmi/dev/xlr/
H A Drge.c1511 uint32_t cycles; local
1533 cycles = mips_rd_count();
1548 (read_c0_count() - cycles));
/freebsd-10.0-release/sys/ofed/drivers/net/mlx4/
H A Dmain.c1346 cycle_t cycles; local
1358 cycles = (u64) clockhi << 32 | (u64) clocklo;
1360 return cycles;
/freebsd-10.0-release/lib/libpmc/
H A Dlibpmc.c447 EV_ALIAS("cycles", "tsc"),
555 EV_ALIAS("cycles", "tsc-tsc"),
559 EV_ALIAS("unhalted-cycles", "iap-unhalted-core-cycles"),
575 EV_ALIAS("cycles", "tsc-tsc"),
579 EV_ALIAS("unhalted-cycles", "iaf-cpu-clk-unhalted.core"),
586 EV_ALIAS("cycles", "tsc-tsc"),
590 EV_ALIAS("unhalted-cycles", "iap-cpu-clk-unhalted.core_p"),
987 EV_ALIAS("cycles", "tsc"),
992 EV_ALIAS("unhalted-cycles", "k
[all...]
/freebsd-10.0-release/sys/dev/ath/ath_hal/
H A Dah.h936 int32_t pe_usefir128; /* Use the average in-band power measured over 128 cycles */
1195 u_int32_t cycles; member in struct:hal_bb_panic_info
/freebsd-10.0-release/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_misc.c1493 u_int32_t cc = OS_REG_READ(ah, AR_CCCNT); /* read cycles last */
1721 bb_panic->cycles = ar9300_get_mib_cycle_counts_pct(ah,
1738 if (bb_panic->cycles) {
/freebsd-10.0-release/contrib/gcc/config/arm/
H A Darm.c1324 2 cycles to load a constant, and the load scheduler may well
1421 never return, and many memory cycles can be saved by not storing
4304 int cycles = 0;
4310 cycles++;
4312 return COSTS_N_INSNS (2) + cycles;
5986 produces worse code -- '3 cycles + any stalls on rd2' instead of
5987 '2 cycles + any stalls on rd2'. On ARMs with only one cache
5989 than 6 cycles, whereas the ldm sequence would only take 5 and
6255 For XScale ldm requires 2 + NREGS cycles to complete and blocks
6264 An ldr instruction takes 1-3 cycles, bu
4294 int cycles = 0; local
[all...]
/freebsd-10.0-release/contrib/sqlite3/
H A Dsqlite3.c8820 u64 cycles; /* Total time spent executing this instruction */ member in struct:VdbeOp
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c8236 u64 cycles; /* Total time spent executing this instruction */ member in struct:VdbeOp
[all...]

Completed in 1308 milliseconds