Searched refs:tick (Results 1 - 25 of 92) sorted by relevance

1234

/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/
H A Dpariscid.pl135 my ($tick,$lasttick)=("%r23","%r22");
146 mfctl %cr16,$tick
147 copy $tick,$lasttick
151 ldw 0($out),$tick
152 add $diff,$tick,$tick
153 stw $tick,0($out)
155 mfctl %cr16,$tick
156 sub $tick,$lasttick,$diff
157 copy $tick,
[all...]
/netbsd-6-1-5-RELEASE/sbin/newfs_v7fs/
H A Dnewfs_v7fs.h39 off_t tick; member in struct:progress_arg
/netbsd-6-1-5-RELEASE/crypto/dist/ipsec-tools/src/racoon/
H A Dschedule.c134 sched_schedule(sc, tick, func)
136 time_t tick;
147 sc->tick.tv_sec = tick;
148 sc->tick.tv_usec = 0;
150 timeradd(&now, &sc->tick, &sc->xtime);
211 timersub(&p->xtime, &p->tick, &created);
215 dst->tick = p->tick.tv_sec;
242 test(tick)
252 int *tick; local
[all...]
H A Dschedule.h73 struct timeval tick; /* relative timeout */ member in struct:sched
84 time_t tick; member in struct:scheddump
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dkernel.h56 extern int tick; /* usec per tick (1000000 / hz) */
57 extern int tickadj; /* "standard" clock skew, us./tick */
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dsubr_time.c73 * ticks, rounding up and adding 1 to allow for the current tick
108 ticks = (((sec * 1000000) + (unsigned long)usec + (tick - 1))
109 / tick) + 1;
112 (((unsigned long)usec + (tick - 1)) / tick) + 1;
172 if (tv->tv_sec == 0 && tv->tv_usec != 0 && tv->tv_usec < tick)
173 tv->tv_usec = tick;
183 if (ts->tv_sec == 0 && ts->tv_nsec != 0 && ts->tv_nsec < tick * 1000)
184 ts->tv_nsec = tick * 1000;
/netbsd-6-1-5-RELEASE/sys/arch/luna68k/luna68k/
H A Dclock.c75 tick = 1000000 / hz; /* number of microseconds between interrupts */
/netbsd-6-1-5-RELEASE/sys/arch/news68k/news68k/
H A Dclock.c83 tick = 1000000 / hz;
/netbsd-6-1-5-RELEASE/sys/arch/hpcmips/hpcmips/
H A Dclock.c111 tick = 1000000 / hz;
/netbsd-6-1-5-RELEASE/usr.sbin/btpand/
H A Dchannel.c126 chan->tick = 0;
285 chan->tick = 0;
287 chan->tick = (channel_tick + to) % 60;
300 int tick; local
302 tick = (channel_tick % 60) + 1;
309 if (chan->tick == tick)
311 else if (chan->tick != 0)
312 channel_tick = tick;
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/sparc/
H A Drdpr.s7 rdpr %tick,%g5
H A Dwrpr.s7 wrpr %g5,%tick
H A Dwrpr.d14 10: 89 91 40 00 wrpr %g5, %tick
H A Drdpr.d14 10: 8b 51 00 00 rdpr %tick, %g5
/netbsd-6-1-5-RELEASE/sys/arch/mvme68k/mvme68k/
H A Dclock.c111 tick = 1000000 / hz;
129 (*clock_args->ca_initfunc)(clock_args->ca_arg, tick, statint);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/util/
H A Dtickadj.c4 * tickadj - read, and possibly modify, the kernel `tick' and
51 fprintf(stderr, "Silly value for tick: %s\n", argv[1]);
79 "%s: unlikely value for tick: %s\n",
87 "Usage: %s [tick_value]\n-or- %s [ -q ] [ -t tick ] [ -a tickadj ]\n",
99 printf("tick = %ld\ntick_adj = %d\n",
122 if ( (txc.tick = atoi(argv[1])) < 1 )
125 fprintf(stderr, "Silly value for tick: %s\n", argv[1]);
158 printf("tick = %ld\ntick_adj = %ld\n", txc.time_tick, txc.tickadj);
160 printf("tick = %ld\n", txc.tick);
253 int tick, ktick; /* HMS: Why isn't this u_long? */ local
[all...]
H A Dkern.c42 int tick; /* timer interrupt period (us) */ variable
58 long time_adj = 0; /* tick adjust (scaled 1 / HZ) */
77 tick = 1000000 / HZ;
83 printf("tick %d us, fixtick %d us\n", tick, fixtick);
159 time_update = tick; /* computed by adjtime() */
178 * per tick, or 25.6 ms/s at a clock frequency of 100 Hz. The time
/netbsd-6-1-5-RELEASE/sys/arch/pmax/pmax/
H A Dclock.c123 tick = 1000000 / hz; /* number of microseconds between interrupts */
/netbsd-6-1-5-RELEASE/sbin/fsck_v7fs/
H A Dfsck_v7fs.h49 off_t tick; member in struct:progress_arg
H A Dmain.c201 if (Progress.tick) {
213 if (!Progress.tick)
215 if (++Progress.cnt > Progress.tick) {
/netbsd-6-1-5-RELEASE/sys/arch/mips/sibyte/dev/
H A Dsbtimer.c154 tick = 1000000 / hz;
161 WRITE_REG(sc->sc_addr_icnt, (tick/100) - 1); /* XXX */
163 WRITE_REG(sc->sc_addr_icnt, tick - 1); /* XXX */
/netbsd-6-1-5-RELEASE/usr.sbin/makefs/
H A Dv7fs.c180 if (!Progress.tick)
182 if (++Progress.cnt > Progress.tick) {
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/tune/
H A Dsparcv9.asm25 C Get the sparc v9 tick counter.
29 rd %tick,%g1
/netbsd-6-1-5-RELEASE/sys/rump/librump/rumpkern/
H A Dlocks.c355 struct timespec ts, tick; local
367 tick.tv_sec = ticks / hz;
368 tick.tv_nsec = (ticks % hz) * (1000000000/hz);
369 timespecadd(&ts, &tick, &ts);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tests/
H A Dtimer_test.c48 tick(isc_task_t *task, isc_event_t *event) { function
53 printf("task %s (%p) tick\n", name, task);
144 &interval, t1, tick, "1", &ti1) ==

Completed in 263 milliseconds

1234