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

1 2 3

  /src/sys/dev/
spkrio.h 19 int duration; /* in 1/100ths of a second */ member in struct:__anon6cdf9c770108
spkr.c 173 * Play tone of proper duration for current rhythm signature.
555 * tp->duration is the length in tick (returns immediately if 0).
560 if (tp->duration <= 0)
564 rest(sc, tp->duration);
566 (*sc->sc_tone)(sc->sc_dev, tp->frequency, tp->duration);
595 if (ttp.duration == 0)
  /src/games/boggle/boggle/
timer.c 114 struct timespec duration; local in function:delay
116 duration.tv_nsec = (tenths % 10 ) * 100000000L;
117 duration.tv_sec = (long) (tenths / 10);
118 nanosleep(&duration, NULL);
  /src/sys/arch/atari/dev/
kbdreg.h 53 u_int duration; /* duration of bell */ member in struct:kbdbell
kbd.c 371 kb->duration);
624 kbd_bell_gparms(u_int *volume, u_int *pitch, u_int *duration)
629 *duration = (tmp * KBDBELLDURATION) / 1000;
638 kbd_bell_sparms(u_int volume, u_int pitch, u_int duration)
648 t = (duration * 1000) / KBDBELLDURATION;
918 kbd_bell(void *v, u_int pitch, u_int duration, u_int volume)
921 kbd_bell_sparms(volume, pitch, duration);
  /src/lib/libpthread/
thrd.c 150 thrd_sleep(const struct timespec *duration, struct timespec *remaining)
153 _DIAGASSERT(duration != NULL);
157 switch (clock_nanosleep(CLOCK_MONOTONIC, TIMER_RELTIME, duration,
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
rk3036-evb.dts 22 phy-reset-duration = <10>; /* millisecond */
imx53-kp-hsc.dts 29 reset-duration = <400>;
imx28-cfa10037.dts 62 phy-reset-duration = <100>;
imx51-apf51.dts 35 phy-reset-duration = <1>;
imx6qdl-sr-som.dtsi 59 * The PHY seems to require a long-enough reset duration to avoid
63 phy-reset-duration = <10>;
imx28-cfa10058.dts 127 phy-reset-duration = <100>;
imx6ul-imx6ull-opos6ul.dtsi 28 phy-reset-duration = <1>;
imx7d-mba7.dts 25 phy-reset-duration = <1>;
imx28-cfa10057.dts 160 phy-reset-duration = <100>;
imx28-duckbill-2.dts 132 phy-reset-duration = <25>;
imx28-duckbill.dts 117 phy-reset-duration = <25>;
imx6qdl-apf6.dtsi 30 phy-reset-duration = <10>;
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_engine_pm.c 104 static void duration(struct dma_fence *fence, struct dma_fence_cb *cb) function in typeref:typename:void
110 rq->duration.emitted));
207 * Use an interrupt for precise measurement of duration,
213 dma_fence_add_callback(&rq->fence, &rq->duration.cb, duration);
214 rq->duration.emitted = ktime_get();
  /src/sys/arch/x68k/usr.bin/bellctrl/
bellctrl.c 72 /* set duration to default */
85 /* set duration to default */
112 /* If duration is given */
187 set_bell_dur(int duration)
189 values.msec = duration;
249 fprintf(stderr, " To set bell volume, pitch and duration:\n");
  /src/sys/compat/linux/common/
linux_sg.h 86 unsigned int duration; member in struct:linux_sg_io_hdr
linux_sg.c 170 lreq.duration = req.timeout; /* XXX */
272 "host_status=%u, driver_status=%u, resid=%d, duration=%u, "
278 lr->host_status, lr->driver_status, lr->resid, lr->duration,
  /src/usr.bin/timeout/
timeout.c 66 " [--kill-after time | -k time] [--foreground] <duration> <command>"
73 parse_duration(const char *duration)
78 ret = strtod(duration, &end);
79 if (ret == 0 && end == duration)
80 errx(EXIT_FAILURE, "invalid duration");
86 errx(EX_USAGE, "invalid duration");
101 errx(EX_USAGE, "invalid duration");
105 errx(EX_USAGE, "invalid duration");
  /src/lib/libcurses/
tty.c 262 halfdelay(int duration)
264 if ((duration < 1) || (duration > 255))
270 if (duration > 255)
273 stdscr->delay = duration;
  /src/sys/dev/ic/
cacreg.h 218 u_int32_t duration; /* x100ms */ member in struct:cac_blink

Completed in 20 milliseconds

1 2 3