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

1234567

/freebsd-13-stable/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-13-stable/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-13-stable/contrib/wpa/src/ap/
H A Dbss_load.c20 unsigned int *sec, unsigned int *usec)
36 *usec = (update_timeout % 1000) * 1024;
45 unsigned int sec, usec; local
60 if (get_bss_load_update_timeout(hapd, &sec, &usec) < 0)
78 eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
85 unsigned int sec, usec; local
87 if (get_bss_load_update_timeout(hapd, &sec, &usec) < 0)
90 eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
19 get_bss_load_update_timeout(struct hostapd_data *hapd, unsigned int *sec, unsigned int *usec) argument
H A Dairtime_policy.c38 unsigned int *usec)
50 *usec = (update_int % 1000) * 1000;
61 sta->backlogged_until.usec += hapd->iconf->airtime_update_interval *
63 while (sta->backlogged_until.usec >= 1000000) {
65 sta->backlogged_until.usec -= 1000000;
133 unsigned int sec, usec; local
218 if (get_airtime_policy_update_timeout(iface, &sec, &usec) < 0)
221 eloop_register_timeout(sec, usec, update_airtime_weights, iface,
253 unsigned int sec, usec; local
258 if (get_airtime_policy_update_timeout(iface, &sec, &usec) <
36 get_airtime_policy_update_timeout(struct hostapd_iface *iface, unsigned int *sec, unsigned int *usec) argument
[all...]
/freebsd-13-stable/sys/rpc/rpcsec_tls/
H A Drpctlscd.x39 uint64_t usec;
45 uint64_t usec;
55 uint64_t usec;
H A Drpctlssd.x35 uint64_t usec;
43 uint64_t usec;
53 uint64_t usec;
/freebsd-13-stable/contrib/tcpdump/
H A Dprint-timed.c102 long sec, usec; local
127 usec = EXTRACT_32BITS(&tsp->tsp_time.tv_usec);
129 if (usec < 0)
133 if (sec < 0 && usec != 0) {
137 usec = 1000000 - usec;
139 ND_PRINT((ndo, "%ld.%06ld", sec, usec));
/freebsd-13-stable/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;
/freebsd-13-stable/include/rpcsvc/
H A Dspray.x53 unsigned int usec;
/freebsd-13-stable/sys/rpc/
H A Drpcsec_tls.h63 enum clnt_stat rpctls_cl_handlerecord(uint64_t sec, uint64_t usec,
65 enum clnt_stat rpctls_srv_handlerecord(uint64_t sec, uint64_t usec,
67 enum clnt_stat rpctls_cl_disconnect(uint64_t sec, uint64_t usec,
69 enum clnt_stat rpctls_srv_disconnect(uint64_t sec, uint64_t usec,
/freebsd-13-stable/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
28 os_time_t usec; member in struct:os_reltime
32 * os_get_time - Get current time (sec, usec)
39 * os_get_reltime - Get relative time (sec, usec)
51 (a->sec == b->sec && a->usec < b->usec);
59 res->usec
[all...]
/freebsd-13-stable/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-13-stable/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_dim.c44 MLX5_SET(cqc, cqc, cq_period, prof.usec);
51 MLX5_SET(cqc, cqc, cq_period, prof.usec);
91 cur_profile.usec, cur_profile.pkts);
/freebsd-13-stable/contrib/netbsd-tests/include/sys/
H A Dt_types.c50 useconds_t usec; local
72 usec = 1000000;
73 ATF_REQUIRE(usec > 0);
/freebsd-13-stable/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);
/freebsd-13-stable/sys/dev/rtwn/pci/
H A Drtwn_pci_reg.c114 rtwn_pci_delay(struct rtwn_softc *sc, int usec) argument
116 if (usec < 1000)
117 DELAY(usec);
120 msecs_to_ticks(usec / 1000));
/freebsd-13-stable/sys/compat/linuxkpi/common/include/linux/
H A Djiffies.h99 usecs_to_jiffies(uint64_t usec) argument
103 if (usec > lkpi_usec2hz_max)
104 usec = lkpi_usec2hz_max;
105 result = howmany(usec * lkpi_usec2hz_rem, lkpi_usec2hz_div);
/freebsd-13-stable/sys/arm/arm/
H A Dplatform.c209 platform_delay(int usec, void *arg __unused) argument
213 for (; usec > 0; usec--)
/freebsd-13-stable/contrib/libpcap/pcap/
H A Dnflog.h70 uint64_t usec; member in struct:nflog_timestamp

Completed in 270 milliseconds

1234567