Searched refs:tval (Results 76 - 82 of 82) sorted by relevance

1234

/freebsd-11-stable/contrib/tnftp/src/
H A Dftp.c907 struct timeval tval[2]; local
1147 (void)gettimeofday(&tval[0], NULL);
1148 tval[1].tv_sec = mtime;
1149 tval[1].tv_usec = 0;
1150 if (utimes(local, tval) == -1) {
/freebsd-11-stable/sys/compat/ndis/
H A Dsubr_ndis.c2554 NdisGetCurrentSystemTime(tval)
2555 uint64_t *tval;
2557 ntoskrnl_time(tval);
2564 NdisGetSystemUpTime(tval)
2565 uint32_t *tval;
2570 *tval = ts.tv_nsec / 1000000 + ts.tv_sec * 1000;
H A Dsubr_ntoskrnl.c1574 ntoskrnl_time(tval)
1575 uint64_t *tval;
1580 *tval = (uint64_t)ts.tv_nsec / 100 + (uint64_t)ts.tv_sec * 10000000 +
/freebsd-11-stable/sys/dev/nxge/xgehal/
H A Dxgehal-device.c3285 int tval, d, iwl_avg, len_avg, bytes_avg, bytes_hist, d_hist; local
3300 * tval - current value of this bimodal timer
3302 tval = hldev->bimodal_tti[ring_no].timer_val_us;
3358 if ((tval -_STEP) < hldev->config.bimodal_timer_lo_us)
3359 tval = hldev->config.bimodal_timer_lo_us;
3363 tval = hldev->config.bimodal_timer_lo_us;
3382 tval = hldev->config.bimodal_timer_lo_us;
3391 // xge_os_printf("d %d iwl_avg %d len_avg %d:%d:%d tval %d avg %d hist %d pstep %d",
3392 // d, iwl_avg, len_txavg, len_rxavg, len_avg, tval, d*bytes_avg,
3402 (tval
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libcurses/slave/
H A Dcurses_commands.c766 int tval; local
771 if (sscanf(args[0], "%d", &tval) == 0) {
777 timeout(tval); /* void return */
5650 int tval; local
5661 if (sscanf(args[1], "%d", &tval) == 0) {
5667 wtimeout(win, tval); /* void return */
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-sparc.c3402 bfd_vma tval = val;
3403 tval >>= 22;
3404 insn |= tval & 0x3fffff;
3391 bfd_vma tval = val; local
/freebsd-11-stable/sys/dev/isp/
H A Disp_library.c425 isp_fc_runstate(ispsoftc_t *isp, int chan, int tval) argument
433 res = isp_control(isp, ISPCTL_FCLINK_TEST, chan, tval);

Completed in 174 milliseconds

1234