| /freebsd-13-stable/sys/geom/eli/ |
| HD | pkcs5v2.c | 100 int usecs; in pkcs5v2_probe() local 107 usecs = end.ru_utime.tv_sec - start.ru_utime.tv_sec; in pkcs5v2_probe() 108 usecs *= 1000000; in pkcs5v2_probe() 109 usecs += end.ru_utime.tv_usec - start.ru_utime.tv_usec; in pkcs5v2_probe() 110 return (usecs); in pkcs5v2_probe() 117 pkcs5v2_calculate(int usecs) in pkcs5v2_calculate() argument 126 return (((intmax_t)iterations * (intmax_t)usecs) / v); in pkcs5v2_calculate()
|
| HD | pkcs5v2.h | 34 int pkcs5v2_calculate(int usecs);
|
| /freebsd-13-stable/tools/tools/kttcp/ |
| HD | kttcp.c | 115 unsigned long long ull, usecs, bytespersec, bitspersec, xmitsize; in main() local 262 usecs = (unsigned long long)kio.kio_elapsed.tv_sec * 1000000; in main() 263 usecs += kio.kio_elapsed.tv_usec; in main() 265 bytespersec = kio.kio_bytesdone * 1000000LL / usecs; in main() 294 printf(" %lld.%lldreal", usecs / 1000000, (usecs % 1000000) / 10000); in main() 295 printf(" %lld%%", ull * 100 / usecs); in main()
|
| /freebsd-13-stable/tests/sys/net/ |
| HD | randsleep.c | 41 useconds_t max_usecs, usecs; in main() local 57 usecs = (useconds_t)((double)max_usecs * frac); in main() 58 usleep(usecs); in main()
|
| /freebsd-13-stable/lib/libc/gen/ |
| HD | ualarm.c | 45 ualarm(useconds_t usecs, useconds_t reload) in ualarm() argument 52 new.it_value.tv_usec = usecs % USPS; in ualarm() 53 new.it_value.tv_sec = usecs / USPS; in ualarm()
|
| /freebsd-13-stable/stand/efi/libefi/ |
| HD | delay.c | 32 delay(int usecs) in delay() argument 35 BS->Stall(usecs); in delay()
|
| /freebsd-13-stable/stand/uboot/ |
| HD | time.c | 59 delay(int usecs) in delay() argument 62 ub_udelay(usecs); in delay()
|
| /freebsd-13-stable/stand/libofw/ |
| HD | ofw_time.c | 51 delay(int usecs) in delay() argument 55 msecs = usecs / 1000; in delay()
|
| /freebsd-13-stable/sys/mips/nlm/ |
| HD | tick.c | 198 uint32_t cur, last, delta, usecs; in DELAY() local 206 delta = usecs = 0; in DELAY() 208 while (n > usecs) { in DELAY() 220 usecs += delta / cycles_per_usec; in DELAY()
|
| /freebsd-13-stable/contrib/libbegemot/ |
| HD | rpoll.c | 162 uint64_t usecs; /* microsecond value of the timer */ member 370 poll_start_utimer(unsigned long long usecs, int repeat, timer_f func, void *arg) in poll_start_utimer() argument 391 p->usecs = usecs; in poll_start_utimer() 395 p->when = GETUSECS() + usecs; in poll_start_utimer() 403 usecs, repeat, (void *)func, (void *)arg, p - tims); in poll_start_utimer() 625 tims[tfd[i]].when = now + tims[tfd[i]].usecs; in poll_dispatch()
|
| HD | rpoll.h | 46 int poll_start_utimer(unsigned long long usecs, int repeat, timer_f func,
|
| /freebsd-13-stable/sys/mips/mips/ |
| HD | tick.c | 197 uint32_t cur, last, delta, usecs; in DELAY() local 205 delta = usecs = 0; in DELAY() 207 while (n > usecs) { in DELAY() 219 usecs += delta / cycles_per_usec; in DELAY()
|
| /freebsd-13-stable/contrib/ofed/opensm/opensm/ |
| HD | osm_log.c | 127 uint32_t usecs; in osm_log() local 187 usecs = time_usecs % 1000000; in osm_log() 197 result.tm_sec, usecs, pid, verbosity, buffer); in osm_log() 239 uint32_t usecs; in osm_log_v2() local 303 usecs = time_usecs % 1000000; in osm_log_v2() 313 result.tm_sec, usecs, pid, verbosity, buffer); in osm_log_v2()
|
| /freebsd-13-stable/sys/compat/ndis/ |
| HD | subr_hal.c | 127 KeStallExecutionProcessor(usecs) in KeStallExecutionProcessor() argument 128 uint32_t usecs; in KeStallExecutionProcessor() 130 DELAY(usecs);
|
| /freebsd-13-stable/sys/dev/twa/ |
| HD | tw_osl_inline.h | 249 #define tw_osl_delay(usecs) DELAY(usecs) argument
|
| /freebsd-13-stable/sys/contrib/device-tree/Bindings/input/touchscreen/ |
| HD | ads7846.txt | 28 ti,vref-delay-usecs vref supply delay in usecs, 0 for 41 ti,penirq-recheck-delay-usecs If set to non-zero, after samples are
|
| /freebsd-13-stable/sys/contrib/device-tree/Bindings/mfd/ |
| HD | cros-ec.txt | 26 clock rate. This property specifies the delay, in usecs, between the 32 specifies the delay, in usecs, introduced between transactions to account
|
| /freebsd-13-stable/contrib/wpa/src/ap/ |
| HD | gas_query_ap.c | 351 unsigned int secs, usecs; in gas_query_tx_comeback_req_delay() local 354 usecs = comeback_delay * 1024 - secs * 1000000; in gas_query_tx_comeback_req_delay() 356 " in %u secs %u usecs", MAC2STR(query->addr), secs, usecs); in gas_query_tx_comeback_req_delay() 358 eloop_register_timeout(secs, usecs, gas_query_tx_comeback_timeout, in gas_query_tx_comeback_req_delay()
|
| /freebsd-13-stable/contrib/wpa/src/utils/ |
| HD | eloop.h | 179 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
|
| /freebsd-13-stable/stand/kboot/ |
| HD | main.c | 236 delay(int usecs) in delay() argument 245 } while (t < ti + usecs); in delay()
|
| /freebsd-13-stable/sys/contrib/device-tree/Bindings/mtd/ |
| HD | orion-nand.txt | 13 registers in usecs
|
| /freebsd-13-stable/contrib/wpa/wpa_supplicant/ |
| HD | gas_query.c | 394 unsigned int secs, usecs; in gas_query_tx_comeback_req_delay() local 402 usecs = comeback_delay * 1024 - secs * 1000000; in gas_query_tx_comeback_req_delay() 404 " in %u secs %u usecs", MAC2STR(query->addr), secs, usecs); in gas_query_tx_comeback_req_delay() 406 eloop_register_timeout(secs, usecs, gas_query_tx_comeback_timeout, in gas_query_tx_comeback_req_delay()
|
| /freebsd-13-stable/sys/contrib/ncsw/inc/ |
| HD | xx_ext.h | 505 void XX_UDelay(uint32_t usecs);
|
| /freebsd-13-stable/sys/kern/ |
| HD | kern_fail.c | 553 int usecs; in fail_point_eval_nontrivial() local 637 usecs = ent->fe_arg; in fail_point_eval_nontrivial() 638 DELAY(usecs); in fail_point_eval_nontrivial()
|
| /freebsd-13-stable/sys/contrib/ncsw/user/env/ |
| HD | xx.c | 558 XX_UDelay(uint32_t usecs) in XX_UDelay() argument 560 DELAY(usecs); in XX_UDelay()
|