HomeSort by: relevance | last modified time | path
    Searched defs:msec (Results 1 - 25 of 39) sorted by relevancy

1 2

  /src/usr.sbin/timed/timed/
acksend.c 92 long msec; local in function:acksend
103 msec = 200;
116 mstotvround(&twait, msec);
128 msec *= 2;
acksend.c 92 long msec; local in function:acksend
103 msec = 200;
116 mstotvround(&twait, msec);
128 msec *= 2;
acksend.c 92 long msec; local in function:acksend
103 msec = 200;
116 mstotvround(&twait, msec);
128 msec *= 2;
  /src/sys/arch/x68k/include/
kbio.h 60 int msec; member in struct:kbiocbell
opmbellio.h 74 int msec; member in struct:bell_info
kbio.h 60 int msec; member in struct:kbiocbell
opmbellio.h 74 int msec; member in struct:bell_info
kbio.h 60 int msec; member in struct:kbiocbell
opmbellio.h 74 int msec; member in struct:bell_info
  /src/sys/arch/arm/nxp/
if_enet_imx.c 235 u_int msec; local in function:enet_phy_reset
243 if (of_getprop_uint32(phandle, "phy-reset-duration", &msec))
244 msec = 1;
248 delay(msec * 1000);
252 if (of_getprop_uint32(phandle, "phy-reset-post-delay", &msec))
253 msec = 0;
255 delay(msec * 1000);
if_enet_imx.c 235 u_int msec; local in function:enet_phy_reset
243 if (of_getprop_uint32(phandle, "phy-reset-duration", &msec))
244 msec = 1;
248 delay(msec * 1000);
252 if (of_getprop_uint32(phandle, "phy-reset-post-delay", &msec))
253 msec = 0;
255 delay(msec * 1000);
if_enet_imx.c 235 u_int msec; local in function:enet_phy_reset
243 if (of_getprop_uint32(phandle, "phy-reset-duration", &msec))
244 msec = 1;
248 delay(msec * 1000);
252 if (of_getprop_uint32(phandle, "phy-reset-post-delay", &msec))
253 msec = 0;
255 delay(msec * 1000);
  /src/sys/arch/amiga/dev/
iteioctl.h 54 u_int msec; /* duration of bell */ member in struct:itebell
iteioctl.h 54 u_int msec; /* duration of bell */ member in struct:itebell
iteioctl.h 54 u_int msec; /* duration of bell */ member in struct:itebell
  /src/sys/arch/atari/dev/
iteioctl.h 61 u_int msec; /* duration of bell */ member in struct:itebell
iteioctl.h 61 u_int msec; /* duration of bell */ member in struct:itebell
iteioctl.h 61 u_int msec; /* duration of bell */ member in struct:itebell
  /src/sys/arch/x68k/dev/
opmbell.c 85 u_int msec; member in struct:bell_softc
152 sc->msec = BELL_DURATION;
206 bp->msec = sc->msec;
434 if (sc->msec != 0) {
440 ticks = bellmstohz(sc->msec);
488 data->volume > MAXBVOLUME || data->msec > MAXBTIME) {
493 sc->msec = data->msec;
opmbell.c 85 u_int msec; member in struct:bell_softc
152 sc->msec = BELL_DURATION;
206 bp->msec = sc->msec;
434 if (sc->msec != 0) {
440 ticks = bellmstohz(sc->msec);
488 data->volume > MAXBVOLUME || data->msec > MAXBTIME) {
493 sc->msec = data->msec;
opmbell.c 85 u_int msec; member in struct:bell_softc
152 sc->msec = BELL_DURATION;
206 bp->msec = sc->msec;
434 if (sc->msec != 0) {
440 ticks = bellmstohz(sc->msec);
488 data->volume > MAXBVOLUME || data->msec > MAXBTIME) {
493 sc->msec = data->msec;
  /src/lib/libc/rpc/
clnt_bcast.c 294 int msec; local in function:rpc_broadcast_exp
451 for (msec = inittime; msec <= waittime; msec += msec) {
526 ts.tv_sec = msec / 1000;
527 ts.tv_nsec = (msec % 1000) * 1000000;
clnt_bcast.c 294 int msec; local in function:rpc_broadcast_exp
451 for (msec = inittime; msec <= waittime; msec += msec) {
526 ts.tv_sec = msec / 1000;
527 ts.tv_nsec = (msec % 1000) * 1000000;
clnt_bcast.c 294 int msec; local in function:rpc_broadcast_exp
451 for (msec = inittime; msec <= waittime; msec += msec) {
526 ts.tv_sec = msec / 1000;
527 ts.tv_nsec = (msec % 1000) * 1000000;
  /src/lib/librumpuser/
rumpfiber.c 488 uint64_t msec; local in function:rumpuser_clock_sleep
494 msec = sec * 1000 + nsec / (1000*1000UL);
495 msleep(msec);
498 msec = sec * 1000 + nsec / (1000*1000UL);
499 abssleep(msec);
596 wait(struct waithead *wh, uint64_t msec)
604 if (msec)
605 w.who->wakeup_time = now() + msec;

Completed in 64 milliseconds

1 2