Searched refs:usec (Results 1 - 25 of 132) sorted by relevance

123456

/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/profile-n/
H A Derr.D_PDESC_ZEROoneusec.d32 * profile-usec; less than 200 micro seconds.
40 profile-1usec
42 printf("profile-usec; less than 200 micro seconds \n");
H A Dtst.profileusec.d32 * Simple profile-usec simple test.
41 profile-200usec
43 printf("This test is a simple profile-usec provider test");
/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tick-n/
H A Derr.D_PDESC_ZEROoneusec.d32 * profile-usec; less than 200 micro seconds.
40 profile-1usec
42 printf("profile-usec; less than 200 micro seconds \n");
H A Dtst.tickusec.d32 * tick-2000usec simple test.
41 tick-2000usec
43 printf("This test is a simple tick-usec provider test\n");
/freebsd-10.1-release/sys/sparc64/sparc64/
H A Dclock.c40 DELAY(int usec) argument
44 if (usec < 0)
53 end = rd(tick) + (u_long)usec * PCPU_GET(clock) / 1000000;
/freebsd-10.1-release/contrib/tcpdump/
H A Dprint-timed.c51 long sec, usec; local
90 usec = EXTRACT_32BITS(&tsp->tsp_time.tv_usec);
91 if (usec < 0)
95 if (sec < 0 && usec != 0) {
99 usec = 1000000 - usec;
101 printf("%ld.%06ld", sec, usec);
/freebsd-10.1-release/crypto/heimdal/lib/krb5/
H A Dtime.c43 * @param usec The applications new of "now" in micro seconds
53 int32_t usec)
62 * If the caller passes in a negative usec, its assumed to be
63 * unknown and the function will use the current time usec.
65 if (usec >= 0) {
66 context->kdc_usec_offset = usec - tv.tv_usec;
97 int32_t *usec)
104 *usec = tv.tv_usec; /* XXX */
51 krb5_set_real_time(krb5_context context, krb5_timestamp sec, int32_t usec) argument
95 krb5_us_timeofday(krb5_context context, krb5_timestamp *sec, int32_t *usec) argument
H A Dmk_safe.c71 krb5_us_timeofday (context, &rdata.timestamp, &rdata.usec);
75 s.safe_body.usec = &rdata.usec;
78 s.safe_body.usec = NULL;
83 outdata->usec = rdata.usec;
H A Dtest_time.c42 int32_t usec; local
53 ret = krb5_us_timeofday(context, &sec, &usec);
H A Dmk_error.c50 int32_t usec; local
54 krb5_us_timeofday (context, &sec, &usec);
60 msg.susec = usec;
H A Dmk_priv.c69 krb5_us_timeofday (context, &rdata.timestamp, &rdata.usec);
73 part.usec = &rdata.usec;
76 part.usec = NULL;
81 outdata->usec = rdata.usec;
H A Drd_priv.c138 part.usec == NULL ||
172 if(part.usec)
173 outdata->usec = *part.usec;
H A Drd_safe.c161 safe.safe_body.usec == NULL ||
206 if(safe.safe_body.usec)
207 outdata->usec = *safe.safe_body.usec;
/freebsd-10.1-release/include/rpcsvc/
H A Dspray.x53 unsigned int usec;
/freebsd-10.1-release/contrib/ntp/util/
H A Dprecision.c83 printf("resolution = %ld usec after %d loop%s\n",
129 long usec; local
131 usec = 0;
141 for (i = 0; i < MINLOOPS && usec < HUSECS;) {
153 usec += diff;
160 printf("precision = %ld usec after %d loop%s\n",
162 if (usec >= HUSECS) {
163 printf(" (Boy this machine is fast ! usec was %ld)\n",
164 usec);
/freebsd-10.1-release/contrib/wpa/wpa_supplicant/
H A Dscan.h13 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec);
15 int sec, int usec);
/freebsd-10.1-release/contrib/ntp/lib/isc/tests/
H A Disctest.c159 * Sleep for 'usec' microseconds.
162 isc_test_nap(isc_uint32_t usec) { argument
166 ts.tv_sec = usec / 1000000;
167 ts.tv_nsec = (usec % 1000000) * 1000;
170 usleep(usec);
176 sleep((usec / 1000000) + 1);
H A Disctest.h57 isc_test_nap(isc_uint32_t usec);
/freebsd-10.1-release/contrib/wpa/src/utils/
H A Dos.h15 * os_sleep - Sleep (sec, usec)
17 * @usec: Number of microseconds to sleep
19 void os_sleep(os_time_t sec, os_time_t usec);
23 os_time_t usec; member in struct:os_time
27 * os_get_time - Get current time (sec, usec)
38 ((a)->sec == (b)->sec && (a)->usec < (b)->usec))
42 (res)->usec = (a)->usec - (b)->usec; \
[all...]
H A Dos_win32.c16 void os_sleep(os_time_t sec, os_time_t usec) argument
20 if (usec)
21 Sleep(usec / 1000);
44 t->usec = (os_time_t) (tt % 1000000);
H A Dcommon.c171 u32 sec, usec; local
178 usec = now.usec;
179 usec = 4295 * usec - (usec >> 5) - (usec >> 9);
182 tmp = host_to_be32(usec);
/freebsd-10.1-release/crypto/openssl/crypto/rand/
H A Drand_unix.c285 int usec = 10 * 1000; /* spend 10ms on each file */ local
326 if (poll(&pset, 1, usec / 1000) < 0)
327 usec = 0;
337 t.tv_usec = usec;
349 usec = t.tv_usec;
353 usec = 0;
375 if (usec == 10 * 1000)
376 usec = 0;
379 (errno == EINTR || errno == EAGAIN)) && usec != 0
/freebsd-10.1-release/sys/cddl/compat/opensolaris/sys/
H A Dtime.h54 #define NSEC_TO_TICK(usec) ((usec) / (NANOSEC / hz))
/freebsd-10.1-release/contrib/apr/include/
H A Dapr_time.h66 /** @return apr_time_t as a usec */
81 /** @return a second and usec combination as an apr_time_t */
82 #define apr_time_make(sec, usec) ((apr_time_t)(sec) * APR_USEC_PER_SEC \
83 + (apr_time_t)(usec))
/freebsd-10.1-release/lib/libipsec/
H A Dpolicy_token.l76 usec {dot}{digit}{1,6}

Completed in 219 milliseconds

123456