Home
last modified time | relevance | path

Searched refs:loops (Results 1 – 25 of 42) sorted by relevance

12

/f-stack/tools/top/
H A Dtop.c59 unsigned long loops, ploops; in main() local
117 idle, sys, usr, TOP_DIFF(loops)); in main()
132 sys = usr = idle = loops = 0; in main()
150 ploops = TOP_DIFF_P(loops); in main()
157 loops += ploops; in main()
161 "total", idle, sys, usr, loops); in main()
/f-stack/dpdk/drivers/raw/ifpga/base/
H A Dopae_spi.c13 int loops = SPI_MAX_RETRY; in nios_spi_indirect_read() local
19 while (!(stat & NIOS_SPI_VALID) && --loops) in nios_spi_indirect_read()
24 return loops ? 0 : -ETIMEDOUT; in nios_spi_indirect_read()
33 int loops = SPI_MAX_RETRY; in nios_spi_indirect_write() local
41 while (!(stat & NIOS_SPI_VALID) && --loops) in nios_spi_indirect_write()
44 return loops ? 0 : -ETIMEDOUT; in nios_spi_indirect_write()
/f-stack/app/redis-5.0.5/tests/cluster/tests/
H A D05-slave-selection.tcl146 set loops [expr {[dict size $instances]-1}]
147 for {set i 0} {$i < $loops} {incr i} {
/f-stack/freebsd/netpfil/ipfw/test/
H A Dmain.c21 int loops; member
207 for (i=0; i < c->loops; i++) { in mainloop()
258 DX(1, "done %d loops\n", c->loops); in dump()
454 c->loops = getnum(av[1], NULL, av[0]); in init()
509 if (c->loops <= 0) in init()
510 c->loops = 1; in init()
/f-stack/lib/
H A Dff_msg.h77 unsigned long loops; member
H A DMakefile63 HOST_CFLAGS = -O2 -frename-registers -funswitch-loops -fweb -Wno-format-truncation
/f-stack/freebsd/vm/
H A Dvm_radix.c541 int loops = 0; in vm_radix_lookup_ge() local
567 KASSERT(++loops < 1000, in vm_radix_lookup_ge()
653 int loops = 0; in vm_radix_lookup_le() local
682 KASSERT(++loops < 1000, in vm_radix_lookup_le()
/f-stack/freebsd/kern/
H A Dsubr_pctrie.c489 int loops = 0; in pctrie_lookup_ge() local
516 KASSERT(++loops < 1000, in pctrie_lookup_ge()
604 int loops = 0; in pctrie_lookup_le() local
634 KASSERT(++loops < 1000, in pctrie_lookup_le()
/f-stack/dpdk/lib/librte_eal/common/
H A Drte_service.c71 uint64_t loops; member
478 cs->loops++; in service_runner_func()
828 *attr_value = cs->loops; in rte_service_lcore_attr_get()
858 cs->loops = 0; in rte_service_lcore_attr_reset_all()
/f-stack/app/redis-5.0.5/deps/
H A DMakefile75 JEMALLOC_CFLAGS= -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops $(CFLAGS)
/f-stack/freebsd/netpfil/ipfw/
H A Ddn_sched_qfq.c244 NO(uint32_t loops;) /* debugging */
557 NO(q->loops++;) in qfq_dequeue()
662 NO(q->loops++;) in qfq_enqueue()
879 D("loops %d queued %d V 0x%llx", q->loops, q->queued, (_P64)q->V); in dump_sched()
/f-stack/freebsd/mips/nlm/
H A Dfiles.xlp26 …compile-with "${CC} -EB -march=mips32 -mabi=32 -msoft-float -I. -I$S -O3 -funroll-loops -fomit-fra…
/f-stack/app/nginx-1.16.1/auto/cc/
H A Dgcc106 CPU_OPT="$CPU_OPT -falign-loops=32 -falign-jumps=32"
/f-stack/dpdk/doc/guides/prog_guide/
H A Dservice_cores.rst45 lcore loops over the services that are enabled for that core, and invokes the
H A Devent_timer_adapter.rst299 applications to use existing event processing loops to arm and cancel event
/f-stack/freebsd/netinet/
H A Dip_mroute.c2198 uint32_t loops; in bw_meter_process() local
2206 loops = now.tv_sec - V_last_tv_sec; in bw_meter_process()
2208 if (loops > BW_METER_BUCKETS) in bw_meter_process()
2209 loops = BW_METER_BUCKETS; in bw_meter_process()
2217 for (i = (now.tv_sec - loops) % BW_METER_BUCKETS; loops > 0; loops--) { in bw_meter_process()
/f-stack/freebsd/netgraph/
H A DNOTES85 to watch out for infinite feedback loops. Should ng_base.c detect
/f-stack/freebsd/contrib/device-tree/Bindings/clock/
H A Dqoriq-clock.txt5 multiple phase locked loops (PLL) to create a variety of frequencies
/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A Djemalloc_internal_defs.h.in32 * Hyper-threaded CPUs may need a special instruction inside spin loops in
/f-stack/freebsd/contrib/zstd/programs/
H A DMakefile48 ALIGN_LOOP = -falign-loops=32
/f-stack/dpdk/doc/guides/nics/
H A Dvirtio.rst119 One thread loops to fetch packets from the physical NIC port into the kni receive queue.
120 The other user thread loops to send packets in the kni transmit queue.
/f-stack/app/redis-5.0.5/src/
H A Daof.c703 long loops = 0; in loadAppendOnlyFile() local
761 if (!(loops++ % 1000)) { in loadAppendOnlyFile()
/f-stack/freebsd/arm/arm/
H A Dpmap-v6.c5825 int loops = 0; in pmap_page_exists_quick() local
5837 loops++; in pmap_page_exists_quick()
5838 if (loops >= 16) in pmap_page_exists_quick()
5841 if (!rv && loops < 16 && (m->flags & PG_FICTITIOUS) == 0) { in pmap_page_exists_quick()
5848 loops++; in pmap_page_exists_quick()
5849 if (loops >= 16) in pmap_page_exists_quick()
/f-stack/freebsd/i386/i386/
H A Dpmap.c4656 int loops = 0; in __CONCAT() local
4668 loops++; in __CONCAT()
4669 if (loops >= 16) in __CONCAT()
4672 if (!rv && loops < 16 && (m->flags & PG_FICTITIOUS) == 0) { in __CONCAT()
4679 loops++; in __CONCAT()
4680 if (loops >= 16) in __CONCAT()
/f-stack/freebsd/mips/mips/
H A Dpmap.c2792 int loops = 0; in pmap_page_exists_quick() local
2804 loops++; in pmap_page_exists_quick()
2805 if (loops >= 16) in pmap_page_exists_quick()

12