Symbol: stamp
sys/dev/disk/ncr/ncr.c
1607
NADDR (header.stamp.select),
sys/dev/disk/ncr/ncr.c
1789
NADDR (header.stamp.command),
sys/dev/disk/ncr/ncr.c
1811
NADDR (header.stamp.status),
sys/dev/disk/ncr/ncr.c
2116
NADDR (header.stamp.disconnect),
sys/dev/disk/ncr/ncr.c
2942
*p++ =NADDR (header.stamp.data);
sys/dev/disk/ncr/ncr.c
2966
*p++ =NADDR (header.stamp.data);
sys/dev/disk/ncr/ncr.c
3919
bzero (&cp->phys.header.stamp, sizeof (struct tstamp));
sys/dev/disk/ncr/ncr.c
3920
cp->phys.header.stamp.start = ticks;
sys/dev/disk/ncr/ncr.c
6854
#define PROFILE cp->phys.header.stamp
sys/dev/disk/ncr/ncr.c
731
struct tstamp stamp;
sys/dev/drm/include/linux/ww_mutex.h
49
volatile u_long stamp;
sys/dev/drm/include/linux/ww_mutex.h
54
u_long stamp;
sys/dev/drm/include/linux/ww_mutex.h
63
u_long stamp; /* heuristic */
sys/dev/drm/include/linux/ww_mutex.h
70
.stamp = 0, \
sys/dev/drm/include/uapi/drm/drm_sarea.h
60
unsigned int stamp;
sys/dev/drm/linux_wwmutex.c
118
ww->stamp = ctx->stamp;
sys/dev/drm/linux_wwmutex.c
140
if (ctx->stamp > ww->stamp)
sys/dev/drm/linux_wwmutex.c
198
ww->stamp = 0xFFFFFFFFFFFFFFFFLU;
sys/dev/drm/linux_wwmutex.c
44
ctx->stamp = atomic_fetchadd_long(&ww_class->stamp, 1);
sys/dev/drm/linux_wwmutex.c
64
ww->stamp = 0xFFFFFFFFFFFFFFFFLU;
sys/dev/raid/hpt27xx/array.h
98
HPT_U32 stamp;
sys/dev/raid/hpt27xx/hpt27xx_os_bsd.c
220
HPT_U32 stamp;
sys/dev/raid/hpt27xx/hpt27xx_os_bsd.c
221
do { stamp = krandom(); } while (stamp==0);
sys/dev/raid/hpt27xx/hpt27xx_os_bsd.c
222
return stamp;
sys/dev/raid/hpt27xx/ldm.h
451
PVDEV ldm_find_stamp(PVBUS vbus, HPT_U32 stamp, int seq);
sys/dev/raid/hptmv/entry.c
2551
ULONG stamp;
sys/dev/raid/hptmv/entry.c
2552
do { stamp = krandom(); } while (stamp==0);
sys/dev/raid/hptmv/entry.c
2553
return stamp;
sys/dev/raid/hptrr/array.h
100
HPT_U32 stamp;
sys/dev/raid/hptrr/hptrr_os_bsd.c
202
HPT_U32 stamp;
sys/dev/raid/hptrr/hptrr_os_bsd.c
203
do { stamp = krandom(); } while (stamp==0);
sys/dev/raid/hptrr/hptrr_os_bsd.c
204
return stamp;
sys/dev/raid/hptrr/ldm.h
446
PVDEV ldm_find_stamp(PVBUS vbus, HPT_U32 stamp, int seq);
usr.bin/script/script.c
341
struct stamp stamp;
usr.bin/script/script.c
345
stamp.scr_len = cc;
usr.bin/script/script.c
346
stamp.scr_sec = tv.tv_sec;
usr.bin/script/script.c
347
stamp.scr_usec = tv.tv_usec;
usr.bin/script/script.c
348
stamp.scr_direction = direction;
usr.bin/script/script.c
349
iov[0].iov_len = sizeof(stamp);
usr.bin/script/script.c
350
iov[0].iov_base = &stamp;
usr.bin/script/script.c
376
#define swapstamp(stamp) do { \
usr.bin/script/script.c
377
if (stamp.scr_direction > 0xff) { \
usr.bin/script/script.c
378
stamp.scr_len = bswap64(stamp.scr_len); \
usr.bin/script/script.c
379
stamp.scr_sec = bswap64(stamp.scr_sec); \
usr.bin/script/script.c
380
stamp.scr_usec = bswap32(stamp.scr_usec); \
usr.bin/script/script.c
381
stamp.scr_direction = bswap32(stamp.scr_direction); \
usr.bin/script/script.c
389
struct stamp stamp;
usr.bin/script/script.c
403
if (fread(&stamp, sizeof(stamp), 1, fp) != 1) {
usr.bin/script/script.c
409
swapstamp(stamp);
usr.bin/script/script.c
410
save_len = sizeof(stamp);
usr.bin/script/script.c
412
if (reg && stamp.scr_len >
usr.bin/script/script.c
416
save_len += stamp.scr_len;
usr.bin/script/script.c
417
tclock = stamp.scr_sec;
usr.bin/script/script.c
418
tso.tv_sec = stamp.scr_sec;
usr.bin/script/script.c
419
tso.tv_nsec = stamp.scr_usec * 1000;
usr.bin/script/script.c
421
switch (stamp.scr_direction) {
usr.bin/script/script.c
427
consume(fp, stamp.scr_len, buf, reg);
usr.bin/script/script.c
433
consume(fp, stamp.scr_len, buf, reg);
usr.bin/script/script.c
437
consume(fp, stamp.scr_len, buf, reg);
usr.bin/script/script.c
449
while (stamp.scr_len > 0) {
usr.bin/script/script.c
450
l = MIN(DEF_BUF, stamp.scr_len);
usr.bin/script/script.c
455
stamp.scr_len -= l;