Searched refs:burst (Results 1 - 25 of 64) sorted by relevance

123

/freebsd-10-stable/sys/boot/usb/
H A Dbsd_busspace.c29 struct burst { struct
169 enum { BURST = sizeof(struct burst) / 4 };
174 *(struct burst *)datap = *((/* volatile */ struct burst *)h);
191 enum { BURST = sizeof(struct burst) / 4 };
196 *((/* volatile */ struct burst *)h) = *(struct burst *)datap;
/freebsd-10-stable/sys/dev/gem/
H A Dif_gem_sbus.c124 int burst; local
143 burst = sbus_get_burstsz(dev);
145 if ((burst & SBUS_BURST64_MASK) != 0) {
147 burst >>= SBUS_BURST64_SHIFT;
149 if ((burst & SBUS_BURST_64) != 0)
151 else if ((burst & SBUS_BURST_32) != 0)
154 device_printf(dev, "unsupported burst size\n");
/freebsd-10-stable/sys/gnu/dts/arm/
H A Domap3-n950-n9.dtsi132 gpmc,burst-length = <16>;
133 gpmc,burst-read;
134 gpmc,burst-wrap;
135 gpmc,burst-write;
151 gpmc,page-burst-access-ns = <15>;
H A Domap2420-h4.dts47 gpmc,page-burst-access-ns = <10>;
H A Domap-gpmc-smsc911x.dtsi42 gpmc,page-burst-access-ns = <20>;
H A Domap-gpmc-smsc9221.dtsi45 gpmc,page-burst-access-ns = <0>;
H A Domap2430-sdp.dts64 gpmc,page-burst-access-ns = <24>;
H A Dstih415.dtsi165 snps,mixed-burst;
186 snps,mixed-burst;
H A Domap-zoom-common.dtsi44 gpmc,page-burst-access-ns = <20>;
H A Domap3-sb-t35.dtsi126 gpmc,page-burst-access-ns = <20>;
H A Domap3-n900.dts643 gpmc,burst-length = <16>;
644 gpmc,burst-read;
645 gpmc,burst-wrap;
646 gpmc,burst-write;
662 gpmc,page-burst-access-ns = <15>;
725 gpmc,page-burst-access-ns = <0>;
H A Domap4-duovero-parlor.dts160 gpmc,page-burst-access-ns = <0>;
H A Domap3-lilly-a83x.dtsi375 gpmc,burst-length= <4>;
389 gpmc,page-burst-access-ns = <5>;
442 gpmc,page-burst-access-ns = <5>;
/freebsd-10-stable/tools/tools/netmap/
H A Dbridge.c146 "usage: bridge [-v] [-i ifa] [-i ifb] [-b burst] [-w wait_time] [iface]\n");
162 u_int burst = 1024, wait_link = 4; local
176 case 'b': /* burst */
177 burst = atoi(optarg);
209 burst = atoi(argv[3]);
216 if (burst < 1 || burst > 8192) {
217 D("invalid burst %d, set to 1024", burst);
218 burst
[all...]
H A Dpkt-gen.c170 int burst; member in struct:glob_arg
1119 tosend = targ->g->burst;
1146 int m, limit = rate_limit ? tosend : targ->g->burst;
1269 pcap_dispatch(targ->g->p, targ->g->burst, receive_pcap,
1298 m = receive_packets(rxring, targ->g->burst, dump);
1388 "\t-b burst size testing, mostly\n"
1660 g.burst = 512; // default
1769 case 'b': /* burst */
1770 g.burst = atoi(optarg);
1978 * reducing the burst siz
[all...]
/freebsd-10-stable/sys/dev/hme/
H A Dif_hme_sbus.c136 uint32_t burst; local
238 burst = sbus_get_burstsz(dev);
240 if ((burst & SBUS_BURST_64))
242 else if ((burst & SBUS_BURST_32))
244 else if ((burst & SBUS_BURST_16))
/freebsd-10-stable/sys/netinet/
H A Dip_dummynet.h129 * XXX what about burst ?
134 uint64_t burst; /* scaled. bits*Hz XXX */ member in struct:dn_link
/freebsd-10-stable/sys/dev/drm2/i915/
H A Dintel_tv.c92 int blank, black, burst; member in struct:video_levels
230 .blank = 225, .black = 267, .burst = 113,
240 .blank = 266, .black = 316, .burst = 133,
250 .blank = 225, .black = 225, .burst = 113,
260 .blank = 266, .black = 266, .burst = 133,
270 .blank = 237, .black = 237, .burst = 118,
280 .blank = 280, .black = 280, .burst = 139,
290 .blank = 225, .black = 267, .burst = 113,
300 .blank = 266, .black = 316, .burst = 133,
310 .blank = 225, .black = 267, .burst
[all...]
/freebsd-10-stable/sys/netpfil/ipfw/
H A Dip_dn_io.c898 if (p->burst) {
899 uint64_t burst = (dn_cfg.curr_time - si->idle_time) * p->bandwidth; local
900 if (burst > p->burst)
901 burst = p->burst;
902 si->credit += burst;
H A Dip_dn_glue.c248 uint64_t burst; /* burst size, scaled: bits * hz */ member in struct:dn_pipe8
278 * add burst (int64_t)
455 /* FreeBSD 8 has burst */
456 p->burst = p8->burst;
641 pipe8->burst = div64(l->burst , 8 * hz);
/freebsd-10-stable/sys/contrib/octeon-sdk/
H A Dcvmx-pko.c967 * @param burst Maximum number of packets to burst in a row before rate
972 int cvmx_pko_rate_limit_packets(int port, int packets_s, int burst) argument
987 ((uint64_t)pko_mem_port_rate0.s.rate_pkt * burst) >> 8;
1000 * @param burst Maximum number of bits to burst before rate
1005 int cvmx_pko_rate_limit_bits(int port, uint64_t bits_s, int burst) argument
1023 pko_mem_port_rate1.s.rate_lim = tokens_per_bit * burst / 256;
H A Dcvmx-pko.h671 * @param burst Maximum number of packets to burst in a row before rate
676 extern int cvmx_pko_rate_limit_packets(int port, int packets_s, int burst);
684 * @param burst Maximum number of bits to burst before rate
689 extern int cvmx_pko_rate_limit_bits(int port, uint64_t bits_s, int burst);
/freebsd-10-stable/sys/dev/tpm/
H A Dtpm.c117 #define TPM_STS_BMASK 0x00ffff00 /* ro io burst size */
591 int burst, to, rv; local
595 burst = 0;
596 while (burst == 0 && to--) {
602 burst = bus_space_read_1(sc->sc_bt, sc->sc_bh, TPM_STS + 1);
603 burst |= bus_space_read_1(sc->sc_bt, sc->sc_bh, TPM_STS + 2)
606 printf("tpm_getburst: read %d\n", burst);
608 if (burst)
609 return burst;
959 printf("tpm_tis12_read: fetching %d, burst i
[all...]
/freebsd-10-stable/sbin/ipfw/
H A Ddummynet.c97 { "burst", TOK_BURST},
618 char burst[5 + 7]; local
632 if (humanize_number(burst, sizeof(burst), p->burst,
634 sprintf(burst, "%d", (int)p->burst);
635 sprintf(buf, "%05d: %s %4d ms burst %s",
636 p->link_nr % DN_MAX_ID, bwbuf, p->delay, burst);
1707 NEED(p, "burst");
[all...]
/freebsd-10-stable/sys/dev/drm/
H A Dvia_verifier.c722 int burst = 0; local
735 (burst & 63), *buf++);
736 burst += 4;
756 (burst & 63), *buf++);
757 burst += 4;
768 "Attempt to access 3D- or command burst area.\n");
816 "Attempt to access 3D- or command burst area.\n");

Completed in 173 milliseconds

123