d                  42 core/ngx_array.c     if ((u_char *) a->elts + a->size * a->nalloc == p->d.last) {
d                  43 core/ngx_array.c         p->d.last -= a->size * a->nalloc;
d                  46 core/ngx_array.c     if ((u_char *) a + sizeof(ngx_array_t) == p->d.last) {
d                  47 core/ngx_array.c         p->d.last = (u_char *) a;
d                  67 core/ngx_array.c         if ((u_char *) a->elts + size == p->d.last
d                  68 core/ngx_array.c             && p->d.last + a->size <= p->d.end)
d                  75 core/ngx_array.c             p->d.last += a->size;
d                 115 core/ngx_array.c         if ((u_char *) a->elts + a->size * a->nalloc == p->d.last
d                 116 core/ngx_array.c             && p->d.last + size <= p->d.end)
d                 123 core/ngx_array.c             p->d.last += size;
d                1468 core/ngx_conf_file.c     ngx_conf_deprecated_t  *d = post;
d                1473 core/ngx_conf_file.c                        d->old_name, d->new_name);
d                  96 core/ngx_config.h #define ngx_align(d, a)     (((d) + (a - 1)) & ~(a - 1))
d                  64 core/ngx_inet.c     u_char      c, *zero, *digit, *s, *d;
d                 159 core/ngx_inet.c             d = s + n;
d                 161 core/ngx_inet.c                 *d-- = *s--;
d                 372 core/ngx_log.c     ngx_uint_t   i, n, d;
d                 394 core/ngx_log.c         for (n = 0, d = NGX_LOG_DEBUG_FIRST; d <= NGX_LOG_DEBUG_LAST; d <<= 1) {
d                 403 core/ngx_log.c                 log->log_level |= d;
d                  25 core/ngx_palloc.c     p->d.last = (u_char *) p + sizeof(ngx_pool_t);
d                  26 core/ngx_palloc.c     p->d.end = (u_char *) p + size;
d                  27 core/ngx_palloc.c     p->d.next = NULL;
d                  28 core/ngx_palloc.c     p->d.failed = 0;
d                  74 core/ngx_palloc.c     for (p = pool, n = pool->d.next; /* void */; p = n, n = n->d.next) {
d                  76 core/ngx_palloc.c                        "free: %p, unused: %uz", p, p->d.end - p->d.last);
d                  85 core/ngx_palloc.c     for (p = pool, n = pool->d.next; /* void */; p = n, n = n->d.next) {
d                 109 core/ngx_palloc.c     for (p = pool; p; p = p->d.next) {
d                 110 core/ngx_palloc.c         p->d.last = (u_char *) p + sizeof(ngx_pool_t);
d                 126 core/ngx_palloc.c             m = ngx_align_ptr(p->d.last, NGX_ALIGNMENT);
d                 128 core/ngx_palloc.c             if ((size_t) (p->d.end - m) >= size) {
d                 129 core/ngx_palloc.c                 p->d.last = m + size;
d                 134 core/ngx_palloc.c             p = p->d.next;
d                 156 core/ngx_palloc.c             m = p->d.last;
d                 158 core/ngx_palloc.c             if ((size_t) (p->d.end - m) >= size) {
d                 159 core/ngx_palloc.c                 p->d.last = m + size;
d                 164 core/ngx_palloc.c             p = p->d.next;
d                 182 core/ngx_palloc.c     psize = (size_t) (pool->d.end - (u_char *) pool);
d                 191 core/ngx_palloc.c     new->d.end = m + psize;
d                 192 core/ngx_palloc.c     new->d.next = NULL;
d                 193 core/ngx_palloc.c     new->d.failed = 0;
d                 197 core/ngx_palloc.c     new->d.last = m + size;
d                 201 core/ngx_palloc.c     for (p = current; p->d.next; p = p->d.next) {
d                 202 core/ngx_palloc.c         if (p->d.failed++ > 4) {
d                 203 core/ngx_palloc.c             current = p->d.next;
d                 207 core/ngx_palloc.c     p->d.next = new;
d                  57 core/ngx_palloc.h     ngx_pool_data_t       d;
d                1805 core/ngx_resolver.c     u_char                *p, *d;
d                1840 core/ngx_resolver.c         d = ngx_sprintf(&p[1], "%ud", (ctx->addr >> n) & 0xff);
d                1841 core/ngx_resolver.c         *p = (u_char) (d - &p[1]);
d                1842 core/ngx_resolver.c         p = d;
d                 147 core/ngx_string.c     int                    d;
d                 411 core/ngx_string.c                 d = va_arg(args, int);
d                 412 core/ngx_string.c                 *buf++ = (u_char) (d & 0xff);
d                1059 core/ngx_string.c     u_char         *d, *s;
d                1066 core/ngx_string.c     d = dst->data;
d                1069 core/ngx_string.c         *d++ = basis64[(s[0] >> 2) & 0x3f];
d                1070 core/ngx_string.c         *d++ = basis64[((s[0] & 3) << 4) | (s[1] >> 4)];
d                1071 core/ngx_string.c         *d++ = basis64[((s[1] & 0x0f) << 2) | (s[2] >> 6)];
d                1072 core/ngx_string.c         *d++ = basis64[s[2] & 0x3f];
d                1079 core/ngx_string.c         *d++ = basis64[(s[0] >> 2) & 0x3f];
d                1082 core/ngx_string.c             *d++ = basis64[(s[0] & 3) << 4];
d                1083 core/ngx_string.c             *d++ = '=';
d                1086 core/ngx_string.c             *d++ = basis64[((s[0] & 3) << 4) | (s[1] >> 4)];
d                1087 core/ngx_string.c             *d++ = basis64[(s[1] & 0x0f) << 2];
d                1090 core/ngx_string.c         *d++ = '=';
d                1093 core/ngx_string.c     dst->len = d - dst->data;
d                1155 core/ngx_string.c     u_char         *d, *s;
d                1172 core/ngx_string.c     d = dst->data;
d                1175 core/ngx_string.c         *d++ = (u_char) (basis[s[0]] << 2 | basis[s[1]] >> 4);
d                1176 core/ngx_string.c         *d++ = (u_char) (basis[s[1]] << 4 | basis[s[2]] >> 2);
d                1177 core/ngx_string.c         *d++ = (u_char) (basis[s[2]] << 6 | basis[s[3]]);
d                1184 core/ngx_string.c         *d++ = (u_char) (basis[s[0]] << 2 | basis[s[1]] >> 4);
d                1188 core/ngx_string.c         *d++ = (u_char) (basis[s[1]] << 4 | basis[s[2]] >> 2);
d                1191 core/ngx_string.c     dst->len = d - dst->data;
d                1488 core/ngx_string.c     u_char  *d, *s, ch, c, decoded;
d                1495 core/ngx_string.c     d = *dst;
d                1510 core/ngx_string.c                 *d++ = ch;
d                1519 core/ngx_string.c             *d++ = ch;
d                1541 core/ngx_string.c             *d++ = ch;
d                1554 core/ngx_string.c                         *d++ = ch;
d                1558 core/ngx_string.c                     *d++ = '%'; *d++ = *(s - 2); *d++ = *(s - 1);
d                1563 core/ngx_string.c                 *d++ = ch;
d                1574 core/ngx_string.c                         *d++ = ch;
d                1578 core/ngx_string.c                     *d++ = ch;
d                1584 core/ngx_string.c                         *d++ = ch;
d                1589 core/ngx_string.c                         *d++ = ch;
d                1593 core/ngx_string.c                     *d++ = '%'; *d++ = *(s - 2); *d++ = *(s - 1);
d                1597 core/ngx_string.c                 *d++ = ch;
d                1610 core/ngx_string.c     *dst = d;
d                 562 event/ngx_event_openssl.c         char         buf[129], *s, *d;
d                 573 event/ngx_event_openssl.c             for (s = &buf[1], d = buf; *s; s++) {
d                 574 event/ngx_event_openssl.c                 if (*s == ' ' && *d == ' ') {
d                 582 event/ngx_event_openssl.c                 *++d = *s;
d                 585 event/ngx_event_openssl.c             if (*d != ' ') {
d                 586 event/ngx_event_openssl.c                 d++;
d                 589 event/ngx_event_openssl.c             *d = '\0';
d                 288 http/modules/ngx_http_dav_module.c     ngx_uint_t                i, d, dir;
d                 302 http/modules/ngx_http_dav_module.c         d = 0;
d                 306 http/modules/ngx_http_dav_module.c                 if (++d >= dlcf->min_delete_depth && i < r->uri.len) {
d                 313 http/modules/ngx_http_dav_module.c                       "insufficient URI depth:%i to DELETE", d);
d                2019 http/ngx_http_core_module.c     ngx_table_elt_t           *e, *d;
d                2082 http/ngx_http_core_module.c         d = r->headers_out.date;
d                2084 http/ngx_http_core_module.c         if (d) {
d                2085 http/ngx_http_core_module.c             date = ngx_http_parse_time(d->value.data, d->value.len);
d                 142 mail/ngx_mail_imap_module.c     ngx_str_t   *c, *d;
d                 161 mail/ngx_mail_imap_module.c         for (d = ngx_mail_imap_default_capabilities; d->len; d++) {
d                 167 mail/ngx_mail_imap_module.c             *c = *d;
d                 139 mail/ngx_mail_pop3_module.c     ngx_str_t   *c, *d;
d                 153 mail/ngx_mail_pop3_module.c         for (d = ngx_mail_pop3_default_capabilities; d->len; d++) {
d                 159 mail/ngx_mail_pop3_module.c             *c = *d;
d                 194 os/unix/ngx_files.h #define ngx_close_dir(d)         closedir((d)->dir)