ms                152 core/ngx_string.c     ngx_msec_t             ms;
ms                282 core/ngx_string.c                 ms = (ngx_msec_t) va_arg(args, ngx_msec_t);
ms                283 core/ngx_string.c                 if ((ngx_msec_int_t) ms == -1) {
ms                288 core/ngx_string.c                     ui64 = (uint64_t) ms;
ms                350 http/modules/ngx_http_limit_req_module.c     ngx_msec_int_t              ms;
ms                386 http/modules/ngx_http_limit_req_module.c                 ms = (ngx_msec_int_t) (now - lr->last);
ms                388 http/modules/ngx_http_limit_req_module.c                 excess = lr->excess - ctx->rate * ngx_abs(ms) / 1000 + 1000;
ms                430 http/modules/ngx_http_limit_req_module.c     ngx_msec_int_t              ms;
ms                456 http/modules/ngx_http_limit_req_module.c             ms = (ngx_msec_int_t) (now - lr->last);
ms                457 http/modules/ngx_http_limit_req_module.c             ms = ngx_abs(ms);
ms                459 http/modules/ngx_http_limit_req_module.c             if (ms < 60000) {
ms                463 http/modules/ngx_http_limit_req_module.c             excess = lr->excess - ctx->rate * ms / 1000;
ms                540 http/modules/ngx_http_log_module.c     ngx_msec_int_t   ms;
ms                544 http/modules/ngx_http_log_module.c     ms = (ngx_msec_int_t)
ms                546 http/modules/ngx_http_log_module.c     ms = ngx_max(ms, 0);
ms                548 http/modules/ngx_http_log_module.c     return ngx_sprintf(buf, "%T.%03M", ms / 1000, ms % 1000);
ms               3779 http/ngx_http_upstream.c     ngx_msec_int_t              ms;
ms               3805 http/ngx_http_upstream.c             ms = (ngx_msec_int_t)
ms               3807 http/ngx_http_upstream.c             ms = ngx_max(ms, 0);
ms               3808 http/ngx_http_upstream.c             p = ngx_sprintf(p, "%d.%03d", ms / 1000, ms % 1000);
ms                 61 os/unix/ngx_time.h #define ngx_msleep(ms)        (void) usleep(ms * 1000)