/linux-4.1.27/arch/metag/lib/ |
H A D | ashldi3.S | 13 CMP D1Ar3,#0 ! COUNT == 0 16 SUBS D0Ar4,D1Ar3,#32 ! N = COUNT - 32 21 LSL D1Re0,D1Re0,D1Ar3 ! HI = HI << COUNT 22 LSR D0Ar6,D0Re0,D0Ar4 ! TMP= LO >> -(COUNT - 32) 25 LSL D0Re0,D0Re0,D0Ar4 ! LO = LO << COUNT
|
H A D | ashrdi3.S | 13 CMP D1Ar3,#0 ! COUNT == 0 17 SUBS D1Ar3,D1Ar3,#32 ! N = COUNT - 32 22 LSR D0Re0,D0Re0,D0Ar4 ! LO = LO >> COUNT 23 LSL D0Ar6,D1Re0,D1Ar3 ! TMP= HI << -(COUNT - 32) 26 ASR D1Re0,D1Re0,D1Ar3 ! HI = HI >> COUNT
|
H A D | lshrdi3.S | 13 CMP D1Ar3,#0 ! COUNT == 0 17 SUBS D1Ar3,D1Ar3,#32 ! N = COUNT - 32 22 LSR D0Re0,D0Re0,D0Ar4 ! LO = LO >> COUNT 23 LSL D0Ar6,D1Re0,D1Ar3 ! TMP= HI << -(COUNT - 32) 26 LSR D1Re0,D1Re0,D1Ar3 ! HI = HI >> COUNT
|
/linux-4.1.27/tools/usb/ |
H A D | hcd-tests.sh | 31 declare -i COUNT BUFLEN 33 COUNT=50000 50 if ! ./testusb $TEST_ARGS -s $BUFLEN -c $COUNT $* 2>/dev/null 94 COUNT=5000 97 # FIXME automatically multiply COUNT by 10 when 100 # COUNT=50000 125 echo "test 1: $COUNT transfers, same size" 127 echo "test 3: $COUNT transfers, variable/short size" 130 COUNT=100 131 echo "test 17: $COUNT transfers, unaligned DMA map by core" 134 echo "test 19: $COUNT transfers, unaligned DMA map by usb_alloc_coherent" 137 COUNT=2000 138 echo "test 5: $COUNT scatterlists, same size entries" 142 echo "test 7a: $COUNT scatterlists, variable size/short entries" 145 echo "test 7b: $COUNT scatterlists, variable size/bigger entries" 148 echo "test 7c: $COUNT scatterlists, variable size/micro entries" 161 COUNT=1000 163 # COUNT=10000 165 echo "test 15: $COUNT transfers, same size" 173 COUNT=100 174 echo "test 22: $COUNT transfers, non aligned" 186 echo "test 2: $COUNT transfers, same size" 188 echo "test 4: $COUNT transfers, variable size" 191 COUNT=100 192 echo "test 18: $COUNT transfers, unaligned DMA map by core" 195 echo "test 20: $COUNT transfers, unaligned DMA map by usb_alloc_coherent" 198 COUNT=2000 199 echo "test 6: $COUNT scatterlists, same size entries" 201 echo "test 8: $COUNT scatterlists, variable size entries" 214 COUNT=1000 216 # COUNT=10000 218 echo "test 16: $COUNT transfers, same size" 226 COUNT=100 227 echo "test 23: $COUNT transfers, unaligned" 237 COUNT=2000 238 echo "test 13: $COUNT halt set/clear" 243 COUNT=2000 244 echo "test 11: $COUNT read unlinks" 247 echo "test 12: $COUNT write unlinks" 254 COUNT=32 256 # modprobe g_zero qlen=$COUNT buflen=$BUFLEN loopdefault 261 echo "write $COUNT buffers of $BUFLEN bytes, read them back" 263 echo "write $COUNT variable size buffers, read them back"
|
/linux-4.1.27/samples/pktgen/ |
H A D | pktgen.conf-1-2 | 39 # COUNT 0 means forever 40 #COUNT="count 0" 41 COUNT="count 10000000" 46 pgset "$COUNT" 55 pgset "$COUNT"
|
H A D | pktgen.conf-1-1 | 37 # COUNT 0 means forever 38 #COUNT="count 0" 39 COUNT="count 10000000" 44 pgset "$COUNT"
|
H A D | pktgen.conf-1-1-flows | 38 # COUNT 0 means forever 39 #COUNT="count 0" 40 COUNT="count 10000000" 45 pgset "$COUNT"
|
H A D | pktgen.conf-1-1-ip6 | 38 # COUNT 0 means forever 39 #COUNT="count 0" 40 COUNT="count 10000000" 45 pgset "$COUNT"
|
H A D | pktgen.conf-1-1-ip6-rdos | 40 # COUNT 0 means forever 41 #COUNT="count 0" 42 COUNT="count 10000000" 47 pgset "$COUNT"
|
H A D | pktgen.conf-1-1-rdos | 39 # COUNT 0 means forever 40 #COUNT="count 0" 41 COUNT="count 10000000" 46 pgset "$COUNT"
|
H A D | pktgen.conf-2-2 | 43 # COUNT 0 means forever 44 #COUNT="count 0" 45 COUNT="count 10000000" 50 pgset "$COUNT" 59 pgset "$COUNT"
|
H A D | pktgen.conf-2-1 | 44 # COUNT 0 means forever 45 #COUNT="count 0" 46 COUNT="count 10000000" 51 pgset "$COUNT"
|
/linux-4.1.27/arch/avr32/lib/ |
H A D | delay.c | 25 *timer_value = sysreg_read(COUNT); read_current_timer() 33 bclock = sysreg_read(COUNT); __delay() 35 now = sysreg_read(COUNT); __delay()
|
/linux-4.1.27/tools/nfsd/ |
H A D | inject_fault.sh | 37 COUNT=0 39 COUNT=$2 45 echo $COUNT > $DEBUGDIR/$1
|
/linux-4.1.27/arch/avr32/kernel/ |
H A D | time.c | 24 return (cycle_t)sysreg_read(COUNT); read_cycle_count() 30 * measured by COUNT (and COMPARE) don't happen during sleep states. 32 * So we rate the clocksource using COUNT as very low quality. 73 /* The time to read COUNT then update COMPARE must be less comparator_next_event() 76 sysreg_write(COMPARE, (sysreg_read(COUNT) + delta) ? : 1); comparator_next_event() 92 * If we're using the COUNT and COMPARE registers we comparator_mode()
|
/linux-4.1.27/arch/alpha/lib/ |
H A D | strncpy.S | 5 * Copy no more than COUNT bytes of the null-terminated string from 6 * SRC to DST. If SRC does not cover all of COUNT, the balance is 37 or $4, $27, $4 # written byte and the last byte in COUNT
|
H A D | strncat.S | 5 * Append no more than COUNT characters from the null-terminated string SRC
|
H A D | ev67-strncat.S | 5 * Append no more than COUNT characters from the null-terminated string SRC
|
H A D | ev6-stxncpy.S | 5 * Copy no more than COUNT bytes of the null-terminated string from 16 * a2 = COUNT 18 * Furthermore, COUNT may not be zero. 23 * the end of the range specified by COUNT 26 * a2 = the number of full words left in COUNT
|
H A D | stxncpy.S | 5 * Copy no more than COUNT bytes of the null-terminated string from 16 * a2 = COUNT 18 * Furthermore, COUNT may not be zero. 23 * the end of the range specified by COUNT 26 * a2 = the number of full words left in COUNT
|
/linux-4.1.27/arch/arm/mach-ebsa110/ |
H A D | core.c | 154 #define COUNT ((CLKBY7 + (HZ / 2)) / HZ) macro 170 * If count > COUNT, make the number negative. ebsa110_gettimeoffset() 172 if (count > COUNT) ebsa110_gettimeoffset() 175 offset = COUNT; ebsa110_gettimeoffset() 182 offset = offset * (1000000 / HZ) / COUNT; ebsa110_gettimeoffset() 197 count += COUNT; ebsa110_timer_interrupt() 224 __raw_writeb(COUNT & 0xff, PIT_T1); ebsa110_timer_init() 225 __raw_writeb(COUNT >> 8, PIT_T1); ebsa110_timer_init()
|
/linux-4.1.27/drivers/clocksource/ |
H A D | timer-digicolor.c | 51 #define COUNT(t) ((t)*8 + 4) macro 87 writel(count, dt->base + COUNT(dt->timer_id)); dc_timer_set_count() 145 return ~readl(dc_timer_dev.base + COUNT(TIMER_B)); digicolor_timer_sched_read() 180 writel(UINT_MAX, dc_timer_dev.base + COUNT(TIMER_B)); digicolor_timer_init() 184 clocksource_mmio_init(dc_timer_dev.base + COUNT(TIMER_B), node->name, digicolor_timer_init()
|
H A D | fsl_ftm_timer.c | 115 * Reset clears the CNT register. Writing any value to COUNT ftm_reset_counter()
|
/linux-4.1.27/arch/tile/lib/ |
H A D | strnlen_32.c | 37 /* Read COUNT bytes and didn't find the terminator. */ strnlen()
|
H A D | strnlen_64.c | 38 /* Read COUNT bytes and didn't find the terminator. */ strnlen()
|
/linux-4.1.27/tools/perf/scripts/python/ |
H A D | net_dropmonitor.py | 52 print "%25s %25s %25s" % ("LOCATION", "OFFSET", "COUNT")
|
/linux-4.1.27/arch/arm/mach-spear/ |
H A D | time.c | 42 #define COUNT(x) ((x) * 0x80 + 0x8C) macro 94 clocksource_mmio_init(gpt_base + COUNT(CLKSRC), "tmr1", tick_rate, spear_clocksource_init()
|
/linux-4.1.27/arch/alpha/include/asm/ |
H A D | string.h | 65 aligned values. The DEST and COUNT parameters must be even for
|
/linux-4.1.27/arch/parisc/lib/ |
H A D | io.c | 123 * Read COUNT 8-bit bytes from port PORT into memory starting at 160 * Read COUNT 16-bit words from port PORT into memory starting at 233 * Read COUNT 32-bit words from port PORT into memory starting at
|
/linux-4.1.27/arch/alpha/kernel/ |
H A D | io.c | 211 * Read COUNT 8-bit bytes from port PORT into memory starting at SRC. 250 * Read COUNT 16-bit words from port PORT into memory starting at 291 * Read COUNT 32-bit words from port PORT into memory starting at
|
/linux-4.1.27/arch/arm/kernel/ |
H A D | dma-isa.c | 36 /* MASK MODE CLRFF PAGE_HI PAGE_LO ADDR COUNT */
|
/linux-4.1.27/include/linux/ |
H A D | ioc4.h | 20 #define IOC4_EXTINT_COUNT_DIVISOR 520 /* PCI clocks per COUNT tick */
|
/linux-4.1.27/arch/tile/include/arch/ |
H A D | mpipe.h | 291 * is COUNT+RING_IDX (masked by the ring size). 310 * (after having been set by HW or SW), the COUNT will be cleared.
|
/linux-4.1.27/drivers/misc/ |
H A D | ioc4.c | 128 #define IOC4_INT_OUT_MODE_TOGGLE 0x7 /* Toggle INT_OUT every COUNT+1 ticks */ 137 * register COUNT field, UART divisors, etc). Since this information is
|
/linux-4.1.27/arch/x86/kernel/ |
H A D | head_64.S | 445 #define PMDS(START, PERM, COUNT) \ 447 .rept (COUNT) ; \
|
/linux-4.1.27/drivers/usb/host/ |
H A D | fotg210.h | 173 # define COUNT(x) ((x)++) macro 175 # define COUNT(x) macro
|
H A D | ehci-hcd.c | 731 COUNT (ehci->stats.normal); ehci_irq() 733 COUNT (ehci->stats.error); ehci_irq() 757 COUNT(ehci->stats.iaa); ehci_irq()
|
H A D | ehci-timer.c | 358 COUNT(ehci->stats.lost_iaa); ehci_iaa_watchdog()
|
H A D | ehci.h | 246 # define COUNT(x) do { (x)++; } while (0) macro 248 # define COUNT(x) do {} while (0) macro
|
H A D | fusbh200.h | 171 # define COUNT(x) do { (x)++; } while (0) macro
|
H A D | ehci-q.c | 257 COUNT(ehci->stats.unlink); ehci_urb_done() 262 COUNT(ehci->stats.complete); ehci_urb_done()
|
H A D | fotg210-hcd.c | 1340 COUNT(fotg210->stats.lost_iaa); fotg210_iaa_watchdog() 2313 COUNT(fotg210->stats.unlink); 2318 COUNT(fotg210->stats.complete); 5394 COUNT(fotg210->stats.normal); fotg210_irq() 5396 COUNT(fotg210->stats.error); fotg210_irq() 5421 COUNT(fotg210->stats.iaa); fotg210_irq()
|
H A D | fusbh200-hcd.c | 1301 COUNT(fusbh200->stats.lost_iaa); fusbh200_iaa_watchdog() 2265 COUNT(fusbh200->stats.unlink); 2270 COUNT(fusbh200->stats.complete); 5304 COUNT (fusbh200->stats.normal); fusbh200_irq() 5306 COUNT (fusbh200->stats.error); fusbh200_irq() 5330 COUNT(fusbh200->stats.iaa); fusbh200_irq()
|
/linux-4.1.27/include/linux/mfd/da9052/ |
H A D | reg.h | 167 /* RTC COUNT REGISTERS */ 589 /* LED COUNT REGISTER BIT */
|
/linux-4.1.27/arch/sparc/kernel/ |
H A D | ptrace_32.c | 304 * FPU QUEUE COUNT (8-bit char)
|
H A D | ptrace_64.c | 821 * FPU QUEUE COUNT (8-bit char)
|
/linux-4.1.27/drivers/media/i2c/ |
H A D | saa711x_regs.h | 232 /* REG COUNT NAME */
|
/linux-4.1.27/arch/mips/cavium-octeon/executive/ |
H A D | cvmx-helper-sgmii.c | 69 * Write PCS*_LINK*_TIMER_COUNT_REG[COUNT] with the __cvmx_helper_sgmii_hardware_init_one_time()
|
/linux-4.1.27/drivers/media/platform/omap3isp/ |
H A D | ispcsi2.c | 713 * in the CSI2_CTx_CTRL1::COUNT field, so reenable it. csi2_isr_ctx() 717 * writes to memory (the CSI2_CTx_CTRL1::COUNT field is decreased csi2_isr_ctx()
|
/linux-4.1.27/drivers/staging/media/omap4iss/ |
H A D | iss_csi2.c | 716 * in the CSI2_CTx_CTRL1::COUNT field, so reenable it. csi2_isr_ctx() 720 * writes to memory (the CSI2_CTx_CTRL1::COUNT field is decreased csi2_isr_ctx()
|
/linux-4.1.27/drivers/hid/ |
H A D | hid-logitech-dj.c | 152 0x95, 0x05, /* REPORT COUNT (5) */ 159 0x95, 0x01, /* REPORT COUNT (1) */
|
/linux-4.1.27/drivers/target/ |
H A D | target_core_xcopy.c | 962 * MAXIMUM TARGET DESCRIPTOR COUNT target_rcr_operating_parameters() 966 * MAXIMUM SEGMENT DESCRIPTOR COUNT target_rcr_operating_parameters()
|
H A D | target_core_spc.c | 549 * Set MAXIMUM UNMAP LBA COUNT spc_emulate_evpd_b0() 554 * Set MAXIMUM UNMAP BLOCK DESCRIPTOR COUNT spc_emulate_evpd_b0()
|
H A D | target_core_alua.c | 220 * TARGET PORT COUNT target_emulate_report_target_port_groups()
|
/linux-4.1.27/drivers/s390/char/ |
H A D | sclp_vt220.c | 390 * Internal implementation of the write function. Write COUNT bytes of data
|
/linux-4.1.27/arch/x86/kvm/ |
H A D | i8254.c | 225 /* TODO: Return NULL COUNT (bit 6). */ pit_latch_status()
|
/linux-4.1.27/drivers/acpi/acpica/ |
H A D | rsmisc.c | 250 * been previously initialized via a COUNT opcode acpi_rs_convert_aml_to_resource()
|
/linux-4.1.27/drivers/net/ethernet/8390/ |
H A D | lib8390.c | 87 Write the COUNT bytes of BUF to the packet buffer at START_PAGE. The 93 Read COUNT bytes from the packet buffer into the skb data area. Start
|
H A D | axnet_cs.c | 797 Write the COUNT bytes of BUF to the packet buffer at START_PAGE. The 803 Read COUNT bytes from the packet buffer into the skb data area. Start
|
/linux-4.1.27/fs/ |
H A D | binfmt_elf.c | 1495 * array of [COUNT] elements of 1499 * followed by COUNT filenames in ASCII: "FILE1" NUL "FILE2" NUL...
|
/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
H A D | debug.c | 345 "TOTAL COUNT", read_file_antenna_diversity()
|
/linux-4.1.27/drivers/media/rc/ |
H A D | nuvoton-cir.c | 195 pr_info(" * FIFO COUNT: 0x%x\n", cir_wake_dump_regs()
|
/linux-4.1.27/drivers/net/fddi/skfp/ |
H A D | pmf.c | 444 * SET COUNT in set smt_build_pmf_response()
|
/linux-4.1.27/drivers/scsi/isci/ |
H A D | phy.c | 246 writel(SCU_ENSPINUP_GEN_VAL(COUNT, sci_phy_link_layer_initialization()
|
/linux-4.1.27/drivers/tty/serial/jsm/ |
H A D | jsm_neo.c | 322 * EXAR chip bug - RX FIFO COUNT - Fudge factor. neo_copy_data_from_uart_to_queue()
|
/linux-4.1.27/arch/blackfin/kernel/ |
H A D | debug-mmrs.c | 404 __PPI(COUNT, count); bfin_debug_mmrs_ppi()
|
/linux-4.1.27/drivers/media/platform/s5p-mfc/ |
H A D | s5p_mfc_opr_v6.c | 438 mfc_debug(2, "Total DPB COUNT: %d\n", ctx->total_dpb_count); s5p_mfc_set_dec_frame_buffer_v6()
|
/linux-4.1.27/drivers/net/fddi/skfp/h/ |
H A D | skfbi.h | 1124 #define COUNT(t) ((t)<<6) /* counter */ macro
|
/linux-4.1.27/drivers/staging/dgnc/ |
H A D | dgnc_neo.c | 1143 * EXAR chip bug - RX FIFO COUNT - Fudge factor. neo_copy_data_from_uart_to_queue()
|
/linux-4.1.27/sound/pci/ice1712/ |
H A D | ice1724.c | 551 unsigned int count; /* COUNT register offset */
|
/linux-4.1.27/drivers/net/bonding/ |
H A D | bond_3ad.c | 220 * Get the aggregator selection mode. Can be %STABLE, %BANDWIDTH or %COUNT.
|
/linux-4.1.27/arch/mips/kvm/ |
H A D | emulate.c | 1098 /* Are we writing to COUNT */ kvm_mips_emulate_CP0()
|
/linux-4.1.27/tools/power/x86/turbostat/ |
H A D | turbostat.c | 307 outp += sprintf(outp, " COUNT 0x%03X", extra_delta_offset64); print_header()
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
H A D | ctxnv50.c | 1000 dd_emit(ctx, 1, 0x12); /* 000000ff FP_INTERPOLANT_CTRL.COUNT */ nv50_gr_construct_mmio_ddata()
|
/linux-4.1.27/arch/ia64/include/asm/sn/ |
H A D | shubio.h | 1356 * recovery after an error. COUNT controls the total number of CRBs *
|