| /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/external/ibm-public/postfix/dist/src/util/ |
| msg_rate_delay.c | 11 /* void msg_rate_delay(stamp, delay, log_fn, fmt, ...) 12 /* time_t *stamp; 26 /* .IP stamp 27 /* Time stamp of last log output; specify a zero time stamp 73 void msg_rate_delay(time_t *stamp, int delay, 104 if (*stamp + delay > now) 106 *stamp = now; 131 time_t stamp = 0; local 134 msg_rate_delay(&stamp, 2, msg_info, "text here %d", n) [all...] |
| /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/external/bsd/openldap/dist/servers/slapd/overlays/ |
| auditlog.c | 83 time_t stamp; local 135 stamp = slap_get_time(); 137 what, (long)stamp, suffix, who ? " " : "", who ? who->bv_val : "", 185 fprintf(f, "# end %s %ld\n\n", what, (long)stamp);
|
| /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/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| replay.c | 124 time_t stamp; member in struct:rc_entry 145 tmp.stamp = auth_lifespan; 213 ent.stamp = time(NULL); 227 t = ent.stamp - tmp.stamp; 229 if(tmp.stamp < t) 278 *auth_lifespan = ent.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/external/bsd/libpcap/dist/ |
| pcap-pf.c | 109 struct enstamp stamp; local 171 sp = &stamp;
|
| /src/external/bsd/nsd/dist/ |
| rrl.c | 41 int32_t stamp; member in struct:rrl_bucket 387 DEBUG(DEBUG_QUERY, 1, (LOG_INFO, "source %llx hash %x oldrate %d oldcount %d stamp %d", 388 (long long unsigned)source, hash, b->rate, b->counter, b->stamp)); 409 b->stamp = now; 416 if(now - b->stamp == 1) { 423 b->stamp = now; 424 } else if(now - b->stamp > 0) { 427 rrl_attenuate_bucket(b, now - b->stamp); 431 b->stamp = now; 432 } else if(now != b->stamp) { [all...] |
| /src/external/bsd/ntp/dist/kernel/sys/ |
| bsd_audioirig.h | 62 struct timeval stamp; /* timestamp */ member in struct:irig_time
|
| /src/external/bsd/openldap/dist/servers/slapd/ |
| ldapsync.c | 335 struct berval stamp; local 351 stamp.bv_len = cval - csn_str; 353 stamp.bv_len = end - csn_str; 356 stamp.bv_val = csn_str; 358 ad->ad_type->sat_syntax, &stamp ) != LDAP_SUCCESS ) 364 &stamp, &bv, memctx ) != LDAP_SUCCESS ) 381 struct berval stamp; local 397 stamp.bv_len = cval - csn_str; 399 stamp.bv_len = end - csn_str; 402 stamp.bv_val = csn_str [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| gcov-dump.cc | 221 /* stamp */ 222 unsigned stamp = gcov_read_unsigned (); local 223 printf ("%s:stamp %u\n", filename, stamp);
|
| tree-ssa-scopedtables.h | 80 expr_hash_elt *stamp (void) { return m_stamp; } function in class:expr_hash_elt 97 /* A unique stamp, typically the address of the hash
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| gcov-dump.cc | 208 /* stamp */ 209 unsigned stamp = gcov_read_unsigned (); local 210 printf ("%s:stamp %lu\n", filename, (unsigned long)stamp);
|
| tree-ssa-scopedtables.h | 80 expr_hash_elt *stamp (void) { return m_stamp; } function in class:expr_hash_elt 97 /* A unique stamp, typically the address of the hash
|
| /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 */
|