Home
last modified time | relevance | path

Searched refs:ll (Results 1 – 25 of 96) sorted by relevance

1234

/f-stack/dpdk/drivers/net/bnxt/tf_core/
H A Dll.c12 void ll_init(struct ll *ll) in ll_init() argument
14 ll->head = NULL; in ll_init()
15 ll->tail = NULL; in ll_init()
19 void ll_insert(struct ll *ll, in ll_insert() argument
22 if (ll->head == NULL) { in ll_insert()
23 ll->head = entry; in ll_insert()
24 ll->tail = entry; in ll_insert()
36 void ll_delete(struct ll *ll, in ll_delete() argument
39 if (ll->head == entry && ll->tail == entry) { in ll_delete()
40 ll->head = NULL; in ll_delete()
[all …]
H A Dll.h18 struct ll { struct
28 void ll_init(struct ll *ll);
36 void ll_insert(struct ll *ll, struct ll_entry *entry);
44 void ll_delete(struct ll *ll, struct ll_entry *entry);
/f-stack/freebsd/crypto/des/
H A Ddes_ecb.c104 DES_LONG ll[2]; in des_ecb_encrypt() local
108 c2l(in,l); ll[0]=l; in des_ecb_encrypt()
109 c2l(in,l); ll[1]=l; in des_ecb_encrypt()
111 l=ll[0]; l2c(l,out); in des_ecb_encrypt()
112 l=ll[1]; l2c(l,out); in des_ecb_encrypt()
113 l=ll[0]=ll[1]=0; in des_ecb_encrypt()
121 DES_LONG ll[2]; in des_ecb3_encrypt() local
127 ll[0]=l0; in des_ecb3_encrypt()
128 ll[1]=l1; in des_ecb3_encrypt()
135 l0=ll[0]; in des_ecb3_encrypt()
[all …]
/f-stack/freebsd/crypto/openssl/
H A Dossl_sha1.c32 unsigned long ll; \
33 ll=(c)->h0; (void)HOST_l2c(ll,(s)); \
34 ll=(c)->h1; (void)HOST_l2c(ll,(s)); \
35 ll=(c)->h2; (void)HOST_l2c(ll,(s)); \
36 ll=(c)->h3; (void)HOST_l2c(ll,(s)); \
37 ll=(c)->h4; (void)HOST_l2c(ll,(s)); \
H A Dossl_sha256.c75 unsigned long ll; \
80 { ll=(c)->h[nn]; (void)HOST_l2c(ll,(s)); } \
84 { ll=(c)->h[nn]; (void)HOST_l2c(ll,(s)); } \
/f-stack/tools/compat/
H A Dstrtonum.c39 long long ll = 0; in strtonum() local
57 ll = strtoll(numstr, &ep, 10); in strtonum()
60 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval) in strtonum()
62 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval) in strtonum()
69 ll = 0; in strtonum()
71 return (ll); in strtonum()
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_buf.c81 ll = &chain; in ngx_create_chain_of_bufs()
116 *ll = cl; in ngx_create_chain_of_bufs()
117 ll = &cl->next; in ngx_create_chain_of_bufs()
120 *ll = NULL; in ngx_create_chain_of_bufs()
129 ngx_chain_t *cl, **ll; in ngx_chain_add_copy() local
131 ll = chain; in ngx_chain_add_copy()
134 ll = &cl->next; in ngx_chain_add_copy()
140 *ll = NULL; in ngx_chain_add_copy()
145 *ll = cl; in ngx_chain_add_copy()
146 ll = &cl->next; in ngx_chain_add_copy()
[all …]
/f-stack/freebsd/contrib/device-tree/src/powerpc/
H A Dps3.dts21 * We'll get the size of the bootmem block from lv1 after startup,
22 * so we'll put a null entry here.
34 * we'll put a null entries here. These will be initialized after
38 * threads is with an ibm,ppc-interrupt-server#s entry. We'll put one
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_chunked_filter_module.c111 ngx_chain_t *out, *cl, *tl, **ll; in ngx_http_chunked_body_filter() local
121 ll = &out; in ngx_http_chunked_body_filter()
143 *ll = tl; in ngx_http_chunked_body_filter()
144 ll = &tl->next; in ngx_http_chunked_body_filter()
193 *ll = tl; in ngx_http_chunked_body_filter()
213 *ll = tl; in ngx_http_chunked_body_filter()
216 *ll = NULL; in ngx_http_chunked_body_filter()
H A Dngx_http_charset_filter_module.c563 ll = &out; in ngx_http_charset_body_filter()
578 ll = &(*ll)->next; in ngx_http_charset_body_filter()
594 while (*ll) { in ngx_http_charset_body_filter()
595 ll = &(*ll)->next; in ngx_http_charset_body_filter()
875 ll = &cl->next; in ngx_http_charset_recode_from_utf8()
891 *ll = cl; in ngx_http_charset_recode_from_utf8()
892 ll = &cl->next; in ngx_http_charset_recode_from_utf8()
1046 ll = &cl->next; in ngx_http_charset_recode_to_utf8()
1067 *ll = cl; in ngx_http_charset_recode_to_utf8()
1068 ll = &cl->next; in ngx_http_charset_recode_to_utf8()
[all …]
H A Dngx_http_range_filter_module.c704 ngx_chain_t *out, *cl, **ll; in ngx_http_range_singlepart_body() local
708 ll = &out; in ngx_http_range_singlepart_body()
724 *ll = cl; in ngx_http_range_singlepart_body()
725 ll = &cl->next; in ngx_http_range_singlepart_body()
767 *ll = cl; in ngx_http_range_singlepart_body()
773 *ll = cl; in ngx_http_range_singlepart_body()
774 ll = &cl->next; in ngx_http_range_singlepart_body()
794 ll = &out; in ngx_http_range_multipart_body()
874 *ll = hcl; in ngx_http_range_multipart_body()
877 ll = &dcl->next; in ngx_http_range_multipart_body()
[all …]
/f-stack/app/nginx-1.16.1/src/stream/
H A Dngx_stream_write_filter_module.c58 ngx_chain_t *cl, *ln, **ll, **out, *chain; in ngx_stream_write_filter() local
91 ll = out; in ngx_stream_write_filter()
96 ll = &cl->next; in ngx_stream_write_filter()
167 *ll = cl; in ngx_stream_write_filter()
168 ll = &cl->next; in ngx_stream_write_filter()
230 *ll = NULL; in ngx_stream_write_filter()
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_write_filter_module.c53 ngx_chain_t *cl, *ln, **ll, *chain; in ngx_http_write_filter() local
67 ll = &r->out; in ngx_http_write_filter()
72 ll = &cl->next; in ngx_http_write_filter()
143 *ll = cl; in ngx_http_write_filter()
144 ll = &cl->next; in ngx_http_write_filter()
206 *ll = NULL; in ngx_http_write_filter()
H A Dngx_http_request_body.c866 ngx_chain_t *cl, *tl, *out, **ll; in ngx_http_request_body_length_filter() local
879 ll = &out; in ngx_http_request_body_length_filter()
917 *ll = tl; in ngx_http_request_body_length_filter()
918 ll = &tl->next; in ngx_http_request_body_length_filter()
936 ngx_chain_t *cl, *out, *tl, **ll; in ngx_http_request_body_chunked_filter() local
957 ll = &out; in ngx_http_request_body_chunked_filter()
1012 *ll = tl; in ngx_http_request_body_chunked_filter()
1013 ll = &tl->next; in ngx_http_request_body_chunked_filter()
1050 *ll = tl; in ngx_http_request_body_chunked_filter()
1051 ll = &tl->next; in ngx_http_request_body_chunked_filter()
/f-stack/app/redis-5.0.5/deps/jemalloc/include/msvc_compat/
H A Dstrings.h37 unsigned __int64 ll; in ffsll() member
41 s.ll = x; in ffsll()
/f-stack/app/redis-5.0.5/src/
H A Dnetworking.c504 if (prefix == '*' && ll < OBJ_SHARED_BULKHDR_LEN && ll >= 0) { in addReplyLongLongWithPrefix()
507 } else if (prefix == '$' && ll < OBJ_SHARED_BULKHDR_LEN && ll >= 0) { in addReplyLongLongWithPrefix()
520 if (ll == 0) in addReplyLongLong()
522 else if (ll == 1) in addReplyLongLong()
596 len = ll2string(buf,64,ll); in addReplyBulkLongLong()
1288 long long ll; in processMultibulkBuffer() local
1312 if (!ok || ll > 1024*1024) { in processMultibulkBuffer()
1320 if (ll <= 0) return C_OK; in processMultibulkBuffer()
1322 c->multibulklen = ll; in processMultibulkBuffer()
1357 if (!ok || ll < 0 || ll > server.proto_max_bulk_len) { in processMultibulkBuffer()
[all …]
H A Dconfig.c879 _var = ll;
883 ll = memtoll(o->ptr,&err); \
885 _var = ll;
904 long long ll; local
933 if (getLongLongFromObject(o,&ll) == C_ERR || ll < 1) goto badfmt;
936 server.maxclients = ll;
937 if (ll > orig_value) {
1238 "watchdog-period",ll,0,INT_MAX) {
1239 if (ll)
1240 enableWatchdog(ll);
[all …]
/f-stack/freebsd/netpfil/ipfw/test/
H A Dmain.c89 struct list_head ll[BACKLOG + 10]; member
128 list_add_tail(h, &c->ll[i]); in drop()
584 INIT_LIST_HEAD(&c->ll[i]); in init()
594 list_add_tail(&q->ni.h, &c->ll[0]); in init()
604 double ll; in main() local
621 ll = c.time.tv_sec*1000000 + c.time.tv_usec; in main()
622 ll *= 1000; /* convert to nanoseconds */ in main()
623 ll /= c._enqueue; in main()
631 c.name, (int)c.time.tv_sec, (int)c.time.tv_usec / 1000, ll, in main()
679 h = &c->ll[i]; in controller()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_split/
H A Dzpool_split_vdevs.ksh69 disks[ll]="l1 l2"
87 ll) # mirrored log
/f-stack/freebsd/kern/
H A Dkern_uuid.c63 uint64_t ll; /* internal, for uuid_last only */ member
143 if (uuid_last.time.ll == 0LL || uuid_last.node[0] != uuid.node[0] || in kern_uuidgen()
147 else if (uuid_last.time.ll >= time) in kern_uuidgen()
153 uuid_last.time.ll = (time + count - 1) & ((1LL << 60) - 1LL); in kern_uuidgen()
/f-stack/app/redis-5.0.5/
H A DCONTRIBUTING16 bugs in the Github issues system. We'll be very happy to help you and provide
26 straight away: if your feature is not a conceptual fit you'll lose a lot of
30 Here you'll see if there is consensus about your idea.
H A DMANIFESTO31 ever meet intelligent life forms from another part of the universe, they'll
58 in a bigger story, we'll be happy to use beautiful self contained libraries
63 complexity. We'll accept to fight the complexity when it's worthwhile but
64 we'll try hard to recognize when a small feature is not worth 1000s of lines
91 all cases. Instead we'll provide commands to quickly migrate keys from one
97 writing code, the best thing to do is stop. To prevent this, we'll avoid
/f-stack/app/nginx-1.16.1/src/event/
H A Dngx_event_pipe.c504 ngx_chain_t *out, **ll, *cl; in ngx_event_pipe_write_to_downstream() local
623 ll = NULL; in ngx_event_pipe_write_to_downstream()
666 *ll = cl; in ngx_event_pipe_write_to_downstream()
670 ll = &cl->next; in ngx_event_pipe_write_to_downstream()
739 ngx_chain_t *cl, *tl, *next, *out, **ll, **last_out, **last_free; in ngx_event_pipe_write_chain_to_temp_file() local
780 ll = NULL; in ngx_event_pipe_write_chain_to_temp_file()
805 ll = &cl->next; in ngx_event_pipe_write_chain_to_temp_file()
812 if (ll == NULL) { in ngx_event_pipe_write_chain_to_temp_file()
818 *ll = NULL; in ngx_event_pipe_write_chain_to_temp_file()
/f-stack/tools/libxo/doc/
H A Dgetting.rst55 so you'll need to substitute "`gzip -dc $file | tar xf -`" instead
73 will be ready and you'll just need to run "configure", but if you
74 download the source code from svn, then you'll need to run
83 To build libxo, you'll need to set up the build, run the "*configure*"
171 Once the software is built, you'll need to install libxo using the
/f-stack/freebsd/contrib/device-tree/Bindings/i2c/
H A Di2c-arb-gpio-challenge.txt21 others can see. These are all active low with pull-ups enabled. We'll
51 - wait-retry-us: we'll attempt another claim after this many microseconds.
53 - wait-free-us: we'll give up after this many microseconds. Default is 50000 us.

1234