HomeSort by: relevance | last modified time | path
    Searched refs:burst (Results 1 - 25 of 45) sorted by relevancy

1 2

  /src/games/trek/
torped.c 51 ** are fired, it is called a "burst" and you also specify
79 int burst; local
98 burst = -1;
100 /* need at least three torpedoes for a burst */
102 printf("No-burst mode selected\n");
103 burst = 0;
109 burst = 1;
112 if (burst < 0) {
113 burst = getynpar("Do you want a burst");
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/
nouveau_dispnv04_arb.c 43 int burst; member in struct:nv_fifo_info
108 fifo->burst = cbs;
122 * to the CRTC FIFO burst. (ns) */
174 /* FIFO burst */
176 /* Max burst not leading to overflows. */
179 fifo->burst = min(max_burst_o, 1024);
181 /* Max burst value with an acceptable latency. */
183 fifo->burst = min(max_burst_l, fifo->burst);
185 fifo->burst = rounddown_pow_of_two(fifo->burst)
    [all...]
  /src/sys/arch/amiga/dev/
parioctl.h 39 int burst; /* chars to send/recv in one call */ member in struct:parparam
par.c 64 #define sc_burst sc_param.burst
286 printf("parrw(%llx, %p, %c): burst %d, timo %d, resid %x\n",
457 upp->burst = pp->burst;
465 if (upp->burst < PAR_BURST_MIN || upp->burst > PAR_BURST_MAX ||
468 pp->burst = upp->burst;
  /src/sys/arch/hp300/dev/
ppiioctl.h 39 int burst; /* chars to send/recv in one call */ member in struct:ppiparam
ppi.c 92 #define sc_burst sc_param.burst
313 printf("ppirw(%"PRIx64", %p, %c): burst %d, timo %d, resid %x\n",
464 upp->burst = pp->burst;
471 if (upp->burst < PPI_BURST_MIN || upp->burst > PPI_BURST_MAX ||
474 pp->burst = upp->burst;
  /src/sys/arch/x68k/include/
parioctl.h 41 int burst; /* chars to send/recv in one call */ member in struct:parparam
  /src/sys/dev/gpib/
ppiio.h 39 int burst; /* chars to send/recv in one call */ member in struct:ppiparam
ppi.c 94 #define sc_burst sc_param.burst
303 ("ppirw(%" PRIx64 ", %p, %c): burst %d, timo %d, resid %x\n",
444 upp->burst = pp->burst;
451 if (upp->burst < PPI_BURST_MIN || upp->burst > PPI_BURST_MAX ||
454 pp->burst = upp->burst;
  /src/external/mpl/bind/dist/bin/tests/system/rrl/
tests.sh 74 burst() { function
91 ARGS="+burst +nocookie +continue +time=1 +tries=1 -p ${PORT} $* @$ns2 $DOMS"
175 burst 5 a1.tld3 +norec
177 burst 3 a1.tld2
180 burst 10 a1.tld2
182 burst 30 'y.x$CNT.a2.tld2'
197 burst 10 'x.a3.tld3'
198 burst 10 'y$CNT.a3.tld3'
199 burst 10 'z$CNT.a4.tld2'
219 burst 10 a5.tld2 +tc
    [all...]
  /src/sys/dev/sbus/
dma_sbus.c 130 int sbusburst, burst; local
153 * Get transfer burst size from PROM and plug it into the
161 burst = prom_getpropint(node,"burst-sizes", -1);
162 if (burst == -1)
163 /* take SBus burst sizes */
164 burst = sbusburst;
166 /* Clamp at parent's burst sizes */
167 burst &= sbusburst;
168 sc->sc_burst = (burst & SBUS_BURST_32) ? 32
    [all...]
if_hme_sbus.c 88 uint32_t burst, sbusburst; local
164 * Get transfer burst size from PROM and pass it on
171 burst = prom_getpropint(node, "burst-sizes", -1);
172 if (burst == -1)
173 /* take SBus burst sizes */
174 burst = sbusburst;
176 /* Clamp at parent's burst sizes */
177 burst &= sbusburst;
180 sc->sc_burst = (burst & SBUS_BURST_32) ? 32
    [all...]
qec.c 152 * Get transfer burst size from PROM
158 sc->sc_burst = prom_getpropint(node, "burst-sizes", -1);
160 /* take SBus burst sizes */
163 /* Clamp at parent's burst sizes */
258 uint32_t v, burst = 0, psize; local
285 burst = QEC_CTRL_B64;
287 burst = QEC_CTRL_B32;
289 burst = QEC_CTRL_B16;
292 v = (v & QEC_CTRL_MODEMASK) | burst;
esp_sbus.c 157 int burst, sbusburst; local
224 * Get transfer burst size from PROM and plug it into the
232 burst = prom_getpropint(sa->sa_node, "burst-sizes", -1);
235 aprint_normal("%s: burst 0x%x, sbus 0x%x\n",
236 __func__, burst, sbusburst);
240 if (burst == -1)
241 /* take SBus burst sizes */
242 burst = sbusburst;
244 /* Clamp at parent's burst sizes *
    [all...]
bpp.c 161 int burst, sbusburst; local
183 * Get transfer burst size from PROM and plug it into the
191 burst = prom_getpropint(node, "burst-sizes", -1);
192 if (burst == -1)
193 /* take SBus burst sizes */
194 burst = sbusburst;
196 /* Clamp at parent's burst sizes */
197 burst &= sbusburst;
198 sc->sc_burst = (burst & SBUS_BURST_32) ? 32
    [all...]
  /src/sys/external/bsd/drm2/include/linux/
ratelimit.h 72 ratelimit_state_init(struct ratelimit_state *r, int interval, int burst)
76 r->rl_maxpps = burst/(interval/hz);
  /src/external/mpl/bind/dist/bin/tests/system/fetchlimit/
tests.sh 35 burst() { function
38 rm -f burst.input.$$
42 # burst with duplicate queries
43 echo "${2}${3}.lamesub.example A" >>burst.input.$$
45 # burst with unique queries
46 echo "${num}${2}${3}.lamesub.example A" >>burst.input.$$
49 $PERL ../ditch.pl -p ${PORT} -s ${server} -b ${EXTRAPORT8} burst.input.$$
50 rm -f burst.input.$$
82 burst 10.53.0.3 a $try
127 burst 10.53.0.3 b $tr
    [all...]
  /src/sys/arch/x68k/dev/
par.c 68 #define sc_burst sc_param.burst
426 upp->burst = pp->burst;
434 if (upp->burst < PAR_BURST_MIN || upp->burst > PAR_BURST_MAX ||
437 pp->burst = upp->burst;
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_tv.c 62 u8 burst; member in struct:video_levels
200 .blank = 225, .black = 267, .burst = 113,
210 .blank = 266, .black = 316, .burst = 133,
220 .blank = 225, .black = 225, .burst = 113,
230 .blank = 266, .black = 266, .burst = 133,
240 .blank = 237, .black = 237, .burst = 118,
250 .blank = 280, .black = 280, .burst = 139,
260 .blank = 225, .black = 267, .burst = 113,
270 .blank = 266, .black = 316, .burst = 133,
280 .blank = 225, .black = 267, .burst = 118
    [all...]
  /src/sys/dev/ic/
tpm.c 101 int burst, to, rv; local
107 * Burst count is in bits 23:8, so read the two higher bytes.
109 burst = bus_space_read_1(sc->sc_bt, sc->sc_bh, TPM_STS + 1);
110 burst |= bus_space_read_1(sc->sc_bt, sc->sc_bh, TPM_STS + 2)
113 if (burst)
114 return burst;
  /src/sys/external/bsd/drm2/dist/drm/via/
via_verifier.c 728 int burst = 0; local
741 (burst & 63), *buf++);
742 burst += 4;
762 (burst & 63), *buf++);
763 burst += 4;
774 "Attempt to access 3D- or command burst area.\n");
822 "Attempt to access 3D- or command burst area.\n");
  /src/external/bsd/ntp/dist/ntpd/
refclock_chronolog.c 330 if (peer->burst == 0 && peer->reach == 0)
ntp_proto.c 83 #define RESP_DELAY 1 /* refclock burst delay (s) */
490 if (peer->burst == 0) {
507 * burst if enabled.
520 * Here the peer is reachable. Send a burst if
562 peer->burst--;
563 if (peer->burst == 0) {
567 * set and all peers have completed the burst,
2336 peer->burst = peer->retry = 0;
2640 * First, if either burst mode is armed, enable the burst
    [all...]
ntp_refclock.c 377 if (peer->burst == 0) {
401 peer->burst = NSTAGE;
404 peer->burst--;
  /src/sys/dev/pci/
if_iwireg.h 492 uint16_t burst[WME_NUM_AC]; member in struct:iwi_wme_params

Completed in 65 milliseconds

1 2