HomeSort by: relevance | last modified time | path
    Searched defs:stamp (Results 1 - 22 of 22) sorted by relevancy

  /src/usr.sbin/makefs/cd9660/
cd9660_archimedes.c 85 uint64_t stamp; local in function:archimedes_convert_node
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 in typeref:typename:uint32_t[32]
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 in typeref:typename:uint8_t[16]
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 in typeref:typename:uint32_t[64]
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 in typeref:typename:uint16_t[16]
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 in typeref:typename:uint32_t[16]
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 in typeref:typename:uint32_t[64]
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 in function:mkclock_set
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/games/phantasia/
Makefile 29 CLEANFILES+=map mkdata setup.lo host_phantglobs.lo ${ALLFILES} files.stamp
33 ${FILES}: files.stamp
34 files.stamp: mkdata monsters.asc
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_gmc.c 297 uint64_t stamp, key = addr << 4 | pasid; local in function:amdgpu_gmc_filter_faults
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/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/sys/kern/
kern_heartbeat.c 633 unsigned count, uptime, cache, stamp, d; local in function:heartbeat
676 stamp =
678 d = count - stamp;
764 db_printf("cpu%u: count %u uptime %u stamp %u suspend %u\n",
  /src/tools/compat/
Makefile 71 CLEANFILES+= config.log config.status configure.lineno *.stamp
87 config.cache: include/.stamp configure nbtool_config.h.in defs.mk.in
108 include/.stamp:
  /src/sbin/newfs_lfs/
make_lfs.c 420 time_t stamp; local in function:make_lfs
675 if (time(&stamp) == -1)
677 lfs_sb_settstamp(fs, stamp);
679 lfs_sb_setotstamp(fs, stamp);
983 /* 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 in function:tcplike_send_packet
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 in function:record
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 in function:playback
    [all...]
  /src/sys/dev/audio/
audiodef.h 167 u_int stamp; /* number of transferred blocks */ member in struct:audio_track
audio.c 3034 u_int stamp; local in function:audio_ioctl
3146 stamp = track->stamp;
3152 ao->samples = stamp * track->usrbuf_blksize;
3153 ao->deltablks = stamp - track->last_stamp;
3158 track->last_stamp = stamp;
3174 stamp = track->stamp;
3180 ao->samples = stamp * track->usrbuf_blksize;
3181 ao->deltablks = stamp - track->last_stamp
    [all...]
  /src/usr.sbin/dumplfs/
dumplfs.c 828 time_t stamp; local in function:dump_super
905 stamp = lfs_sb_gettstamp(lfsp);
906 (void)printf(" tstamp %s", ctime(&stamp));

Completed in 26 milliseconds