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

12

/freebsd-10.1-release/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.1-release/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.1-release/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
1091 tosend = targ->g->burst;
1118 int m, limit = rate_limit ? tosend : targ->g->burst;
1241 pcap_dispatch(targ->g->p, targ->g->burst, receive_pcap,
1270 m = receive_packets(rxring, targ->g->burst, dump);
1360 "\t-b burst size testing, mostly\n"
1631 g.burst = 512; // default
1740 case 'b': /* burst */
1741 g.burst = atoi(optarg);
1945 * reducing the burst siz
[all...]
/freebsd-10.1-release/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.1-release/sys/netinet/
H A Dip_dummynet.h119 * XXX what about burst ?
124 uint64_t burst; /* scaled. bits*Hz XXX */ member in struct:dn_link
/freebsd-10.1-release/sys/netpfil/ipfw/
H A Dip_dn_io.c811 if (p->burst) {
812 uint64_t burst = (dn_cfg.curr_time - si->idle_time) * p->bandwidth; local
813 if (burst > p->burst)
814 burst = p->burst;
815 si->credit += burst;
H A Dip_dn_glue.c245 uint64_t burst; /* burst size, scaled: bits * hz */ member in struct:dn_pipe8
275 * add burst (int64_t)
452 /* FreeBSD 8 has burst */
453 p->burst = p8->burst;
638 pipe8->burst = div64(l->burst , 8 * hz);
H A Dip_dummynet.c538 si->credit = p->burst + (dn_cfg.io_fast ? p->bandwidth : 0);
812 /* Adjust burst parameter for link */
814 l->burst = div64(l->burst, 8 * hz);
1229 * burst ???
1232 /* Scale burst size: bytes -> bits * hz */
1233 p->burst *= 8 * hz;
1258 s->link.burst = p->burst;
/freebsd-10.1-release/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.1-release/sbin/ipfw/
H A Ddummynet.c78 { "burst", TOK_BURST},
353 char burst[5 + 7]; local
367 if (humanize_number(burst, sizeof(burst), p->burst,
369 sprintf(burst, "%d", (int)p->burst);
370 sprintf(buf, "%05d: %s %4d ms burst %s",
371 p->link_nr % DN_MAX_ID, bwbuf, p->delay, burst);
1129 NEED(p, "burst");
[all...]
/freebsd-10.1-release/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);
H A Dcvmx-mgmt-port.c966 agl_gmx_prtx.s.burst = 1;
976 agl_gmx_prtx.s.burst = 1;
987 agl_gmx_prtx.s.burst = agl_gmx_prtx.s.duplex;
/freebsd-10.1-release/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.1-release/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");
/freebsd-10.1-release/contrib/ntp/ntpd/
H A Drefclock_chronolog.c328 if (peer->burst == 0 && peer->reach == 0)
H A Dntp_refclock.c302 if (peer->burst == 0) {
326 peer->burst = NSTAGE;
329 peer->burst--;
H A Dntp_proto.c68 #define RESP_DELAY 1 /* refclock burst delay (s) */
440 if (peer->burst == 0) {
457 * burst if enabled.
470 * Here the peer is reachable. Send a burst if
512 peer->burst--;
513 if (peer->burst == 0) {
517 * set and all peers have completed the burst,
1915 peer->burst = peer->retry = 0;
2217 * First, if either burst mode is armed, enable the burst
[all...]
/freebsd-10.1-release/contrib/wpa/src/ap/
H A Dap_config.h143 int burst; /* maximum burst time in 0.1 ms, i.e., 10 = 1 ms */ member in struct:hostapd_tx_queue_params
/freebsd-10.1-release/sys/kern/
H A Dkern_poll.c103 SYSCTL_UINT(_kern_polling, OID_AUTO, burst, CTLFLAG_RD,
104 &poll_burst, 0, "Current polling burst size");
132 0, sizeof(uint32_t), poll_burst_max_sysctl, "I", "Max Polling burst size");
157 "Max size of each burst");
224 &residual_burst, 0, "# of residual cycles in burst");
347 * another NETISR_POLL call, or adapting the burst size for the next cycle.
350 * because the burst could take a long time to be completely processed, or
353 * time spent in network-related processing, we split the burst in smaller
404 * reduce the burst size to prevent that this happens again.
/freebsd-10.1-release/sys/dev/sound/sbus/
H A Dcs4231.c331 int burst; local
337 * No public documentation exists on programming burst size of APCDMA.
339 burst = sbus_get_burstsz(sc->sc_dev);
340 if ((burst & SBUS_BURST_64))
342 else if ((burst & SBUS_BURST_32))
344 else if ((burst & SBUS_BURST_16))
/freebsd-10.1-release/sys/dev/iwi/
H A Dif_iwireg.h478 uint16_t burst[WME_NUM_AC]; member in struct:iwi_wme_params
/freebsd-10.1-release/sys/netpfil/ipfw/test/
H A Dmain.c43 int burst; /* count of packets sent in a burst */ member in struct:cfg_s
399 } else if (!strcmp(*av, "-burst")) {
/freebsd-10.1-release/contrib/ntp/include/
H A Dntp.h347 int burst; /* packets remaining in burst */ member in struct:peer
456 #define FLAG_BURST 0x0040 /* burst mode */
458 #define FLAG_IBURST 0x0100 /* initial burst mode */

Completed in 576 milliseconds

12