lr                146 http/modules/ngx_http_limit_req_module.c     ngx_http_limit_req_node_t  *lr;
lr                212 http/modules/ngx_http_limit_req_module.c         lr = (ngx_http_limit_req_node_t *) &node->color;
lr                215 http/modules/ngx_http_limit_req_module.c         lr->len = (u_char) len;
lr                218 http/modules/ngx_http_limit_req_module.c         lr->last = (ngx_msec_t) (tp->sec * 1000 + tp->msec);
lr                220 http/modules/ngx_http_limit_req_module.c         lr->excess = 0;
lr                221 http/modules/ngx_http_limit_req_module.c         ngx_memcpy(lr->data, vv->data, len);
lr                225 http/modules/ngx_http_limit_req_module.c         ngx_queue_insert_head(&ctx->sh->queue, &lr->queue);
lr                353 http/modules/ngx_http_limit_req_module.c     ngx_http_limit_req_node_t  *lr;
lr                375 http/modules/ngx_http_limit_req_module.c             lr = (ngx_http_limit_req_node_t *) &node->color;
lr                377 http/modules/ngx_http_limit_req_module.c             rc = ngx_memn2cmp(data, lr->data, len, (size_t) lr->len);
lr                380 http/modules/ngx_http_limit_req_module.c                 ngx_queue_remove(&lr->queue);
lr                381 http/modules/ngx_http_limit_req_module.c                 ngx_queue_insert_head(&ctx->sh->queue, &lr->queue);
lr                386 http/modules/ngx_http_limit_req_module.c                 ms = (ngx_msec_int_t) (now - lr->last);
lr                388 http/modules/ngx_http_limit_req_module.c                 excess = lr->excess - ctx->rate * ngx_abs(ms) / 1000 + 1000;
lr                400 http/modules/ngx_http_limit_req_module.c                 lr->excess = excess;
lr                401 http/modules/ngx_http_limit_req_module.c                 lr->last = now;
lr                432 http/modules/ngx_http_limit_req_module.c     ngx_http_limit_req_node_t  *lr;
lr                452 http/modules/ngx_http_limit_req_module.c         lr = ngx_queue_data(q, ngx_http_limit_req_node_t, queue);
lr                456 http/modules/ngx_http_limit_req_module.c             ms = (ngx_msec_int_t) (now - lr->last);
lr                463 http/modules/ngx_http_limit_req_module.c             excess = lr->excess - ctx->rate * ms / 1000;
lr                473 http/modules/ngx_http_limit_req_module.c                    ((u_char *) lr - offsetof(ngx_rbtree_node_t, color));