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

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libpam/libpam/
pam_debug_log.c 55 const char *modname, *period; local
62 period = strchr(modname, '.');
63 if (period == NULL)
64 period = strchr(modname, '\0');
70 pam_error(pamh, "%.*s: %s: %s\n", (int)(ssize_t)(period - modname),
  /src/sys/dev/wscons/
wsbelldata.h 42 (dstp)->period = ((srcp)->which & WSKBD_BELL_DOPERIOD) ? \
43 (srcp)->period : (dfltp)->period; \
wsbellvar.h 36 u_int period; member in struct:vbell_args
  /src/external/gpl3/gdb.old/dist/gdbsupport/
run-time-clock.h 30 using period = duration::period;
45 using period = duration::period;
61 using period = duration::period;
  /src/external/gpl3/gdb/dist/gdbsupport/
run-time-clock.h 30 using period = duration::period;
45 using period = duration::period;
88 using period = duration::period;
  /src/external/gpl3/gdb/dist/gnulib/import/
str-two-way.h 83 *PERIOD to the global period of the right half.
85 The global period of a string is the smallest index (possibly its
89 When NEEDLE is factored into two halves, a local period is the
92 non-empty NEEDLE have a local period of at least 1 and no greater
95 A critical factorization has the property that the local period
96 equals the global period. All strings have at least one critical
97 factorization with the left half smaller than the global period.
109 size_t *period)
114 size_t k; /* Offset into current period. *
240 size_t period; \/* The period of the right half of needle. *\/ local
334 size_t period; \/* The period of the right half of needle. *\/ local
    [all...]
  /src/external/gpl3/gdb.old/dist/gnulib/import/
str-two-way.h 83 *PERIOD to the global period of the right half.
85 The global period of a string is the smallest index (possibly its
89 When NEEDLE is factored into two halves, a local period is the
92 non-empty NEEDLE have a local period of at least 1 and no greater
95 A critical factorization has the property that the local period
96 equals the global period. All strings have at least one critical
97 factorization with the left half smaller than the global period.
109 size_t *period)
114 size_t k; /* Offset into current period. *
240 size_t period; \/* The period of the right half of needle. *\/ local
334 size_t period; \/* The period of the right half of needle. *\/ local
    [all...]
  /src/sys/sys/
wdog.h 51 unsigned int wm_period; /* timer period (seconds) */
106 /* Period is expressed in seconds. */
107 #define WDOG_PERIOD_TO_TICKS(period) ((period) * hz)
  /src/sys/altq/
altq_fifoq.h 47 u_int period; member in struct:fifoq_state::__anon850
62 u_int period; member in struct:fifoq_getstats
  /src/sys/arch/arm/footbridge/isa/
sysbeep_isa.c 70 sysbeep(int pitch, int period)
73 pcppi_bell(ppicookie, pitch, period, 0);
  /src/sys/arch/prep/isa/
isabeep.c 75 isabeep(int pitch, int period)
79 pcppi_bell(ppicookie, pitch, period, 0);
  /src/sys/arch/arm/amlogic/
meson_pwm.c 127 u_int period, duty, clk_div, hi, lo; local
157 period = period_hz * 1000000000ULL / sc->sc_clkfreq;
161 conf->period = period;
181 u_int period, duty, clk_div, hi, lo; local
186 period = conf->period;
188 if (period == 0)
190 KASSERT(period >= duty);
192 duty = period - duty
291 const u_int period = be32toh(pwm[2]); local
    [all...]
  /src/sys/arch/arm/gemini/
gemini_wdtvar.h 53 void geminiwdt_set_timeout(unsigned int period);
  /src/sys/dev/pwm/
pwmvar.h 38 u_int period; /* nanoseconds */ member in struct:pwm_config
pwm.c 59 if (conf->period < conf->duty_cycle)
  /src/sys/arch/sandpoint/isa/
isaclock.c 161 sysbeep(int pitch, int period)
175 if (pitch == 0 || period == 0) {
191 callout_reset(&sysbeep_ch, period, sysbeepstop, NULL);
  /src/sys/arch/arm/rockchip/
rk_pwm.c 100 const u_int period = be32toh(pwm[2]); local
103 sc->sc_conf.period = period;
139 uint32_t ctrl, period, duty;
143 period = PWM_READ(sc, PWM0_PERIOD_HPR);
158 conf->period = (u_int)(((uint64_t)period * 1000000000) / rate);
174 const uint32_t period = (u_int)((conf->period * rate) / 1000000000); local
187 PWM_WRITE(sc, PWM0_PERIOD_HPR, period);
    [all...]
  /src/sbin/wdogctl/
wdogctl.c 86 u_int period = WDOG_PERIOD_DEFAULT; local
123 period = (unsigned int)tmp;
161 enable_ext(argv[0], period);
164 enable_kernel(argv[0], period);
168 enable_user(argv[0], period, command == CMD_USER_TICKLE);
175 prep_wmode(struct wdog_mode *wp, int mode, const char *name, u_int period)
182 wp->wm_period = period;
188 enable_kernel(const char *name, u_int period)
193 prep_wmode(&wm, WDOG_MODE_KTICKLE, name, period);
206 enable_ext(const char *name, u_int period)
    [all...]
  /src/sys/arch/arm/nxp/
imx6_pwm.c 63 const u_int period = be32toh(pwm[2]); local
65 sc->sc_conf.period = period;
68 sc->sc_conf.period = polarity ? PWM_ACTIVE_LOW : PWM_ACTIVE_HIGH;
  /src/sys/dev/scsipi/
scsi_base.c 141 int period, freq, speed, mbs; local
151 period = scsipi_sync_factor_to_period(periph->periph_period);
153 period / 100, period % 100, periph->periph_offset);
199 int lun, announce, mode, period, offset; local
212 period = xm->xm_period;
215 period = 0;
225 periph->periph_period != period ||
230 periph->periph_period = period;
  /src/sys/external/bsd/drm2/linux/
linux_hrtimer.c 156 hrtimer_forward(struct hrtimer *hrt, ktime_t now, ktime_t period)
168 period_ms = ktime_to_ms(period);
185 hrtimer_forward_now(struct hrtimer *hrt, ktime_t period)
188 return hrtimer_forward(hrt, ktime_get(), period);
  /src/sys/arch/x86/pci/
rdcpcib.c 272 unsigned int period; local
278 period = smw->smw_period * RDC_WDT0_FREQ;
279 if (period < 1 ||
280 period > RDC_WDT0_PERIOD_MAX)
282 period = period - 1;
288 rdc_ind_write(sc, RDC_WDT0_CNTL, (period >> 0) & 0xff);
289 rdc_ind_write(sc, RDC_WDT0_CNTH, (period >> 8) & 0xff);
290 rdc_ind_write(sc, RDC_WDT0_CNTU, (period >> 16) & 0xff);
  /src/sys/arch/alpha/isa/
isa_machdep.c 98 isabeep(int pitch, int period)
102 pcppi_bell(ppicookie, pitch, period, 0);
  /src/external/bsd/flex/dist/examples/manual/
front.y 22 %token PERIOD
52 sentence : verb_phrase noun_phrase position_phrase adverb period
97 period : /* empty */ label
98 | PERIOD
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
compatibility-chrono.cc 59 typedef duration::period period; typedef in struct:chrono::system_clock

Completed in 45 milliseconds

1 2 3 4 5 6 7 8 91011>>