| /src/usr.sbin/makefs/cd9660/ |
| cd9660_archimedes.c | 85 uint64_t stamp; local 104 stamp = riscos_date(node->node->inode->st.st_mtime); 107 cd9660_731(0xfff00000 | (type << 8) | (stamp >> 32), arc->loadaddr); 108 cd9660_731(stamp & 0x00ffffffffULL, arc->execaddr);
|
| /src/sys/dev/rasops/ |
| rasops15.c | 58 /* stamp for optimized character blitting */ 59 static uint32_t stamp[32]; variable 70 #define STAMP_READ(o) (*(uint32_t *)((uint8_t *)stamp + (o))) 128 * Recompute the 4x1 blitting stamp. 144 stamp[i] = (i & 16 ? fg : bg); 145 stamp[i] |= (i & 8 ? fg : bg) << 16; 146 stamp[i + 1] = (i & 4 ? fg : bg); 147 stamp[i + 1] |= (i & 2 ? fg : bg) << 16; 149 stamp[i] = (i & 8 ? fg : bg); 150 stamp[i] |= (i & 16 ? fg : bg) << 16 [all...] |
| rasops2.c | 64 /* stamp for optimized character blitting */ 65 static uint8_t stamp[16]; variable 75 #define STAMP_READ(o) stamp[o] 121 * Recompute the blitting stamp. 143 stamp[i] = (i & 8 ? fg : bg); 144 stamp[i] |= (i & 4 ? fg : bg) << 2; 145 stamp[i] |= (i & 2 ? fg : bg) << 4; 146 stamp[i] |= (i & 1 ? fg : bg) << 6; 149 stamp[i] = (i & 1 ? fg : bg); 150 stamp[i] |= (i & 2 ? fg : bg) << 2 [all...] |
| rasops32.c | 58 /* stamp for optimized character blitting */ 59 static uint32_t stamp[64]; variable 72 #define STAMP_READ(o) (*(uint32_t *)((uint8_t *)stamp + (o))) 129 * Recompute the blitting stamp. 144 stamp[i + 0] = i & 32 ? fg : bg; 145 stamp[i + 1] = i & 16 ? fg : bg; 146 stamp[i + 2] = i & 8 ? fg : bg; 147 stamp[i + 3] = i & 4 ? fg : bg;
|
| rasops4.c | 63 /* stamp for optimized character blitting */ 64 static uint16_t stamp[16]; variable 74 #define STAMP_READ(o) stamp[o] 115 * Recompute the blitting stamp. 137 stamp[i] = (i & 1 ? fg : bg) << 12; 138 stamp[i] |= (i & 2 ? fg : bg) << 8; 139 stamp[i] |= (i & 4 ? fg : bg) << 4; 140 stamp[i] |= (i & 8 ? fg : bg) << 0; 143 stamp[i] = (i & 1 ? fg : bg) << 0; 144 stamp[i] |= (i & 2 ? fg : bg) << 4 [all...] |
| rasops8.c | 58 /* stamp for optimized character blitting */ 59 static uint32_t stamp[16]; variable 69 #define STAMP_READ(o) (*(uint32_t *)((uint8_t *)stamp + (o))) 127 * Recompute the blitting stamp. 149 stamp[i] = (i & 8 ? fg : bg); 150 stamp[i] |= (i & 4 ? fg : bg) << 8; 151 stamp[i] |= (i & 2 ? fg : bg) << 16; 152 stamp[i] |= (i & 1 ? fg : bg) << 24; 155 stamp[i] = (i & 1 ? fg : bg); 156 stamp[i] |= (i & 2 ? fg : bg) << 8 [all...] |
| rasops24.c | 66 /* stamp for optimized character blitting */ 67 static uint32_t stamp[64]; variable 79 #define STAMP_READ(o) (*(uint32_t *)((uint8_t *)stamp + (o))) 160 * Recompute the blitting stamp. 186 rasops24_makestamp1(ri, &stamp[i], c1, c2, c3, c4);
|
| /src/sys/arch/luna68k/dev/ |
| timekeeper.c | 147 volatile uint8_t *stamp = (uint8_t *)sc->sc_nvram + 0x10; local 162 stamp[0] = 'R'; stamp[1] = 'T'; stamp[2] = 'C'; stamp[3] = '\0';
|
| /src/sys/external/bsd/drm/dist/shared-core/ |
| drm_sarea.h | 54 unsigned int stamp; member in struct:drm_sarea_drawable
|
| /src/sys/external/bsd/drm2/dist/include/uapi/drm/ |
| drm_sarea.h | 62 unsigned int stamp; member in struct:drm_sarea_drawable
|
| /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
| amdgpu_gmc.c | 297 uint64_t stamp, key = addr << 4 | pasid; local 302 stamp = max(timestamp, AMDGPU_GMC_FAULT_TIMEOUT + 1) - 304 if (gmc->fault_ring[gmc->last_fault].timestamp >= stamp) 310 while (fault->timestamp >= stamp) {
|
| /src/sys/kern/ |
| kern_heartbeat.c | 634 unsigned count, uptime, cache, stamp, d; local 677 stamp = 679 d = count - stamp; 765 db_printf("cpu%u: count %u uptime %u stamp %u suspend %u\n",
|
| /src/usr.sbin/veriexecgen/ |
| veriexecgen.c | 86 int stamp; /* put a timestamp */ member in struct:veriexecgen_t 401 if (vp->stamp) { 501 v.stamp = 1;
|
| /src/sbin/newfs_lfs/ |
| make_lfs.c | 420 time_t stamp; local 675 if (time(&stamp) == -1) 677 lfs_sb_settstamp(fs, stamp); 679 lfs_sb_setotstamp(fs, stamp); 970 /* Leave the time stamp on the alt sb, zero the rest */
|
| /src/sys/fs/nfs/client/ |
| nfsnode.h | 76 time_t stamp; /* mode cache timestamp */ member in struct:nfs_accesscache
|
| /src/sys/netinet/ |
| dccp_tcplike.c | 366 struct timeval stamp; local 367 microtime(&stamp); 368 cb->timestamp = ((stamp.tv_sec & 0x00000FFF) * 1000000) + stamp.tv_usec;
|
| /src/usr.bin/script/ |
| script.c | 69 struct stamp { struct 368 struct stamp stamp; local 372 stamp.scr_len = cc; 373 stamp.scr_sec = tv.tv_sec; 374 stamp.scr_usec = tv.tv_usec; 375 stamp.scr_direction = direction; 376 iov[0].iov_len = sizeof(stamp); 377 iov[0].iov_base = &stamp; 403 #define swapstamp(stamp) do { 442 struct stamp stamp; local [all...] |
| /src/sys/dev/audio/ |
| audiodef.h | 167 u_int stamp; /* number of transferred blocks */ member in struct:audio_track
|
| audio.c | 3033 u_int stamp; local 3145 stamp = track->stamp; 3151 ao->samples = stamp * track->usrbuf_blksize; 3152 ao->deltablks = stamp - track->last_stamp; 3157 track->last_stamp = stamp; 3173 stamp = track->stamp; 3179 ao->samples = stamp * track->usrbuf_blksize; 3180 ao->deltablks = stamp - track->last_stamp [all...] |
| /src/usr.sbin/dumplfs/ |
| dumplfs.c | 851 time_t stamp; local 928 stamp = lfs_sb_gettstamp(lfsp); 929 (void)printf(" tstamp %s", ctime(&stamp));
|