Searched refs:period (Results 26 - 50 of 186) sorted by relevance

12345678

/freebsd-11-stable/sys/dev/sound/pci/
H A Dhdspe.c248 long long period; local
254 sc->period = 32;
266 period = HDSPE_FREQ_AIO;
273 period /= sc->speed;
274 hdspe_write_4(sc, HDSPE_FREQ_REG, period);
/freebsd-11-stable/sys/arm/allwinner/
H A Dtimer.c99 sbintime_t first, sbintime_t period);
236 sbintime_t period)
244 if (period != 0)
245 sc->sc_period = ((uint32_t)et->et_frequency * period) >> 32;
258 if (period != 0) {
311 * Now we will set periodic timer with the given period
235 a10_timer_timer_start(struct eventtimer *et, sbintime_t first, sbintime_t period) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseInit.cpp30 case tok::period: // designator: '.' identifier
191 while (Tok.is(tok::period) || Tok.is(tok::l_square)) {
192 if (Tok.is(tok::period)) {
242 NextToken().isNot(tok::period) &&
281 NextToken().is(tok::period), ReceiverType)) {
/freebsd-11-stable/sys/dev/ct/
H A Dct.c288 u_int base, i, period; local
302 period = (base * i) / 2;
303 if (period >= 200) /* 5 MHz */
305 sdp->cs_period = period / 4;
312 period = (base * i);
313 if (period > 500) /* 2 MHz */
315 sdp->cs_period = period / 4;
419 ti->ti_maxsynch.period = ct->sc_sdp[0].cs_period;
535 u_int offset, period; local
552 period
[all...]
/freebsd-11-stable/sys/dev/esp/
H A Dncr53c9x.c176 int period);
319 * (timeout period) x (CLK frequency)
668 ti->curr.period = ti->goal.period = 0;
677 ti->curr.period = 0;
733 ncr53c9x_stp2cpb(struct ncr53c9x_softc *sc, int period) argument
739 v = (sc->sc_freq * period) / 250;
740 if (ncr53c9x_cpb2stp(sc, v) < period)
756 synctp = ncr53c9x_stp2cpb(sc, ti->curr.period);
759 * If the period i
[all...]
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dtick.c94 sbintime_t period);
353 tick_et_start(struct eventtimer *et, sbintime_t first, sbintime_t period) argument
358 if (period != 0)
359 div = (tick_et.et_frequency * period) >> 32;
/freebsd-11-stable/sys/arm/freescale/imx/
H A Dimx_epit.c85 * In theory our minimum period is 1 tick, because to setup a oneshot we don't
103 uint32_t period; member in struct:epit_softc
230 epit_et_start(struct eventtimer *et, sbintime_t first, sbintime_t period) argument
244 if (period != 0) {
246 ticks = ((uint32_t)et->et_frequency * period) >> 32;
286 * status since a short period would make it fire again really soon.
H A Dimx_gpt.c263 * and use that to set the minimum eventtimer period we can schedule. In
295 imx_gpt_timer_start(struct eventtimer *et, sbintime_t first, sbintime_t period) argument
302 if (period != 0) {
303 sc->sc_period = ((uint32_t)et->et_frequency * period) >> 32;
/freebsd-11-stable/usr.sbin/ppp/
H A Dmp.h105 int period; /* link->throughput sample period */ member in struct:mp::__anon8878::__anon8879
H A Dthroughput.c48 throughput_init(struct pppThroughput *t, int period) argument
51 t->SamplePeriod = period;
53 calloc(period, sizeof *t->in.SampleOctets);
56 calloc(period, sizeof *t->out.SampleOctets);
/freebsd-11-stable/sys/mips/nlm/
H A Dtick.c225 clock_start(struct eventtimer *et, sbintime_t first, sbintime_t period) argument
229 if (period != 0)
230 div = (et->et_frequency * period) >> 32;
/freebsd-11-stable/sys/mips/rmi/
H A Dtick.c222 clock_start(struct eventtimer *et, sbintime_t first, sbintime_t period) argument
226 if (period != 0)
227 div = (et->et_frequency * period) >> 32;
/freebsd-11-stable/sys/dev/stg/
H A Dtmc18c30.c258 ti->ti_maxsynch.period = 0;
348 u_int period, offset; local
363 period = ti->ti_maxsynch.period;
365 period = period << 2;
366 if (period >= 200)
368 sti->sti_reg_synch = (period - 200) / 50;
369 if (period % 50)
373 else if (period >
[all...]
/freebsd-11-stable/sys/dev/aic/
H A Daic.c194 ti->goal.period = spi->sync_period;
196 if (ti->goal.period > aic->min_period) {
197 ti->goal.period = 0;
199 } else if (ti->goal.period < aic->max_period)
200 ti->goal.period = aic->max_period;
206 ti->goal.period = 0;
211 if ((ti->goal.period != ti->current.period)
241 spi->sync_period = ti->current.period;
244 spi->sync_period = ti->user.period;
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_tc.c580 * kick started and uses the timecounter nominal frequency as a first period
598 cest.period = ((1ULL << 63) / tc->tc_frequency) << 1;
623 ffclock_convert_delta(ffcounter ffdelta, uint64_t period, struct bintime *bt) argument
636 bt2.frac = period;
676 ffclock_convert_delta(ffdelta, cest->period, &bt);
692 ffclock_convert_delta(ffdelta, cest->period, &bt);
703 * synchronisation algo polling period that ensures monotonicity for the
710 ffclock_convert_delta(ffdelta, cest->period, &bt);
753 ffth->period_lerp = cest->period;
756 * Compute corrected period use
1149 uint64_t period; local
[all...]
/freebsd-11-stable/sys/arm/mv/
H A Dtimer.c113 sbintime_t first, sbintime_t period);
440 mv_timer_start(struct eventtimer *et, sbintime_t first, sbintime_t period) argument
447 if (period != 0)
448 val = ((uint32_t)sc->et.et_frequency * period) >> 32;
461 if (period != 0)
/freebsd-11-stable/sys/dev/cx/
H A Dcxddk.c270 int clock, period; local
279 cx_clock (c->oscfreq, c->rxbaud, &clock, &period);
282 outb (RBPR(c->port), period);
291 cx_clock (c->oscfreq, c->txbaud, &clock, &period);
294 outb (TBPR(c->port), period);
716 int clock, period; local
758 cx_clock (c->oscfreq, c->rxbaud, &clock, &period);
761 outb (RBPR(c->port), period);
764 cx_clock (c->oscfreq, c->txbaud, &clock, &period);
768 outb (TBPR(c->port), period);
[all...]
/freebsd-11-stable/sys/dev/aic7xxx/
H A Daic7xxx.c124 /* ultra2 fast/ultra period rate */
158 u_int *period,
175 u_int period, u_int offset);
181 u_int period, u_int offset,
1347 /*period*/0, /*offset*/0,
1646 * this function finds the nearest syncrate to the input period limited
1653 u_int *period, u_int *ppr_options, role_t role)
1674 * period otherwise we may allow a target initiated
1691 if (transinfo->period == 0) {
1692 *period
1651 ahc_devlimited_syncrate(struct ahc_softc *ahc, struct ahc_initiator_tinfo *tinfo, u_int *period, u_int *ppr_options, role_t role) argument
1706 ahc_find_syncrate(struct ahc_softc *ahc, u_int *period, u_int *ppr_options, u_int maxsync) argument
1908 ahc_set_syncrate(struct ahc_softc *ahc, struct ahc_devinfo *devinfo, struct ahc_syncrate *syncrate, u_int period, u_int offset, u_int ppr_options, u_int type, int paused) argument
2388 u_int period; local
2473 ahc_construct_sdtr(struct ahc_softc *ahc, struct ahc_devinfo *devinfo, u_int period, u_int offset) argument
2516 ahc_construct_ppr(struct ahc_softc *ahc, struct ahc_devinfo *devinfo, u_int period, u_int offset, u_int bus_width, u_int ppr_options) argument
3134 u_int period; local
3309 u_int period; local
[all...]
/freebsd-11-stable/sys/mips/mips/
H A Dtick.c224 clock_start(struct eventtimer *et, sbintime_t first, sbintime_t period) argument
228 if (period != 0) {
229 div = (et->et_frequency * period) >> 32;
/freebsd-11-stable/sys/arm/ti/am335x/
H A Dam335x_dmtimer.c93 am335x_dmtimer_et_start(struct eventtimer *et, sbintime_t first, sbintime_t period) argument
117 if (period != 0) {
118 reload_count = ((uint32_t)et->et_frequency * period) >> 32;
/freebsd-11-stable/usr.sbin/lpr/common_source/
H A Dmatchjobs.c213 char *atsign, *colon, *lhside, *numstr, *period, *rhside; local
276 period = strchr(lhside, '.');
277 if ((atsign == NULL) && (period != NULL))
/freebsd-11-stable/sys/arm/arm/
H A Dmpcore_timer.c168 * @period: the period (in seconds and fractional sections) to set
170 * If the eventtimer is required to be in oneshot mode, period will be
172 * period will contain the time period and first may optionally contain
173 * the time for the first period.
179 arm_tmr_start(struct eventtimer *et, sbintime_t first, sbintime_t period) argument
191 if (period != 0) {
192 load = ((uint32_t)et->et_frequency * period) >> 32;
340 * and max period value
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DTokenConcatenation.cpp75 TokenInfo[tok::period ] |= aci_custom_firstchar;
267 case tok::period: // ..., .*, .1234
268 return (FirstChar == '.' && PrevPrevTok.is(tok::period)) ||
/freebsd-11-stable/sys/dev/ncv/
H A Dncr53c500.c453 u_int hwcycle, period; local
468 period = ti->ti_maxsynch.period;
472 if (period < 200 / 4 && period >= 100 / 4)
477 period = ((period * 40 / hwcycle) + 5) / 10;
478 nti->nti_reg_period = period & 0x1f;
498 ti->ti_maxsynch.period = sc->sc_hw.hw_mperiod;
/freebsd-11-stable/sys/contrib/ncsw/inc/Peripherals/
H A Dfm_rtc_ext.h171 @Description Configures the period of the timestamp if different than
175 @Param[in] period - Period in nano-seconds.
181 t_Error FM_RTC_ConfigPeriod(t_Handle h_FmRtc, uint32_t period);
351 the RTC period */
363 a multiple of the RTC period */

Completed in 189 milliseconds

12345678