HomeSort by relevance Sort by last modified time
    Searched defs:usec (Results 1 - 25 of 26) sorted by null

1 2

  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
ustime.c 40 krb5_int32 sec, usec; local
48 retval = krb5_crypto_us_timeofday(&sec, &usec);
52 usec += os_ctx->usec_offset;
53 if (usec > 1000000) {
54 usec -= 1000000;
57 if (usec < 0) {
58 usec += 1000000;
64 *microseconds = usec;
  /onnv/onnv-gate/usr/src/cmd/sgs/libconv/common/
time.c 43 suseconds_t usec; local
47 usec = newtime->tv_usec - oldtime->tv_usec;
49 usec = (newtime->tv_usec + MICROSEC) - oldtime->tv_usec;
64 MSG_ORIG(MSG_TIME_HMSF), hour, min, sec, usec);
67 MSG_ORIG(MSG_TIME_MSF), min, sec, usec);
70 MSG_ORIG(MSG_TIME_SF), sec, usec);
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/os/
toffset.c 42 krb5_int32 sec, usec; local
45 retval = krb5_crypto_us_timeofday(&sec, &usec);
49 os_ctx->usec_offset = microseconds - usec;
c_ustime.c 41 struct time_now { krb5_int32 sec, usec; }; member in struct:time_now
58 n->usec = timeptr.millitm * 1000;
83 n->usec = tv.tv_usec;
112 if ((now.sec == last_time.sec) && (now.usec <= last_time.usec)) {
114 now.usec = ++last_time.usec;
115 if (now.usec >= 1000000) {
117 now.usec = 0;
124 last_time.usec = now.usec
    [all...]
  /onnv/onnv-gate/usr/src/lib/libnisdb/yptol/
ttl_utils.c 288 long usec; local
  /onnv/onnv-gate/usr/src/cmd/iscsi/iscsitgtd/
util_queue.c 48 static const timespec_t usec = {0, 1000}; variable
146 (void) nanosleep(&usec, 0);
t10_sam.c 117 static const timespec_t usec = {0, 1000}; variable
429 (void) nanosleep(&usec, 0);
    [all...]
  /onnv/onnv-gate/usr/src/lib/lvm/libmeta/common/
meta_print.c 196 long long sec, msec, usec; local
199 usec = secs / 1000;
200 msec = usec / 1000;
203 usec %= 1000;
206 usec);
  /onnv/onnv-gate/usr/src/uts/common/avs/ns/solaris/
nsc_thread.c 62 clock_t usec = sec * 1000000; local
65 while (usec > 0) {
70 usec -= NST_MEMORY_TIMEOUT;
  /onnv/onnv-gate/usr/src/cmd/svc/startd/
log.c 149 long sec, usec; local
152 usec = time->tv_usec - st->st_start_time.tv_usec;
154 if (usec < 0) {
156 usec += 1000000;
159 (void) snprintf(buf, bufsize, "start + %d.%02ds", sec, usec / 10000);
  /onnv/onnv-gate/usr/src/uts/common/c2/
audit_io.c 199 uint32_t usec; member in struct:__anon11
215 tv.usec = (uint32_t)time->tv_nsec;
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
snoop_display.c 562 int usec; local
570 usec = getxdr_long();
575 (void) sprintf(buff, "%d.%06d", sec, usec);
581 (void) sprintf(p, "%06d GMT", usec);
snoop.c 569 int sec, usec; local
594 usec = tvp->tv_usec - ptvp->tv_usec;
595 if (usec < 0) {
596 usec += 1000000;
599 (void) sprintf(lp, "%3d.%05d ", sec, usec / 10);
  /onnv/onnv-gate/usr/src/uts/common/os/
timers.c 91 int usec, nsec; local
100 * Fast algorithm to convert nsec to usec -- see hrt2ts()
104 usec = nsec + (nsec >> 2);
105 usec = nsec + (usec >> 1);
106 usec = nsec + (usec >> 2);
107 usec = nsec + (usec >> 4);
108 usec = nsec - (usec >> 3)
    [all...]
clock.c 193 * contents plus the time_tv.usec as usual.
1494 int i, total_usec, usec; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/fcoe/
fcoe.c 1190 clock_t usec; local
1197 usec = (curclock - fcoe_trace_start) * usec_per_tick;
1198 len = snprintf(tbuf, 158, "%lu.%03lus 0t%lu %s ", (usec /
1199 (1000 * 1000)), ((usec % (1000 * 1000)) / 1000),
  /onnv/onnv-gate/usr/src/uts/common/fs/ufs/
ufs_inode.c 1751 int32_t usec, nsec; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fm/eversholt/common/
literals.h 84 L_DECL(usec); variable
  /onnv/onnv-gate/usr/src/uts/common/fs/udfs/
udf_subr.c 405 int32_t usec = utime->tv_nsec / 1000; local
415 if (usec) {
417 usec = 1000 * 1000 - usec;
421 dtime->ts_csec = usec / 10000;
422 usec %= 10000;
423 dtime->ts_husec = usec / 100;
424 dtime->ts_usec = usec % 100;
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/avs/ns/sdbc/
sd_tdaemon.c 794 unsigned int usec = nsc_usec(); local
795 bcopy(&usec, cc_ent->cc_data + i, 4);
802 unsigned int usec = nsc_usec(); local
803 bcopy(&usec, cc_ent->cc_data + i, 4);
  /onnv/onnv-gate/usr/src/uts/sun4/io/
su_driver.c 1940 long nsec, usec; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/sun/io/
zs_async.c 1728 int nsec, usec; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mdb/common/mdb/
mdb_termio.c 780 mdb_dprintf(MDB_DBG_CMDBUF, "speed = %u baud (%u usec / char), "
831 termio_delay(termio_data_t *td, uint_t usec)
836 for (usec = (usec + usecpc / 2) / usecpc; usec != 0; usec--) {
853 uint_t usec = 0; local
862 usec = usec * 10 + *p++ - '0';
864 usec *= 1000; /* convert msecs to usecs *
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/
asy.c 2376 long nsec, usec; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/include/
k5-int.h 1192 krb5_int32 usec; member in struct:_krb5_fast_finished
1706 krb5_int32 usec; \/* microsecond portion of time, member in struct:_krb5_safe
1723 krb5_int32 usec; \/* microsecond portion of time, opt. *\/ member in struct:_krb5_priv_enc_part
    [all...]

Completed in 5540 milliseconds

1 2