Home
last modified time | relevance | path

Searched refs:tl (Results 1 – 25 of 35) sorted by relevance

12

/f-stack/dpdk/lib/librte_eal/include/generic/
H A Drte_ticketlock.h52 rte_ticketlock_init(rte_ticketlock_t *tl) in rte_ticketlock_init() argument
54 __atomic_store_n(&tl->tickets, 0, __ATOMIC_RELAXED); in rte_ticketlock_init()
64 rte_ticketlock_lock(rte_ticketlock_t *tl) in rte_ticketlock_lock() argument
77 rte_ticketlock_unlock(rte_ticketlock_t *tl) in rte_ticketlock_unlock() argument
92 rte_ticketlock_trylock(rte_ticketlock_t *tl) in rte_ticketlock_trylock() argument
116 rte_ticketlock_is_locked(rte_ticketlock_t *tl) in rte_ticketlock_is_locked() argument
129 rte_ticketlock_t tl; /**< the actual ticketlock */ member
149 rte_ticketlock_init(&tlr->tl); in rte_ticketlock_recursive_init()
166 rte_ticketlock_lock(&tlr->tl); in rte_ticketlock_recursive_lock()
184 rte_ticketlock_unlock(&tlr->tl); in rte_ticketlock_recursive_unlock()
[all …]
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dtxg.c830 tl->tl_offset = offset; in txg_list_create()
831 tl->tl_spa = spa; in txg_list_create()
834 tl->tl_head[t] = NULL; in txg_list_create()
850 mutex_exit(&tl->tl_lock); in txg_list_empty()
863 mutex_exit(&tl->tl_lock); in txg_list_destroy()
884 mutex_exit(&tl->tl_lock); in txg_all_lists_empty()
905 tl->tl_head[t] = tn; in txg_list_add()
907 mutex_exit(&tl->tl_lock); in txg_list_add()
937 mutex_exit(&tl->tl_lock); in txg_list_add_tail()
962 mutex_exit(&tl->tl_lock); in txg_list_remove()
[all …]
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dtxg.h128 extern void txg_list_create(txg_list_t *tl, spa_t *spa, size_t offset);
129 extern void txg_list_destroy(txg_list_t *tl);
130 extern boolean_t txg_list_empty(txg_list_t *tl, uint64_t txg);
131 extern boolean_t txg_all_lists_empty(txg_list_t *tl);
132 extern boolean_t txg_list_add(txg_list_t *tl, void *p, uint64_t txg);
133 extern boolean_t txg_list_add_tail(txg_list_t *tl, void *p, uint64_t txg);
134 extern void *txg_list_remove(txg_list_t *tl, uint64_t txg);
135 extern void *txg_list_remove_this(txg_list_t *tl, void *p, uint64_t txg);
136 extern boolean_t txg_list_member(txg_list_t *tl, void *p, uint64_t txg);
137 extern void *txg_list_head(txg_list_t *tl, uint64_t txg);
[all …]
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_chunked_filter_module.c143 *ll = tl; in ngx_http_chunked_body_filter()
144 ll = &tl->next; in ngx_http_chunked_body_filter()
156 if (tl == NULL) { in ngx_http_chunked_body_filter()
160 b = tl->buf; in ngx_http_chunked_body_filter()
181 tl->next = out; in ngx_http_chunked_body_filter()
182 out = tl; in ngx_http_chunked_body_filter()
187 if (tl == NULL) { in ngx_http_chunked_body_filter()
193 *ll = tl; in ngx_http_chunked_body_filter()
201 if (tl == NULL) { in ngx_http_chunked_body_filter()
205 b = tl->buf; in ngx_http_chunked_body_filter()
[all …]
H A Dngx_http_proxy_module.c1602 if (tl == NULL) { in ngx_http_proxy_body_output_filter()
1607 *ll = tl; in ngx_http_proxy_body_output_filter()
1608 ll = &tl->next; in ngx_http_proxy_body_output_filter()
1639 *ll = tl; in ngx_http_proxy_body_output_filter()
1656 b = tl->buf; in ngx_http_proxy_body_output_filter()
1677 tl->next = *fl; in ngx_http_proxy_body_output_filter()
1678 *fl = tl; in ngx_http_proxy_body_output_filter()
1687 b = tl->buf; in ngx_http_proxy_body_output_filter()
1698 *ll = tl; in ngx_http_proxy_body_output_filter()
1710 b = tl->buf; in ngx_http_proxy_body_output_filter()
[all …]
H A Dngx_http_fastcgi_module.c1382 if (tl == NULL) { in ngx_http_fastcgi_body_output_filter()
1386 tl->buf = in->buf; in ngx_http_fastcgi_body_output_filter()
1387 *ll = tl; in ngx_http_fastcgi_body_output_filter()
1388 ll = &tl->next; in ngx_http_fastcgi_body_output_filter()
1393 tl->next = NULL; in ngx_http_fastcgi_body_output_filter()
1469 b = tl->buf; in ngx_http_fastcgi_body_output_filter()
1528 cl->next = tl; in ngx_http_fastcgi_body_output_filter()
1529 cl = tl; in ngx_http_fastcgi_body_output_filter()
1536 b = tl->buf; in ngx_http_fastcgi_body_output_filter()
1561 cl->next = tl; in ngx_http_fastcgi_body_output_filter()
[all …]
/f-stack/dpdk/app/test/
H A Dtest_ticketlock.c47 static rte_ticketlock_t tl, tl_try; variable
57 rte_ticketlock_lock(&tl); in test_ticketlock_per_core()
59 rte_ticketlock_unlock(&tl); in test_ticketlock_per_core()
192 rte_ticketlock_lock(&tl); in test_ticketlock_try()
194 rte_ticketlock_unlock(&tl); in test_ticketlock_try()
217 rte_ticketlock_init(&tl); in test_ticketlock()
224 rte_ticketlock_lock(&tl); in test_ticketlock()
236 rte_ticketlock_unlock(&tl); in test_ticketlock()
284 if (rte_ticketlock_is_locked(&tl)) { in test_ticketlock()
288 rte_ticketlock_lock(&tl); in test_ticketlock()
[all …]
/f-stack/freebsd/contrib/openzfs/config/
H A Dkernel-timer.m421 void task_expire(struct timer_list *tl)
24 from_timer(task_timer, tl, timer);
34 void task_expire(struct timer_list *tl) {}
36 struct timer_list tl;
37 tl.function = task_expire;
43 struct timer_list tl;
44 tl.flags = 2;
/f-stack/dpdk/drivers/net/qede/base/
H A Decore_vfpf_if.h56 struct channel_tlv tl; member
63 struct channel_tlv tl; member
75 struct channel_tlv tl; member
130 struct channel_tlv tl; member
249 struct channel_tlv tl; member
381 struct channel_tlv tl; member
389 struct channel_tlv tl; member
395 struct channel_tlv tl; member
401 struct channel_tlv tl; member
414 struct channel_tlv tl; member
[all …]
/f-stack/app/redis-5.0.5/deps/jemalloc/test/src/
H A DSFMT.c164 uint64_t th, tl, oh, ol; in rshift128() local
167 tl = ((uint64_t)in->u[0] << 32) | ((uint64_t)in->u[1]); in rshift128()
170 ol = tl >> (shift * 8); in rshift128()
179 uint64_t th, tl, oh, ol; in rshift128() local
185 ol = tl >> (shift * 8); in rshift128()
203 uint64_t th, tl, oh, ol; in lshift128() local
209 ol = tl << (shift * 8); in lshift128()
210 oh |= tl >> (64 - shift * 8); in lshift128()
218 uint64_t th, tl, oh, ol; in lshift128() local
224 ol = tl << (shift * 8); in lshift128()
[all …]
/f-stack/dpdk/drivers/net/bnx2x/
H A Dbnx2x_vfpf.c69 struct channel_tlv *tl = (struct channel_tlv *) in bnx2x_add_tlv() local
72 tl->type = type; in bnx2x_add_tlv()
73 tl->length = length; in bnx2x_add_tlv()
89 bnx2x_add_tlv(sc, &first_tlv->tl, 0, type, length); in bnx2x_vf_prep()
101 first_tlv->tl.type); in bnx2x_vf_finalize()
271 bnx2x_add_tlv(sc, acq, acq->first_tlv.tl.length, in bnx2x_vf_get_resources()
340 bnx2x_add_tlv(sc, query, query->first_tlv.tl.length, in bnx2x_vf_close()
374 bnx2x_add_tlv(sc, query, query->first_tlv.tl.length, in bnx2x_vf_init()
419 bnx2x_add_tlv(sc, query, query->first_tlv.tl.length, in bnx2x_vf_unload()
505 bnx2x_add_tlv(sc, query, query->first_tlv.tl.length, in bnx2x_vf_setup_queue()
[all …]
H A Dbnx2x_vfpf.h54 struct channel_tlv tl; member
64 struct channel_tlv tl; member
71 struct channel_tlv tl; member
/f-stack/tools/libutil/
H A Dlogin_ok.c96 const char **tl; in login_timelist() local
98 if ((tl = login_getcaplist(lc, cap, NULL)) != NULL) { in login_timelist()
100 while (tl[j++] != NULL) in login_timelist()
112 lt[i] = parse_lt(tl[i]); in login_timelist()
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_request_body.c888 if (tl == NULL) { in ngx_http_request_body_length_filter()
892 b = tl->buf; 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()
996 if (tl == NULL) { in ngx_http_request_body_chunked_filter()
1000 b = tl->buf; 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()
1044 b = tl->buf; in ngx_http_request_body_chunked_filter()
1050 *ll = tl; in ngx_http_request_body_chunked_filter()
[all …]
/f-stack/freebsd/crypto/camellia/
H A Dcamellia.c444 uint32_t kw4l, kw4r, dw, tl, tr; in camellia_setup128() local
563 SUBL(7) = subl(6) ^ tl; in camellia_setup128()
571 SUBL(10) = tl ^ subl(11); in camellia_setup128()
583 SUBL(15) = subl(14) ^ tl; in camellia_setup128()
591 SUBL(18) = tl ^ subl(19); in camellia_setup128()
811 SUBL(7) = subl(6) ^ tl; in camellia_setup256()
819 SUBL(10) = tl ^ subl(11); in camellia_setup256()
831 SUBL(15) = subl(14) ^ tl; in camellia_setup256()
839 SUBL(18) = tl ^ subl(19); in camellia_setup256()
851 SUBL(23) = subl(22) ^ tl; in camellia_setup256()
[all …]
/f-stack/dpdk/drivers/crypto/bcmfs/
H A Dbcmfs_device.c49 .tl = RTE_SPINLOCK_INITIALIZER,
58 rte_spinlock_lock(&bcmfs_hw_queue_pair_ops_table.tl); in bcmfs_hw_queue_pair_register_ops()
62 rte_spinlock_unlock(&bcmfs_hw_queue_pair_ops_table.tl); in bcmfs_hw_queue_pair_register_ops()
69 rte_spinlock_unlock(&bcmfs_hw_queue_pair_ops_table.tl); in bcmfs_hw_queue_pair_register_ops()
84 rte_spinlock_unlock(&bcmfs_hw_queue_pair_ops_table.tl); in bcmfs_hw_queue_pair_register_ops()
H A Dbcmfs_device.h37 rte_spinlock_t tl; member
/f-stack/freebsd/netipsec/
H A Dipsec.c1253 uint32_t tl, th, bl; in ipsec_chkreplay() local
1272 bl = tl - window + 1; /* Bottom of window, lower part */ in ipsec_chkreplay()
1280 if ((tl >= window - 1 && seq >= bl) || in ipsec_chkreplay()
1281 (tl < window - 1 && seq < bl)) { in ipsec_chkreplay()
1283 if (seq <= tl) { in ipsec_chkreplay()
1320 if (tl < window - 1 && seq >= bl) { in ipsec_chkreplay()
1368 uint32_t tl, th, bl; in ipsec_updatereplay() local
1395 if ((tl >= window - 1 && seq >= bl) || in ipsec_updatereplay()
1396 (tl < window - 1 && seq < bl)) { in ipsec_updatereplay()
1398 if (seq <= tl) { in ipsec_updatereplay()
[all …]
/f-stack/dpdk/lib/librte_ipsec/
H A Dipsec_sqn.h66 uint32_t th, tl, bl; in reconstruct_esn() local
68 tl = t; in reconstruct_esn()
70 bl = tl - w + 1; in reconstruct_esn()
73 if (tl >= (w - 1)) in reconstruct_esn()
H A Desp_inb.c519 uint32_t adj, i, k, tl; in tun_process() local
544 tl = tlen + espt[i].pad_len; in tun_process()
547 if (tun_process_check(mb[i], &ml[i], &to[i], espt[i], adj, tl, in tun_process()
555 to[i], tl, sqn + k); in tun_process()
579 uint32_t i, k, l2, tl; in trs_process() local
601 tl = tlen + espt[i].pad_len; in trs_process()
606 hl[i] + cofs, tl) == 0) { in trs_process()
610 to[i], tl, sqn + k); in trs_process()
/f-stack/app/nginx-1.16.1/src/event/
H A Dngx_event_pipe.c739 ngx_chain_t *cl, *tl, *next, *out, **ll, **last_out, **last_free; in ngx_event_pipe_write_chain_to_temp_file() local
925 tl = ngx_alloc_chain_link(p->pool); in ngx_event_pipe_write_chain_to_temp_file()
926 if (tl == NULL) { in ngx_event_pipe_write_chain_to_temp_file()
930 tl->buf = b->shadow; in ngx_event_pipe_write_chain_to_temp_file()
931 tl->next = NULL; in ngx_event_pipe_write_chain_to_temp_file()
933 *last_free = tl; in ngx_event_pipe_write_chain_to_temp_file()
934 last_free = &tl->next; in ngx_event_pipe_write_chain_to_temp_file()
1075 ngx_chain_t *cl, *tl; in ngx_event_pipe_drain_chains() local
1104 tl = cl->next; in ngx_event_pipe_drain_chains()
1107 cl = tl; in ngx_event_pipe_drain_chains()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlvm.c293 size_t tl = tsvalue(top-1)->len; in luaV_concat() local
299 if (l >= MAX_SIZET - tl) luaG_runerror(L, "string length overflow"); in luaV_concat()
300 tl += l; in luaV_concat()
302 buffer = luaZ_openspace(L, &G(L)->buff, tl); in luaV_concat()
303 tl = 0; in luaV_concat()
306 memcpy(buffer+tl, svalue(top-i), l); in luaV_concat()
307 tl += l; in luaV_concat()
309 setsvalue2s(L, top-n, luaS_newlstr(L, buffer, tl)); in luaV_concat()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlvm.c310 size_t tl = tsvalue(top-1)->len; in luaV_concat() local
316 if (l >= (MAX_SIZET/sizeof(char)) - tl) in luaV_concat()
318 tl += l; in luaV_concat()
320 buffer = luaZ_openspace(L, &G(L)->buff, tl); in luaV_concat()
321 tl = 0; in luaV_concat()
325 memcpy(buffer+tl, svalue(top-i), l * sizeof(char)); in luaV_concat()
326 tl += l; in luaV_concat()
328 setsvalue2s(L, top-n, luaS_newlstr(L, buffer, tl)); in luaV_concat()
/f-stack/freebsd/contrib/device-tree/src/mips/qca/
H A Dar9132_tl_wr1043nd_v1.dts10 compatible = "tplink,tl-wr1043nd-v1", "qca,ar9132";
H A Dar9331_tl_mr3020.dts11 compatible = "tplink,tl-mr3020";

12