Home
last modified time | relevance | path

Searched refs:last (Results 1 – 25 of 606) sorted by relevance

12345678910>>...25

/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_autoindex_module.c578 last = b->last; in ngx_http_autoindex_html()
587 last = b->last; in ngx_http_autoindex_html()
600 last = b->last; in ngx_http_autoindex_html()
605 last = b->last - 3; in ngx_http_autoindex_html()
647 b->last = ngx_cpymem(b->last, " -", in ngx_http_autoindex_html()
768 b->last = ngx_cpymem(b->last, "\", \"type\":\"", in ngx_http_autoindex_json()
805 *b->last++ = ')'; *b->last++ = ';'; in ngx_http_autoindex_json()
921 b->last = ngx_cpymem(b->last, "\" size=\"", in ngx_http_autoindex_xml()
926 *b->last++ = '"'; *b->last++ = '>'; in ngx_http_autoindex_xml()
936 *b->last++ = '<'; *b->last++ = '/'; in ngx_http_autoindex_xml()
[all …]
H A Dngx_http_memcached_module.c277 *b->last++ = 'g'; *b->last++ = 'e'; *b->last++ = 't'; *b->last++ = ' '; in ngx_http_memcached_create_request()
284 b->last = ngx_copy(b->last, vv->data, vv->len); in ngx_http_memcached_create_request()
296 *b->last++ = CR; *b->last++ = LF; in ngx_http_memcached_create_request()
526 last = b->last; in ngx_http_memcached_filter()
529 cl->buf->last = b->last; in ngx_http_memcached_filter()
543 if (ngx_strncmp(last, ngx_http_memcached_end, b->last - last) != 0) { in ngx_http_memcached_filter()
547 b->last = last; in ngx_http_memcached_filter()
548 cl->buf->last = last; in ngx_http_memcached_filter()
555 ctx->rest -= b->last - last; in ngx_http_memcached_filter()
556 b->last = last; in ngx_http_memcached_filter()
[all …]
H A Dngx_http_chunked_filter_module.c179 b->last = ngx_sprintf(chunk, "%xO" CRLF, size); in ngx_http_chunked_body_filter()
211 b->last = b->pos + 2; in ngx_http_chunked_body_filter()
289 b->last = b->pos; in ngx_http_chunked_create_trailers()
291 *b->last++ = CR; *b->last++ = LF; in ngx_http_chunked_create_trailers()
292 *b->last++ = '0'; in ngx_http_chunked_create_trailers()
293 *b->last++ = CR; *b->last++ = LF; in ngx_http_chunked_create_trailers()
318 b->last = ngx_copy(b->last, header[i].key.data, header[i].key.len); in ngx_http_chunked_create_trailers()
319 *b->last++ = ':'; *b->last++ = ' '; in ngx_http_chunked_create_trailers()
321 b->last = ngx_copy(b->last, header[i].value.data, header[i].value.len); in ngx_http_chunked_create_trailers()
322 *b->last++ = CR; *b->last++ = LF; in ngx_http_chunked_create_trailers()
[all …]
H A Dngx_http_grpc_module.c746 b->last = ngx_copy(b->last, ngx_http_grpc_connection_start, in ngx_http_grpc_create_request()
840 b->last = ngx_http_v2_write_value(b->last, r->uri.data, in ngx_http_grpc_create_request()
1187 last = 0; in ngx_http_grpc_body_output_filter()
1342 if (last) { in ngx_http_grpc_body_output_filter()
2475 last = b->last; in ngx_http_grpc_parse_header()
2661 last = b->last; in ngx_http_grpc_parse_fragment()
3242 last = b->last; in ngx_http_grpc_parse_rst_stream()
3326 last = b->last; in ngx_http_grpc_parse_goaway()
3439 last = b->last; in ngx_http_grpc_parse_window_update()
3548 last = b->last; in ngx_http_grpc_parse_settings()
[all …]
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_header_filter_module.c449 *b->last++ = CR; *b->last++ = LF; in ngx_http_header_filter()
465 b->last = ngx_cpymem(b->last, p, len); in ngx_http_header_filter()
473 *b->last++ = CR; *b->last++ = LF; in ngx_http_header_filter()
477 b->last = ngx_cpymem(b->last, "Content-Type: ", in ngx_http_header_filter()
497 *b->last++ = CR; *b->last++ = LF; in ngx_http_header_filter()
514 *b->last++ = CR; *b->last++ = LF; in ngx_http_header_filter()
530 *b->last++ = ':'; *b->last++ = '/'; *b->last++ = '/'; in ngx_http_header_filter()
546 *b->last++ = CR; *b->last++ = LF; in ngx_http_header_filter()
599 *b->last++ = ':'; *b->last++ = ' '; in ngx_http_header_filter()
602 *b->last++ = CR; *b->last++ = LF; in ngx_http_header_filter()
[all …]
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_list.c34 ngx_list_part_t *last; in ngx_list_push() local
36 last = l->last; in ngx_list_push()
38 if (last->nelts == l->nalloc) { in ngx_list_push()
43 if (last == NULL) { in ngx_list_push()
48 if (last->elts == NULL) { in ngx_list_push()
52 last->nelts = 0; in ngx_list_push()
53 last->next = NULL; in ngx_list_push()
55 l->last->next = last; in ngx_list_push()
56 l->last = last; in ngx_list_push()
59 elt = (char *) last->elts + l->size * last->nelts; in ngx_list_push()
[all …]
H A Dngx_proxy_protocol.c44 u_char *last);
48 ngx_proxy_protocol_read(ngx_connection_t *c, u_char *buf, u_char *last) in ngx_proxy_protocol_read() argument
57 len = last - buf; in ngx_proxy_protocol_read()
62 return ngx_proxy_protocol_v2_read(c, buf, last); in ngx_proxy_protocol_read()
89 if (p == last) { in ngx_proxy_protocol_read()
119 if (p == last) { in ngx_proxy_protocol_read()
131 if (p == last) { in ngx_proxy_protocol_read()
156 for ( /* void */ ; p < last - 1; p++) { in ngx_proxy_protocol_read()
176 if (last - buf < NGX_PROXY_PROTOCOL_MAX_HEADER) { in ngx_proxy_protocol_write()
211 return ngx_slprintf(buf, last, " %ui %ui" CRLF, port, lport); in ngx_proxy_protocol_write()
[all …]
H A Dngx_array.c37 if ((u_char *) a->elts + a->size * a->nalloc == p->d.last) { in ngx_array_destroy()
38 p->d.last -= a->size * a->nalloc; in ngx_array_destroy()
41 if ((u_char *) a + sizeof(ngx_array_t) == p->d.last) { in ngx_array_destroy()
42 p->d.last = (u_char *) a; in ngx_array_destroy()
62 if ((u_char *) a->elts + size == p->d.last in ngx_array_push()
63 && p->d.last + a->size <= p->d.end) in ngx_array_push()
70 p->d.last += a->size; in ngx_array_push()
110 if ((u_char *) a->elts + a->size * a->nalloc == p->d.last in ngx_array_push_n()
111 && p->d.last + size <= p->d.end) in ngx_array_push_n()
118 p->d.last += size; in ngx_array_push_n()
/f-stack/freebsd/contrib/zstd/lib/dictBuilder/
H A Ddivsufsort.c357 t = last - first; in ss_pivot()
371 last = ss_median3(Td, PA, last - 1 - (t << 1), last - 1 - t, last - 1); in ss_pivot()
496 last = a; in ss_mintrosort()
500 last = a; in ss_mintrosort()
564 last = a; in ss_rotate()
602 if(*(last - 1) < 0) { x = 1; p = PA + ~*(last - 1); } in ss_inplacemerge()
623 --last; in ss_inplacemerge()
1019 t = last - first; in tr_pivot()
1033 last = tr_median3(ISAd, last - 1 - (t << 1), last - 1 - t, last - 1); in tr_pivot()
1210 STACK_PUSH5(ISAd, b, last, tr_ilg(last - b), trlink); in tr_introsort()
[all …]
/f-stack/app/nginx-1.16.1/src/mail/
H A Dngx_mail_auth_http_module.c1256 *b->last++ = CR; *b->last++ = LF; in ngx_mail_auth_http_create_request()
1260 b->last = ngx_cpymem(b->last, in ngx_mail_auth_http_create_request()
1263 *b->last++ = CR; *b->last++ = LF; in ngx_mail_auth_http_create_request()
1267 *b->last++ = CR; *b->last++ = LF; in ngx_mail_auth_http_create_request()
1271 *b->last++ = CR; *b->last++ = LF; in ngx_mail_auth_http_create_request()
1284 *b->last++ = CR; *b->last++ = LF; in ngx_mail_auth_http_create_request()
1292 *b->last++ = CR; *b->last++ = LF; in ngx_mail_auth_http_create_request()
1298 *b->last++ = CR; *b->last++ = LF; in ngx_mail_auth_http_create_request()
1308 *b->last++ = CR; *b->last++ = LF; in ngx_mail_auth_http_create_request()
1313 *b->last++ = CR; *b->last++ = LF; in ngx_mail_auth_http_create_request()
[all …]
/f-stack/tools/libxo/tests/core/saved/
H A Dtest_07.X.out1last-name>გთხოვთ ახ</last-name><department>431</department><percent-time>90</percent-time><columns…
H A Dtest_07.XP.out16 <last-name>გთხოვთ ახ</last-name>
25 <last-name>Οὐχὶ ταὐτὰ παρίσταταί μοι Jones</last-name>
34 <last-name>Patterson</last-name>
43 <last-name>Meter &amp; Smith</last-name>
51 <last-name>012345678901234567890</last-name>
59 <last-name>საერთაშორისო</last-name>
H A Dtest_05.X.out1last-name>გთხოვთ ახ</last-name><department>431</department><percent-time>90</percent-time><benefit…
H A Dtest_05.XP.out35 <last-name>გთხოვთ ახ</last-name>
43 <last-name>Οὐχὶ ταὐτὰ παρίσταταί μοι Jones</last-name>
51 <last-name>Patterson</last-name>
59 <last-name>Meter &amp; Smith</last-name>
66 <last-name>012345678901234567890</last-name>
73 <last-name>საერთაშორისო</last-name>
81 <last-name>෴ණ්ණ෴෴ණ්ණ෴෴ණ්ණ෴෴෴</last-name>
H A Dtest_04.X.out1last-name>Jones</last-name><department>660</department></employee><employee><first-name>Leslie</fi…
H A Dtest_04.XP.out4 <last-name>Jones</last-name>
9 <last-name>Patterson</last-name>
14 <last-name>Smith</last-name>
H A Dtest_06.XP.out4 <last-name>Jones</last-name>
9 <last-name>Patterson</last-name>
14 <last-name>Smith</last-name>
H A Dtest_06.X.out1last-name>Jones</last-name><department>660</department></employee><employee><first-name>Leslie</fi…
H A Dtest_03.XP.out12 <last-name>Jones</last-name>
17 <last-name>Patterson</last-name>
22 <last-name>Smith</last-name>
H A Dtest_03.X.out1last-name>Jones</last-name><department>660</department></employee><employee><first-name>Leslie</fi…
H A Dtest_07.JP.out20 "last-name": "გთხოვთ ახ",
29 "last-name": "Οὐχὶ ταὐτὰ παρίσταταί μοι Jones",
38 "last-name": "Patterson",
47 "last-name": "Meter & Smith",
55 "last-name": "012345678901234567890",
63 "last-name": "საერთაშორისო",
H A Dtest_07.J.out1last-name":"გთხოვთ ახ","department":431,"percent-time":90,"columns":23,"benefits":"full"}, {"first…
/f-stack/dpdk/lib/librte_stack/
H A Drte_stack_lf.h35 struct rte_stack_lf_elem *tmp, *first, *last = NULL; in __rte_stack_lf_push() local
42 first = __rte_stack_lf_pop_elems(&s->stack_lf.free, n, NULL, &last); in __rte_stack_lf_push()
51 __rte_stack_lf_push_elems(&s->stack_lf.used, first, last, n); in __rte_stack_lf_push()
71 struct rte_stack_lf_elem *first, *last = NULL; in __rte_stack_lf_pop() local
78 n, obj_table, &last); in __rte_stack_lf_pop()
83 __rte_stack_lf_push_elems(&s->stack_lf.free, first, last, n); in __rte_stack_lf_pop()
/f-stack/freebsd/x86/x86/
H A Ddelay.c79 u_int last, mask, u; in delay_tc() local
99 last = func(tc) & mask; in delay_tc()
103 if (u < last) in delay_tc()
104 now += mask - last + u + 1; in delay_tc()
106 now += u - last; in delay_tc()
107 last = u; in delay_tc()
/f-stack/dpdk/lib/librte_cmdline/
H A Dcmdline_parse_portlist.c38 const char *first, *last; in parse_ports() local
41 for (first = str, last = first; in parse_ports()
42 first != NULL && last != NULL; in parse_ports()
43 first = last + 1) { in parse_ports()
45 last = strchr(first, ','); in parse_ports()
50 (end[0] != '-' && end[0] != 0 && end != last)) in parse_ports()
59 (end[0] != 0 && end != last)) in parse_ports()

12345678910>>...25