part              903 core/ngx_conf_file.c     ngx_list_part_t  *part;
part              917 core/ngx_conf_file.c         part = &cycle->open_files.part;
part              918 core/ngx_conf_file.c         file = part->elts;
part              922 core/ngx_conf_file.c             if (i >= part->nelts) {
part              923 core/ngx_conf_file.c                 if (part->next == NULL) {
part              926 core/ngx_conf_file.c                 part = part->next;
part              927 core/ngx_conf_file.c                 file = part->elts;
part              966 core/ngx_conf_file.c     ngx_list_part_t  *part;
part              971 core/ngx_conf_file.c     part = &cycle->open_files.part;
part              972 core/ngx_conf_file.c     file = part->elts;
part              976 core/ngx_conf_file.c         if (i >= part->nelts) {
part              977 core/ngx_conf_file.c             if (part->next == NULL) {
part              980 core/ngx_conf_file.c             part = part->next;
part              981 core/ngx_conf_file.c             file = part->elts;
part               53 core/ngx_cycle.c     ngx_list_part_t     *part, *opart;
part              134 core/ngx_cycle.c     if (old_cycle->open_files.part.nelts) {
part              135 core/ngx_cycle.c         n = old_cycle->open_files.part.nelts;
part              136 core/ngx_cycle.c         for (part = old_cycle->open_files.part.next; part; part = part->next) {
part              137 core/ngx_cycle.c             n += part->nelts;
part              152 core/ngx_cycle.c     if (old_cycle->shared_memory.part.nelts) {
part              153 core/ngx_cycle.c         n = old_cycle->shared_memory.part.nelts;
part              154 core/ngx_cycle.c         for (part = old_cycle->shared_memory.part.next; part; part = part->next)
part              156 core/ngx_cycle.c             n += part->nelts;
part              350 core/ngx_cycle.c     part = &cycle->open_files.part;
part              351 core/ngx_cycle.c     file = part->elts;
part              355 core/ngx_cycle.c         if (i >= part->nelts) {
part              356 core/ngx_cycle.c             if (part->next == NULL) {
part              359 core/ngx_cycle.c             part = part->next;
part              360 core/ngx_cycle.c             file = part->elts;
part              400 core/ngx_cycle.c     part = &cycle->shared_memory.part;
part              401 core/ngx_cycle.c     shm_zone = part->elts;
part              405 core/ngx_cycle.c         if (i >= part->nelts) {
part              406 core/ngx_cycle.c             if (part->next == NULL) {
part              409 core/ngx_cycle.c             part = part->next;
part              410 core/ngx_cycle.c             shm_zone = part->elts;
part              428 core/ngx_cycle.c         opart = &old_cycle->shared_memory.part;
part              611 core/ngx_cycle.c     opart = &old_cycle->shared_memory.part;
part              625 core/ngx_cycle.c         part = &cycle->shared_memory.part;
part              626 core/ngx_cycle.c         shm_zone = part->elts;
part              630 core/ngx_cycle.c             if (n >= part->nelts) {
part              631 core/ngx_cycle.c                 if (part->next == NULL) {
part              634 core/ngx_cycle.c                 part = part->next;
part              635 core/ngx_cycle.c                 shm_zone = part->elts;
part              696 core/ngx_cycle.c     part = &old_cycle->open_files.part;
part              697 core/ngx_cycle.c     file = part->elts;
part              701 core/ngx_cycle.c         if (i >= part->nelts) {
part              702 core/ngx_cycle.c             if (part->next == NULL) {
part              705 core/ngx_cycle.c             part = part->next;
part              706 core/ngx_cycle.c             file = part->elts;
part              796 core/ngx_cycle.c     part = &cycle->open_files.part;
part              797 core/ngx_cycle.c     file = part->elts;
part              801 core/ngx_cycle.c         if (i >= part->nelts) {
part              802 core/ngx_cycle.c             if (part->next == NULL) {
part              805 core/ngx_cycle.c             part = part->next;
part              806 core/ngx_cycle.c             file = part->elts;
part             1121 core/ngx_cycle.c     ngx_list_part_t  *part;
part             1124 core/ngx_cycle.c     part = &cycle->open_files.part;
part             1125 core/ngx_cycle.c     file = part->elts;
part             1129 core/ngx_cycle.c         if (i >= part->nelts) {
part             1130 core/ngx_cycle.c             if (part->next == NULL) {
part             1133 core/ngx_cycle.c             part = part->next;
part             1134 core/ngx_cycle.c             file = part->elts;
part             1266 core/ngx_cycle.c     ngx_list_part_t  *part;
part             1268 core/ngx_cycle.c     part = &cf->cycle->shared_memory.part;
part             1269 core/ngx_cycle.c     shm_zone = part->elts;
part             1273 core/ngx_cycle.c         if (i >= part->nelts) {
part             1274 core/ngx_cycle.c             if (part->next == NULL) {
part             1277 core/ngx_cycle.c             part = part->next;
part             1278 core/ngx_cycle.c             shm_zone = part->elts;
part               21 core/ngx_list.c     list->part.elts = ngx_palloc(pool, n * size);
part               22 core/ngx_list.c     if (list->part.elts == NULL) {
part               26 core/ngx_list.c     list->part.nelts = 0;
part               27 core/ngx_list.c     list->part.next = NULL;
part               28 core/ngx_list.c     list->last = &list->part;
part               26 core/ngx_list.h     ngx_list_part_t   part;
part               38 core/ngx_list.h     list->part.elts = ngx_palloc(pool, n * size);
part               39 core/ngx_list.h     if (list->part.elts == NULL) {
part               43 core/ngx_list.h     list->part.nelts = 0;
part               44 core/ngx_list.h     list->part.next = NULL;
part               45 core/ngx_list.h     list->last = &list->part;
part              697 http/modules/ngx_http_fastcgi_module.c     ngx_list_part_t              *part;
part              746 http/modules/ngx_http_fastcgi_module.c         part = &r->headers_in.headers.part;
part              747 http/modules/ngx_http_fastcgi_module.c         header = part->elts;
part              751 http/modules/ngx_http_fastcgi_module.c             if (i >= part->nelts) {
part              752 http/modules/ngx_http_fastcgi_module.c                 if (part->next == NULL) {
part              756 http/modules/ngx_http_fastcgi_module.c                 part = part->next;
part              757 http/modules/ngx_http_fastcgi_module.c                 header = part->elts;
part              903 http/modules/ngx_http_fastcgi_module.c         part = &r->headers_in.headers.part;
part              904 http/modules/ngx_http_fastcgi_module.c         header = part->elts;
part              908 http/modules/ngx_http_fastcgi_module.c             if (i >= part->nelts) {
part              909 http/modules/ngx_http_fastcgi_module.c                 if (part->next == NULL) {
part              913 http/modules/ngx_http_fastcgi_module.c                 part = part->next;
part              914 http/modules/ngx_http_fastcgi_module.c                 header = part->elts;
part             1149 http/modules/ngx_http_fastcgi_module.c     ngx_http_fastcgi_split_part_t  *part;
part             1381 http/modules/ngx_http_fastcgi_module.c                     part = f->split_parts->elts;
part             1385 http/modules/ngx_http_fastcgi_module.c                         size += part[i].end - part[i].start;
part             1396 http/modules/ngx_http_fastcgi_module.c                         p = ngx_cpymem(p, part[i].start,
part             1397 http/modules/ngx_http_fastcgi_module.c                                        part[i].end - part[i].start);
part             1554 http/modules/ngx_http_fastcgi_module.c         part = ngx_array_push(f->split_parts);
part             1556 http/modules/ngx_http_fastcgi_module.c         part->start = part_start;
part             1557 http/modules/ngx_http_fastcgi_module.c         part->end = part_end;
part              841 http/modules/ngx_http_proxy_module.c     ngx_list_part_t              *part;
part              935 http/modules/ngx_http_proxy_module.c         part = &r->headers_in.headers.part;
part              936 http/modules/ngx_http_proxy_module.c         header = part->elts;
part              940 http/modules/ngx_http_proxy_module.c             if (i >= part->nelts) {
part              941 http/modules/ngx_http_proxy_module.c                 if (part->next == NULL) {
part              945 http/modules/ngx_http_proxy_module.c                 part = part->next;
part              946 http/modules/ngx_http_proxy_module.c                 header = part->elts;
part             1053 http/modules/ngx_http_proxy_module.c         part = &r->headers_in.headers.part;
part             1054 http/modules/ngx_http_proxy_module.c         header = part->elts;
part             1058 http/modules/ngx_http_proxy_module.c             if (i >= part->nelts) {
part             1059 http/modules/ngx_http_proxy_module.c                 if (part->next == NULL) {
part             1063 http/modules/ngx_http_proxy_module.c                 part = part->next;
part             1064 http/modules/ngx_http_proxy_module.c                 header = part->elts;
part              113 http/modules/ngx_http_realip_module.c     ngx_list_part_t             *part;
part              173 http/modules/ngx_http_realip_module.c         part = &r->headers_in.headers.part;
part              174 http/modules/ngx_http_realip_module.c         header = part->elts;
part              182 http/modules/ngx_http_realip_module.c             if (i >= part->nelts) {
part              183 http/modules/ngx_http_realip_module.c                 if (part->next == NULL) {
part              187 http/modules/ngx_http_realip_module.c                 part = part->next;
part              188 http/modules/ngx_http_realip_module.c                 header = part->elts;
part              518 http/modules/ngx_http_scgi_module.c     ngx_list_part_t              *part;
part              570 http/modules/ngx_http_scgi_module.c         part = &r->headers_in.headers.part;
part              571 http/modules/ngx_http_scgi_module.c         header = part->elts;
part              575 http/modules/ngx_http_scgi_module.c             if (i >= part->nelts) {
part              576 http/modules/ngx_http_scgi_module.c                 if (part->next == NULL) {
part              580 http/modules/ngx_http_scgi_module.c                 part = part->next;
part              581 http/modules/ngx_http_scgi_module.c                 header = part->elts;
part              676 http/modules/ngx_http_scgi_module.c         part = &r->headers_in.headers.part;
part              677 http/modules/ngx_http_scgi_module.c         header = part->elts;
part              681 http/modules/ngx_http_scgi_module.c             if (i >= part->nelts) {
part              682 http/modules/ngx_http_scgi_module.c                 if (part->next == NULL) {
part              686 http/modules/ngx_http_scgi_module.c                 part = part->next;
part              687 http/modules/ngx_http_scgi_module.c                 header = part->elts;
part               82 http/modules/ngx_http_split_clients_module.c     ngx_http_split_clients_part_t  *part;
part               92 http/modules/ngx_http_split_clients_module.c     part = ctx->parts.elts;
part               97 http/modules/ngx_http_split_clients_module.c                        "%D %D", hash, part[i].percent);
part               99 http/modules/ngx_http_split_clients_module.c         if (hash < part[i].percent) {
part              100 http/modules/ngx_http_split_clients_module.c             *v = part[i].value;
part              118 http/modules/ngx_http_split_clients_module.c     ngx_http_split_clients_part_t       *part;
part              172 http/modules/ngx_http_split_clients_module.c     part = ctx->parts.elts;
part              175 http/modules/ngx_http_split_clients_module.c         sum = part[i].percent ? sum + part[i].percent : 10000;
part              182 http/modules/ngx_http_split_clients_module.c         if (part[i].percent) {
part              183 http/modules/ngx_http_split_clients_module.c             part[i].percent = (uint32_t)
part              184 http/modules/ngx_http_split_clients_module.c                                  (last + 0xffffffff / 10000 * part[i].percent);
part              186 http/modules/ngx_http_split_clients_module.c             part[i].percent = 0xffffffff;
part              189 http/modules/ngx_http_split_clients_module.c         last = part[i].percent;
part              202 http/modules/ngx_http_split_clients_module.c     ngx_http_split_clients_part_t  *part;
part              207 http/modules/ngx_http_split_clients_module.c     part = ngx_array_push(&ctx->parts);
part              208 http/modules/ngx_http_split_clients_module.c     if (part == NULL) {
part              213 http/modules/ngx_http_split_clients_module.c         part->percent = 0;
part              225 http/modules/ngx_http_split_clients_module.c         part->percent = (uint32_t) n;
part              228 http/modules/ngx_http_split_clients_module.c     part->value.len = value[1].len;
part              229 http/modules/ngx_http_split_clients_module.c     part->value.valid = 1;
part              230 http/modules/ngx_http_split_clients_module.c     part->value.no_cacheable = 0;
part              231 http/modules/ngx_http_split_clients_module.c     part->value.not_found = 0;
part              232 http/modules/ngx_http_split_clients_module.c     part->value.data = value[1].data;
part             1528 http/modules/ngx_http_ssi_filter_module.c     ngx_list_part_t     *part;
part             1538 http/modules/ngx_http_ssi_filter_module.c     part = &ctx->variables->part;
part             1539 http/modules/ngx_http_ssi_filter_module.c     var = part->elts;
part             1543 http/modules/ngx_http_ssi_filter_module.c         if (i >= part->nelts) {
part             1544 http/modules/ngx_http_ssi_filter_module.c             if (part->next == NULL) {
part             1548 http/modules/ngx_http_ssi_filter_module.c             part = part->next;
part             1549 http/modules/ngx_http_ssi_filter_module.c             var = part->elts;
part              550 http/modules/ngx_http_uwsgi_module.c     ngx_list_part_t              *part;
part              598 http/modules/ngx_http_uwsgi_module.c         part = &r->headers_in.headers.part;
part              599 http/modules/ngx_http_uwsgi_module.c         header = part->elts;
part              603 http/modules/ngx_http_uwsgi_module.c             if (i >= part->nelts) {
part              604 http/modules/ngx_http_uwsgi_module.c                 if (part->next == NULL) {
part              608 http/modules/ngx_http_uwsgi_module.c                 part = part->next;
part              609 http/modules/ngx_http_uwsgi_module.c                 header = part->elts;
part              724 http/modules/ngx_http_uwsgi_module.c         part = &r->headers_in.headers.part;
part              725 http/modules/ngx_http_uwsgi_module.c         header = part->elts;
part              729 http/modules/ngx_http_uwsgi_module.c             if (i >= part->nelts) {
part              730 http/modules/ngx_http_uwsgi_module.c                 if (part->next == NULL) {
part              734 http/modules/ngx_http_uwsgi_module.c                 part = part->next;
part              735 http/modules/ngx_http_uwsgi_module.c                 header = part->elts;
part              162 http/ngx_http_header_filter_module.c     ngx_list_part_t           *part;
part              415 http/ngx_http_header_filter_module.c     part = &r->headers_out.headers.part;
part              416 http/ngx_http_header_filter_module.c     header = part->elts;
part              420 http/ngx_http_header_filter_module.c         if (i >= part->nelts) {
part              421 http/ngx_http_header_filter_module.c             if (part->next == NULL) {
part              425 http/ngx_http_header_filter_module.c             part = part->next;
part              426 http/ngx_http_header_filter_module.c             header = part->elts;
part              575 http/ngx_http_header_filter_module.c     part = &r->headers_out.headers.part;
part              576 http/ngx_http_header_filter_module.c     header = part->elts;
part              580 http/ngx_http_header_filter_module.c         if (i >= part->nelts) {
part              581 http/ngx_http_header_filter_module.c             if (part->next == NULL) {
part              585 http/ngx_http_header_filter_module.c             part = part->next;
part              586 http/ngx_http_header_filter_module.c             header = part->elts;
part              515 http/ngx_http_special_response.c     r->headers_out.headers.part.nelts = 0;
part              516 http/ngx_http_special_response.c     r->headers_out.headers.part.next = NULL;
part              517 http/ngx_http_special_response.c     r->headers_out.headers.last = &r->headers_out.headers.part;
part             1805 http/ngx_http_upstream.c     ngx_list_part_t                *part;
part             1817 http/ngx_http_upstream.c         part = &u->headers_in.headers.part;
part             1818 http/ngx_http_upstream.c         h = part->elts;
part             1822 http/ngx_http_upstream.c             if (i >= part->nelts) {
part             1823 http/ngx_http_upstream.c                 if (part->next == NULL) {
part             1827 http/ngx_http_upstream.c                 part = part->next;
part             1828 http/ngx_http_upstream.c                 h = part->elts;
part             1864 http/ngx_http_upstream.c     part = &u->headers_in.headers.part;
part             1865 http/ngx_http_upstream.c     h = part->elts;
part             1869 http/ngx_http_upstream.c         if (i >= part->nelts) {
part             1870 http/ngx_http_upstream.c             if (part->next == NULL) {
part             1874 http/ngx_http_upstream.c             part = part->next;
part             1875 http/ngx_http_upstream.c             h = part->elts;
part             3911 http/ngx_http_upstream.c                                          &r->upstream->headers_in.headers.part,
part              704 http/ngx_http_variables.c                                             &r->headers_in.headers.part,
part              714 http/ngx_http_variables.c                                             &r->headers_out.headers.part,
part              721 http/ngx_http_variables.c     ngx_list_part_t *part, size_t prefix)
part              727 http/ngx_http_variables.c     header = part->elts;
part              731 http/ngx_http_variables.c         if (i >= part->nelts) {
part              732 http/ngx_http_variables.c             if (part->next == NULL) {
part              736 http/ngx_http_variables.c             part = part->next;
part              737 http/ngx_http_variables.c             header = part->elts;
part             1396 http/ngx_http_variables.c                                             &r->headers_out.headers.part,
part               56 http/ngx_http_variables.h     ngx_str_t *var, ngx_list_part_t *part, size_t prefix);