Home
last modified time | relevance | path

Searched refs:msec (Results 1 – 25 of 32) sorted by relevance

12

/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_times.c12 static ngx_msec_t ngx_monotonic_time(time_t sec, ngx_uint_t msec);
86 ngx_uint_t msec; in ngx_time_update() local
97 msec = tv.tv_usec / 1000; in ngx_time_update()
99 ngx_current_msec = ngx_monotonic_time(sec, msec); in ngx_time_update()
104 tp->msec = msec; in ngx_time_update()
118 tp->msec = msec; in ngx_time_update()
196 ngx_monotonic_time(time_t sec, ngx_uint_t msec) in ngx_monotonic_time() argument
212 msec = ts.tv_nsec / 1000000; in ngx_monotonic_time()
216 return (ngx_msec_t) sec * 1000 + msec; in ngx_monotonic_time()
H A Dngx_times.h18 ngx_uint_t msec; member
/f-stack/app/redis-5.0.5/deps/hiredis/
H A Dnet.c184 long msec = -1; in redisContextTimeoutMsec() local
189 *result = msec; in redisContextTimeoutMsec()
193 msec = (timeout->tv_sec * 1000) + ((timeout->tv_usec + 999) / 1000); in redisContextTimeoutMsec()
195 if (msec < 0 || msec > INT_MAX) { in redisContextTimeoutMsec()
196 msec = INT_MAX; in redisContextTimeoutMsec()
200 *result = msec; in redisContextTimeoutMsec()
204 static int redisContextWaitReady(redisContext *c, long msec) { in redisContextWaitReady() argument
213 if ((res = poll(wfd, 1, msec)) == -1) { in redisContextWaitReady()
/f-stack/freebsd/contrib/device-tree/Bindings/iio/accel/
H A Dlis302.txt30 - st,click-click-time-limit: click time limit, from 0 to 127.5msec
31 with step of 0.5 msec
32 - st,click-latency: click latency, from 0 to 255 msec with
33 step of 1 msec.
34 - st,click-window: click window, from 0 to 255 msec with
35 step of 1 msec.
/f-stack/freebsd/contrib/openzfs/include/os/freebsd/zfs/sys/
H A Dzfs_context_os.h74 #define MSEC_TO_TICK(msec) (howmany((hrtime_t)(msec) * hz, MILLISEC)) argument
/f-stack/freebsd/contrib/vchiq/interface/compat/
H A Dvchi_bsd.h373 #define mdelay(msec) DELAY((msec) * 1000) argument
380 #define msleep(msec) mdelay(msec) argument
/f-stack/freebsd/arm/nvidia/
H A Dtegra_rtc.c131 uint32_t msec, sec; in tegra_rtc_gettime() local
136 msec = RD4(sc, RTC_MILLI_SECONDS); in tegra_rtc_gettime()
140 tv.tv_usec = msec * 1000; in tegra_rtc_gettime()
/f-stack/freebsd/netinet/
H A Dtcp_hostcache.c648 #define msec(u) (((u) + 500) / 1000) in sysctl_tcp_hc_list() macro
665 msec((u_long)hc_entry->rmx_rtt * in sysctl_tcp_hc_list()
667 msec((u_long)hc_entry->rmx_rttvar * in sysctl_tcp_hc_list()
678 #undef msec in sysctl_tcp_hc_list()
/f-stack/freebsd/contrib/device-tree/Bindings/sound/
H A Drockchip,rk3328-codec.txt11 - spk-depop-time-ms: speak depop time msec.
H A Drockchip,rk3328-codec.yaml37 Speaker depop time in msec.
/f-stack/app/nginx-1.16.1/src/os/unix/
H A Dngx_posix_init.c92 srandom(((unsigned) ngx_pid << 16) ^ tp->sec ^ tp->msec); in ngx_os_init()
H A Dngx_process_cycle.c1138 srandom(((unsigned) ngx_pid << 16) ^ tp->sec ^ tp->msec); in ngx_worker_process_init()
/f-stack/freebsd/contrib/device-tree/src/powerpc/
H A Dmotionpro.dts15 blink-delay = <100>; // 100 msec
/f-stack/doc/
H A DF-Stack_Nginx_APP_Guide.md69 Sets a time interval for polling kernel_network_stack. The default value is 30 msec.
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dzfs_context.h614 #define MSEC_TO_TICK(msec) (howmany((hrtime_t)(msec) * hz, MILLISEC))
/f-stack/freebsd/i386/include/
H A Dcserial.h461 void (*send_break) (chan_t *h, int msec);
/f-stack/app/nginx-1.16.1/src/stream/
H A Dngx_stream_handler.c174 s->start_msec = tp->msec; in ngx_stream_init_connection()
H A Dngx_stream_variables.c700 ((tp->sec - s->start_sec) * 1000 + (tp->msec - s->start_msec)); in ngx_stream_variable_session_time()
815 v->len = ngx_sprintf(p, "%T.%03M", tp->sec, tp->msec) - p; in ngx_stream_variable_msec()
/f-stack/tools/route/
H A Droute.c1861 #define msec(u) (((u) + 500) / 1000) /* usec to msec */ macro
1867 printf("%8lu%c ", msec(rtm->rtm_rmx.rmx_rtt), lock(RTT));
1877 #undef msec
/f-stack/dpdk/drivers/net/hns3/
H A Dhns3_ethdev_vf.c2570 uint64_t msec; in hns3vf_reset_service() local
2599 msec = tv_delta.tv_sec * MSEC_PER_SEC + in hns3vf_reset_service()
2601 if (msec > HNS3_RESET_PROCESS_MS) in hns3vf_reset_service()
2604 hw->reset.level, msec, tv.tv_sec, tv.tv_usec); in hns3vf_reset_service()
H A Dhns3_intr.c1823 uint64_t msec; in hns3_wait_callback() local
1832 msec = get_timeofday_ms(); in hns3_wait_callback()
1833 if (msec > data->end_ms || is_reset_pending(hns) || in hns3_wait_callback()
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dvhost.rst144 **--rx-retry-delay msec**
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_log_module.c833 return ngx_sprintf(buf, "%T.%03M", tp->sec, tp->msec); in ngx_http_log_msec()
847 ((tp->sec - r->start_sec) * 1000 + (tp->msec - r->start_msec)); in ngx_http_log_request_time()
/f-stack/app/nginx-1.16.1/src/event/
H A Dngx_event.c608 ngx_random_number = (tp->msec << 16) + ngx_pid; in ngx_event_module_init()
/f-stack/app/nginx-1.16.1/
H A DCHANGES.ru2304 *) Добавление: переменные $request_time и $msec теперь можно
7334 $connection, $pipe и $msec. Параметры в виде "%name" скоро будут
7414 *) Изменение: параметр лога $msec теперь не требует дополнительного

12