new                55 core/ngx_array.c     void        *elt, *new;
new                81 core/ngx_array.c             new = ngx_palloc(p, 2 * size);
new                82 core/ngx_array.c             if (new == NULL) {
new                86 core/ngx_array.c             ngx_memcpy(new, a->elts, size);
new                87 core/ngx_array.c             a->elts = new;
new               102 core/ngx_array.c     void        *elt, *new;
new               131 core/ngx_array.c             new = ngx_palloc(p, nalloc * a->size);
new               132 core/ngx_array.c             if (new == NULL) {
new               136 core/ngx_array.c             ngx_memcpy(new, a->elts, a->nelts * a->size);
new               137 core/ngx_array.c             a->elts = new;
new               180 core/ngx_palloc.c     ngx_pool_t  *p, *new, *current;
new               189 core/ngx_palloc.c     new = (ngx_pool_t *) m;
new               191 core/ngx_palloc.c     new->d.end = m + psize;
new               192 core/ngx_palloc.c     new->d.next = NULL;
new               193 core/ngx_palloc.c     new->d.failed = 0;
new               197 core/ngx_palloc.c     new->d.last = m + size;
new               207 core/ngx_palloc.c     p->d.next = new;
new               209 core/ngx_palloc.c     pool->current = current ? current : new;
new               663 http/modules/ngx_http_userid_filter_module.c     u_char  *p, *new;
new               670 http/modules/ngx_http_userid_filter_module.c     new = ngx_pnalloc(cf->pool, sizeof("; domain=") - 1 + domain->len);
new               671 http/modules/ngx_http_userid_filter_module.c     if (new == NULL) {
new               675 http/modules/ngx_http_userid_filter_module.c     p = ngx_cpymem(new, "; domain=", sizeof("; domain=") - 1);
new               679 http/modules/ngx_http_userid_filter_module.c     domain->data = new;
new               690 http/modules/ngx_http_userid_filter_module.c     u_char  *p, *new;
new               692 http/modules/ngx_http_userid_filter_module.c     new = ngx_pnalloc(cf->pool, sizeof("; path=") - 1 + path->len);
new               693 http/modules/ngx_http_userid_filter_module.c     if (new == NULL) {
new               697 http/modules/ngx_http_userid_filter_module.c     p = ngx_cpymem(new, "; path=", sizeof("; path=") - 1);
new               701 http/modules/ngx_http_userid_filter_module.c     path->data = new;
new              1178 http/ngx_http_request.c     u_char                    *old, *new;
new              1263 http/ngx_http_request.c     new = b->start;
new              1265 http/ngx_http_request.c     ngx_memcpy(new, old, r->header_in->pos - old);
new              1267 http/ngx_http_request.c     b->pos = new + (r->header_in->pos - old);
new              1268 http/ngx_http_request.c     b->last = new + (r->header_in->pos - old);
new              1271 http/ngx_http_request.c         r->request_start = new;
new              1274 http/ngx_http_request.c             r->request_end = new + (r->request_end - old);
new              1277 http/ngx_http_request.c         r->method_end = new + (r->method_end - old);
new              1279 http/ngx_http_request.c         r->uri_start = new + (r->uri_start - old);
new              1280 http/ngx_http_request.c         r->uri_end = new + (r->uri_end - old);
new              1283 http/ngx_http_request.c             r->schema_start = new + (r->schema_start - old);
new              1284 http/ngx_http_request.c             r->schema_end = new + (r->schema_end - old);
new              1288 http/ngx_http_request.c             r->host_start = new + (r->host_start - old);
new              1290 http/ngx_http_request.c                 r->host_end = new + (r->host_end - old);
new              1295 http/ngx_http_request.c             r->port_start = new + (r->port_start - old);
new              1296 http/ngx_http_request.c             r->port_end = new + (r->port_end - old);
new              1300 http/ngx_http_request.c             r->uri_ext = new + (r->uri_ext - old);
new              1304 http/ngx_http_request.c             r->args_start = new + (r->args_start - old);
new              1308 http/ngx_http_request.c             r->http_protocol.data = new + (r->http_protocol.data - old);
new              1312 http/ngx_http_request.c         r->header_name_start = new;
new              1313 http/ngx_http_request.c         r->header_name_end = new + (r->header_name_end - old);
new              1314 http/ngx_http_request.c         r->header_start = new + (r->header_start - old);
new              1315 http/ngx_http_request.c         r->header_end = new + (r->header_end - old);
new               662 http/ngx_http_script.c     void    *new;
new               666 http/ngx_http_script.c     new = ngx_array_push_n(codes, size);
new               667 http/ngx_http_script.c     if (new == NULL) {
new               678 http/ngx_http_script.c     return new;
new                32 os/unix/ngx_atomic.h #define ngx_atomic_cmp_set(lock, old, new)                                    \
new                33 os/unix/ngx_atomic.h     AO_compare_and_swap(lock, old, new)
new                61 os/unix/ngx_atomic.h #define ngx_atomic_cmp_set(lock, old, new)                                    \
new                62 os/unix/ngx_atomic.h     OSAtomicCompareAndSwap64Barrier(old, new, (int64_t *) lock)
new                73 os/unix/ngx_atomic.h #define ngx_atomic_cmp_set(lock, old, new)                                    \
new                74 os/unix/ngx_atomic.h     OSAtomicCompareAndSwap32Barrier(old, new, (int32_t *) lock)