| /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/profile-n/ |
| err.D_PDESC_ZEROoneusec.d | 32 * profile-usec; less than 200 micro seconds. 40 profile-1usec 42 printf("profile-usec; less than 200 micro seconds \n");
|
| tst.profileusec.d | 32 * Simple profile-usec simple test. 41 profile-200usec 43 printf("This test is a simple profile-usec provider test");
|
| /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/tick-n/ |
| err.D_PDESC_ZEROoneusec.d | 32 * profile-usec; less than 200 micro seconds. 40 profile-1usec 42 printf("profile-usec; less than 200 micro seconds \n");
|
| tst.tickusec.d | 32 * tick-2000usec simple test. 41 tick-2000usec 43 printf("This test is a simple tick-usec provider test\n");
|
| /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/uts/common/gssapi/mechs/krb5/krb5/os/ |
| 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...] |
| toffset.c | 42 krb5_int32 sec, usec; local 45 retval = krb5_crypto_us_timeofday(&sec, &usec); 49 os_ctx->usec_offset = microseconds - usec;
|
| /onnv/onnv-gate/usr/src/cmd/rpcsvc/ |
| spray_subr.c | 60 if (cumul.clock.usec < start_time.usec) { 61 cumul.clock.usec += 1000000; 65 cumul.clock.usec -= start_time.usec;
|
| spray.c | 146 / (1000000.0 * cumul.clock.sec + cumul.clock.usec); 148 (1000000.0 * cumul.clock.sec + cumul.clock.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/head/rpcsvc/ |
| spray.x | 46 unsigned int usec;
|
| /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...] |
| /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/ |
| mk_priv.c | 59 privmsg_enc_part.usec = replaydata->usec; 146 &replaydata.usec))) 150 outdata->usec = replaydata.usec; 221 replay.cusec = replaydata.usec;
|
| mk_safe.c | 90 safemsg.usec = replaydata->usec; 177 &replaydata.usec))){ 184 outdata->usec = replaydata.usec; 280 replay.cusec = replaydata.usec;
|
| rd_cred.c | 83 replaydata->usec = encpart.usec; 228 replay.cusec = replaydata.usec; 248 outdata->usec = replaydata.usec;
|
| rd_priv.c | 134 replaydata->usec = privmsg_enc_part->usec; 246 replay.cusec = replaydata.usec; 267 outdata->usec = replaydata.usec;
|
| rd_safe.c | 149 replaydata->usec = message->usec; 246 replay.cusec = replaydata.usec; 267 outdata->usec = replaydata.usec;
|
| mk_cred.c | 87 credenc.usec = replaydata->usec; 207 &replaydata.usec))) 211 outdata->usec = replaydata.usec; 262 replay.cusec = replaydata.usec;
|
| /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/io/ib/ibtl/ |
| ibtl_cq.c | 228 ibt_modify_cq(ibt_cq_hdl_t ibt_cq, uint_t count, uint_t usec, 232 usec, hid); 235 ibt_cq->cq_ibc_cq_hdl, count, usec, hid));
|
| /onnv/onnv-gate/usr/src/uts/common/fs/ufs/ |
| ufs_inode.c | 1751 int32_t usec, nsec; local [all...] |
| /onnv/onnv-gate/usr/src/uts/common/sys/ |
| time.h | 259 * Macros to convert from common units of time (sec, msec, usec, nsec, 275 #define USEC_TO_TICK(usec) ((usec) / usec_per_tick) 276 #define USEC_TO_TICK_ROUNDUP(usec) \ 277 ((usec) == 0 ? 0 : USEC_TO_TICK((usec) - 1) + 1)
|
| /onnv/onnv-gate/usr/src/lib/udapl/libdat/include/ |
| dat_osd.h | 148 /* void dat_os_usleep(unsigned long usec) */ 149 #define dat_os_usleep(usec) usleep((usec))
|
| /onnv/onnv-gate/usr/src/uts/common/io/ |
| vuid_queue.c | 47 static struct timeval32 usec_to_tv(int usec); 347 usec_to_tv(int usec) 351 tv.tv_sec = usec / 1000000; 352 tv.tv_usec = usec % 1000000;
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Time/HiRes/ |
| HiRes.xs | 434 hrt_nanosleep(unsigned long usec) 437 res.tv_sec = usec/1000/1000; 438 res.tv_nsec = ( usec - res.tv_sec*1000*1000 ) * 1000; 450 hrt_usleep(unsigned long usec) 454 tv.tv_usec = usec; 466 hrt_usleep(unsigned long usec) 469 msec = usec / 1000; 480 hrt_ualarm(int usec, int interval) 483 itv.it_value.tv_sec = usec / 1000000; 484 itv.it_value.tv_usec = usec % 1000000 [all...] |