/src/tests/include/sys/ |
t_types.c | 50 useconds_t usec; local in function:ATF_TC_BODY 72 usec = 1000000; 73 ATF_REQUIRE(usec > 0);
|
/src/sys/arch/amiga/stand/bootblock/boot/ |
amigaio.h | 56 usec; member in struct:TimerIO
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bus/ |
nouveau_nvkm_subdev_bus_hwsq.c | 174 u8 shift = 0, usec = nsec / 1000; local in function:nvkm_hwsq_nsec 175 while (usec & ~3) { 176 usec >>= 2; 181 hwsq_cmd(hwsq, 1, (u8[]){ 0x00 | (shift << 2) | usec });
|
/src/sys/kern/ |
subr_time_arith.c | 102 long sec, usec; local in function:tvtohz 125 usec = tv->tv_usec; 127 KASSERT(usec >= 0); 128 KASSERT(usec < 1000000); 136 if (sec < 0 || (sec == 0 && usec == 0)) { 144 ticks = (((sec * 1000000) + (unsigned long)usec + (tick - 1)) 148 (((unsigned long)usec + (tick - 1)) / tick) + 1;
|
/src/sys/arch/arm/ixp12x0/ |
ixp12x0_clk.c | 313 int usec; local in function:delay 321 usec = usecs % 10000; 324 + (TIMER_FREQUENCY / 100) * usec / 10000;
|
/src/sys/arch/arm/sa11x0/ |
sa11x0_ost.c | 311 int csec, usec; local in function:delay 314 usec = usecs % 10000; 317 + (TIMER_FREQUENCY / 100) * usec / 10000;
|
/src/sys/dev/nor/ |
cfi_0002.c | 102 * cfi_0002_time_write_nbyte - maximum usec delay waiting for write buffer 109 u_long usec = 1UL << shft; local in function:cfi_0002_time_write_nbyte 110 return usec; 114 * cfi_0002_time_erase_blk - maximum usec delay waiting for erase block 121 u_long usec = 1000UL << shft; local in function:cfi_0002_time_erase_blk 122 return usec; 126 * cfi_0002_time_erase_all - maximum usec delay waiting for erase chip 133 u_long usec = 1000UL << shft; local in function:cfi_0002_time_erase_all 134 return usec; 138 * cfi_0002_time_dflt - maximum usec delay to use waiting for read [all...] |
/src/usr.sbin/npf/npfd/ |
npfd_log.c | 146 uint32_t usec; member in struct:npfd_log_validate::__anonee1d43d40108
|
/src/sys/arch/shark/isa/ |
clock.c | 227 u_short isa_timer_lsb_table[256]; /* timer->usec conversion for LSB */ 426 /* it can take a long time (1 usec or longer) just for 444 /* a Musec = 2^20 usec */ 446 usec = n & ((1 << 20) - 1); local in function:delay 449 (usec * (TIMER_MUSECFREQ >> 20)) + 450 ((usec * ((TIMER_MUSECFREQ & ((1 <<20) - 1)) >>10)) >>10) + 451 ((usec * (TIMER_MUSECFREQ & ((1 << 10) - 1))) >> 20);
|
/src/sys/arch/hpcmips/vr/ |
rtc.c | 282 uint64_t sec, usec; local in function:vrrtc_get 297 usec = (timel % ETIME_L_HZ); 298 usec *= 1000000; 299 usec /= ETIME_L_HZ; 300 tvp->tv_usec = usec;
|
/src/sys/external/isc/atheros_hal/dist/ |
ah.c | 376 u_int usec; local in function:ath_hal_mac_usec 380 usec = clks / CLOCK_RATE[ath_hal_chan2wmode(ah, c)]; 382 usec >>= 1; 384 usec <<= 1; 386 usec <<= 2; 388 usec = clks / CLOCK_RATE[WIRELESS_MODE_11b]; 389 return usec;
|
/src/sys/dev/ |
sequencer.c | 1196 long long usec; local in function:seq_timer_waitabs 1205 usec = (long long)divs * (long long)t->usperdiv; /* convert to usec */ 1206 when.tv_sec = usec / 1000000; 1207 when.tv_usec = usec % 1000000; 1219 "usec=%lld\n", ticks, usec);
|
/src/bin/ps/ |
print.c | 1452 ulong usec = *(uint32_t *)(b + v->off + sizeof (uint32_t)); local in function:putimeval 1481 (void)printf( "%*lu.%.6lu", v->width - 6 - 1, secs, usec); 1484 usec += 5000; 1485 if (usec >= 1000000) { 1486 usec -= 1000000; 1494 usec / 10000u );
|
/src/sys/arch/alpha/alpha/ |
machdep.c | 1729 unsigned long pcc0, pcc1, curcycle, cycles, usec; local in function:delay 1748 usec = 0; 1750 while (usec <= n) { 1765 * the usec counter. 1769 usec++;
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios/ |
nouveau_nvkm_subdev_bios_init.c | 1789 u16 usec = nvbios_rd16(bios, init->offset + 1); local in function:init_time 1791 trace("TIME\t0x%04x\n", usec); 1795 if (usec < 1000) 1796 udelay(usec); 1798 mdelay((usec + 900) / 1000);
|
/src/sys/external/isc/atheros_hal/dist/ar5212/ |
ar5212_reset.c | 32 #define BASE_ACTIVATE_DELAY 100 /* 100 usec */ 33 #define PLL_SETTLE_DELAY 300 /* 300 usec */ 2627 * This includes: +USEC, TX/RX latency, 2633 uint32_t txLat, rxLat, usec, slot, refClock, eifs, init_usec; local in function:ar5212SetIFSTiming 2642 usec = HALF_RATE_USEC; 2649 usec = QUARTER_RATE_USEC; 2654 OS_REG_WRITE(ah, AR_USEC, (usec | refClock | txLat | rxLat));
|
/src/sys/dev/pci/ixgbe/ |
ixv.c | 2486 uint32_t reg, usec, rate; local in function:ixv_sysctl_interrupt_rate_handler 2492 usec = ((reg & 0x0FF8) >> 3); 2493 if (usec > 0) 2494 rate = 500000 / usec;
|
ixgbe.c | 3333 uint32_t reg, usec, rate; local in function:ixgbe_sysctl_interrupt_rate_handler 3344 usec = ((reg & 0x0FF8) >> 3); 3345 if (usec > 0) 3346 rate = 500000 / usec;
|
/src/sys/fs/udf/ |
ecma167-udf.h | 249 uint8_t usec; member in struct:timestamp
|
udf_subr.c | 4304 usecs = timestamp->usec + 4335 uint32_t husec, usec, csec; local in function:udf_timespec_to_timestamp 4339 usec = timespec->tv_nsec / 1000; 4340 husec = usec / 100; 4341 usec -= husec * 100; /* only 0-99 in usec */ 4355 timestamp->usec = usec;
|
/src/sbin/newfs_udf/ |
udf_core.c | 866 usecs = timestamp->usec + 100*timestamp->hund_usec + 10000*timestamp->centisec; 908 * The husec, usec and csec could be relaxed in type. 914 uint64_t husec, usec, csec; local in function:udf_timespec_to_timestamp 936 usec = (timespec->tv_nsec + 500) / 1000; /* round */ 937 husec = usec / 100; 938 usec -= husec * 100; /* only 0-99 in usec */ 945 usec = MIN(99, usec); 949 timestamp->usec = usec [all...] |
/src/sys/arch/hppa/include/ |
pdc.h | 488 u_int usec; /* accurate to microseconds */ member in struct:pdc_tod
|
/src/sys/dev/pci/ |
if_wm.c | 4860 /* Set EEE LPI Update Timer to 200usec */ 10655 * Set the Beacon Duration for I217 to 8 usec 14374 int usec; local in function:wm_nvm_ready_spi 14379 for (usec = 0; usec < SPI_MAX_RETRIES; delay(5), usec += 5) { 14385 if (usec >= SPI_MAX_RETRIES) {
|