Searched refs:tb (Results 26 - 50 of 65) sorted by relevance

123

/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_mod.c246 BN_ULONG borrow, carry, ta, tb, mask, *rp; local
261 tb = bp[bi] & mask;
262 rp[i] = ta - tb - borrow;
263 if (ta != tb)
264 borrow = (ta < tb);
H A Dbn_asm.c537 BN_ULONG ta = (a), tb = (b); \
539 BN_UMULT_LOHI(lo,hi,ta,tb); \
545 BN_ULONG ta = (a), tb = (b); \
547 BN_UMULT_LOHI(lo,hi,ta,tb); \
571 BN_ULONG ta = (a), tb = (b); \
572 BN_ULONG lo = ta * tb; \
573 BN_ULONG hi = BN_UMULT_HIGH(ta,tb); \
579 BN_ULONG ta = (a), tb = (b), tt; \
580 BN_ULONG lo = ta * tb; \
581 BN_ULONG hi = BN_UMULT_HIGH(ta,tb); \
[all...]
/freebsd-11-stable/sys/dev/uart/
H A Duart_dev_quicc.c479 uint16_t st, tb; local
483 tb = quicc_read2(bas, QUICC_PRAM_SCC_TBASE(bas->chan - 1));
484 st = quicc_read2(bas, tb);
485 buf = (void *)(uintptr_t)quicc_read4(bas, tb + 4);
487 quicc_write2(bas, tb + 2, 1);
488 quicc_write2(bas, tb, st | 0x9000);
/freebsd-11-stable/sys/kern/
H A Dsubr_gtaskqueue.c252 struct gtaskqueue_busy *tb; local
264 LIST_FOREACH(tb, &queue->tq_active, tb_link) {
265 if ((int)(tb->tb_seq - seq) <= 0) {
266 TQ_SLEEP(queue, tb->tb_running, "gtq_adrain");
300 struct gtaskqueue_busy tb; local
305 tb.tb_running = NULL;
306 LIST_INSERT_HEAD(&queue->tq_active, &tb, tb_link);
311 tb.tb_running = gtask;
312 tb.tb_seq = ++queue->tq_seq;
321 LIST_REMOVE(&tb, tb_lin
327 struct gtaskqueue_busy *tb; local
[all...]
/freebsd-11-stable/crypto/heimdal/base/
H A Dheimbase.c213 heim_tid_t ta, tb; local
217 tb = heim_get_tid(b);
219 if (ta != tb)
220 return ta - tb;
/freebsd-11-stable/sbin/dhclient/
H A Dconflex.c122 static char tb[2]; local
156 tb[0] = c;
157 tb[1] = 0;
158 tval = tb;
/freebsd-11-stable/usr.bin/colldef/
H A Dparse.y210 static char tb[2];
212 tb[0] = $2;
213 if (tb[0] == '\0')
217 (void)strcat(curr_chain, tb);
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dsa_impl.h268 #define SA_HDR_SIZE_MATCH_LAYOUT(hdr, tb) \
270 (tb->lot_var_sizes > 1 ? P2ROUNDUP((tb->lot_var_sizes - 1) * \
/freebsd-11-stable/contrib/wpa/src/drivers/
H A Ddriver_nl80211_scan.c34 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
46 nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
49 if (!tb[NL80211_ATTR_SURVEY_INFO]) {
55 tb[NL80211_ATTR_SURVEY_INFO],
698 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
722 nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
724 if (!tb[NL80211_ATTR_BSS])
726 if (nla_parse_nested(bss, NL80211_BSS_MAX, tb[NL80211_ATTR_BSS],
1041 struct nlattr *tb[NL80211_ATTR_MAX + 1]; local
1045 nla_parse(tb, NL80211_ATTR_MA
[all...]
H A Ddriver_macsec_linux.c539 struct nlattr *tb[MACSEC_SA_ATTR_MAX + 1]; local
541 err = nla_parse_nested(tb, MACSEC_SA_ATTR_MAX, nla,
545 if (!tb[MACSEC_SA_ATTR_AN])
547 if (nla_get_u8(tb[MACSEC_SA_ATTR_AN]) != arg->txsa)
549 if (!tb[MACSEC_SA_ATTR_PN])
551 *arg->pn = nla_get_u32(tb[MACSEC_SA_ATTR_PN]);
566 struct nlattr *tb[MACSEC_RXSC_ATTR_MAX + 1]; local
568 err = nla_parse_nested(tb, MACSEC_RXSC_ATTR_MAX, nla,
572 if (!tb[MACSEC_RXSC_ATTR_SCI])
574 if (nla_get_u64(tb[MACSEC_RXSC_ATTR_SC
[all...]
/freebsd-11-stable/contrib/lua/src/
H A Dlstate.c99 l_mem tb = gettotalbytes(g); local
100 lua_assert(tb > 0);
101 if (debt < tb - MAX_LMEM)
102 debt = tb - MAX_LMEM; /* will make 'totalbytes == MAX_LMEM' */
103 g->totalbytes = tb - debt;
/freebsd-11-stable/sys/dev/bwi/
H A Dif_bwi.c2282 struct bwi_txbuf *tb = &tbd->tbd_buf[j]; local
2284 if (tb->tb_mbuf != NULL) {
2286 tb->tb_dmap);
2287 m_freem(tb->tb_mbuf);
2289 if (tb->tb_ni != NULL)
2290 ieee80211_free_node(tb->tb_ni);
2291 bus_dmamap_destroy(sc->sc_buf_dtag, tb->tb_dmap);
2818 struct bwi_txbuf *tb = &tbd->tbd_buf[i]; local
2820 if (tb->tb_mbuf != NULL) {
2821 bus_dmamap_unload(sc->sc_buf_dtag, tb
2919 struct bwi_txbuf *tb = &tbd->tbd_buf[idx]; local
3111 struct bwi_txbuf *tb = &tbd->tbd_buf[idx]; local
3311 struct bwi_txbuf *tb; local
[all...]
/freebsd-11-stable/contrib/apr-util/test/
H A Dtestbuckets.c41 apr_bucket *fb, *tb; local
59 tb = apr_bucket_transient_create("aaa", 3, ba);
60 APR_BUCKET_INSERT_BEFORE(fb, tb);
63 APR_BUCKET_PREV(fb) == tb);
65 APR_BUCKET_NEXT(tb) == fb);
67 APR_BUCKET_PREV(tb) == APR_BRIGADE_SENTINEL(bb));
/freebsd-11-stable/crypto/openssl/ssl/
H A Dd1_lib.c548 struct timeb tb;
549 ftime(&tb);
550 t->tv_sec = (long)tb.time;
551 t->tv_usec = (long)tb.millitm * 1000;
/freebsd-11-stable/contrib/llvm-project/libunwind/include/
H A Dunwind.h368 extern void __register_frame_info_bases(const void *fde, void *ob, void *tb,
373 void *tb, void *db)
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dmacro.c140 struct tm *tb = NULL; local
143 tb = localtime (&st->st_mtime);
144 if (tb)
146 char *str = asctime (tb);
228 struct tm *tb = NULL; local
236 tb = localtime (&tt);
238 if (tb)
243 monthnames[tb->tm_mon], tb->tm_mday,
244 tb
[all...]
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A DextractExternal.cpp383 const T &ta = *ita, &tb = *itb; local
384 if (ta < tb)
386 else if (tb < ta)
/freebsd-11-stable/contrib/subversion/
H A Dgen-make.py271 typ, val, tb = sys.exc_info()
/freebsd-11-stable/sys/dev/et/
H A Dif_et.c1505 struct et_txbuf *tb; local
1511 tb = &tbd->tbd_buf[i];
1512 if (tb->tb_mbuf != NULL) {
1513 bus_dmamap_sync(sc->sc_tx_tag, tb->tb_dmap,
1515 bus_dmamap_unload(sc->sc_mbuf_dtag, tb->tb_dmap);
1516 m_freem(tb->tb_mbuf);
1517 tb->tb_mbuf = NULL;
2257 struct et_txbuf *tb; local
2283 tb = &tbd->tbd_buf[tbd->tbd_start_index];
2284 if (tb
[all...]
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dcrypto_wolfssl.c1478 ecc_point *ta = NULL, *tb = NULL; local
1502 tb = wc_ecc_new_point();
1503 if (!tb) {
1512 mp_mulmod(pb->x, &mu, modulus, tb->x) != MP_OKAY ||
1513 mp_mulmod(pb->y, &mu, modulus, tb->y) != MP_OKAY ||
1514 mp_mulmod(pb->z, &mu, modulus, tb->z) != MP_OKAY) {
1519 pb = tb;
1534 wc_ecc_del_point(tb);
/freebsd-11-stable/sys/net/altq/
H A Daltq_cdnr.h119 struct tb_profile cmtd_profile; /* profile for committed tb */
120 struct tb_profile peak_profile; /* profile for peak tb */
132 struct tb_profile cmtd_profile; /* profile for committed tb */
133 struct tb_profile peak_profile; /* profile for peak tb */
289 struct tbe tb; /* token bucket */ member in struct:tbmeter
299 struct tbe cmtd_tb; /* committed tb profile */
300 struct tbe peak_tb; /* peak tb profile */
/freebsd-11-stable/crypto/openssl/crypto/bn/asm/
H A Dx86_64-gcc.c314 BN_ULONG ta = (a), tb = (b); \
316 BN_UMULT_LOHI(lo,hi,ta,tb); \
322 BN_ULONG ta = (a), tb = (b); \
324 BN_UMULT_LOHI(lo,hi,ta,tb); \
/freebsd-11-stable/contrib/wpa/src/tls/
H A Dlibtommath.c1611 mp_int ta, tb, tq, q; local
1633 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL)) != MP_OKAY) {
1641 ((res = mp_abs(b, &tb)) != MP_OKAY) ||
1642 ((res = mp_mul_2d(&tb, n, &tb)) != MP_OKAY) ||
1648 if (mp_cmp(&tb, &ta) != MP_GT) {
1649 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) ||
1654 if (((res = mp_div_2d(&tb, 1, &tb, NULL)) != MP_OKAY) ||
1672 mp_clear_multi(&ta, &tb,
[all...]
/freebsd-11-stable/contrib/apr-util/redis/
H A Dapr_redis.c33 apr_bucket_brigade *tb; member in struct:apr_redis_conn_t
256 (*conn)->tb = apr_brigade_create((*conn)->tp, balloc);
620 rv = apr_brigade_split_line(conn->tb, conn->bb, APR_BLOCK_READ,
627 rv = apr_brigade_flatten(conn->tb, conn->buffer, &bsize);
636 return apr_brigade_cleanup(conn->tb);
/freebsd-11-stable/contrib/binutils/binutils/
H A Dresbin.c1249 static rc_uint_type res_to_bin_toolbar (windres_bfd *, rc_uint_type, rc_toolbar *tb);
1921 res_to_bin_toolbar (windres_bfd *wrbfd, rc_uint_type off, rc_toolbar *tb)
1926 windres_put_32 (wrbfd, bt.button_width, tb->button_width);
1927 windres_put_32 (wrbfd, bt.button_height, tb->button_height);
1928 windres_put_32 (wrbfd, bt.nitems, tb->nitems);
1930 if (tb->nitems > 0)
1936 ids = (bfd_byte *) reswr_alloc (tb->nitems * 4);
1937 it=tb->items;
1947 off += BIN_TOOLBAR_SIZE + tb->nitems * 4;
1920 res_to_bin_toolbar(windres_bfd *wrbfd, rc_uint_type off, rc_toolbar *tb) argument

Completed in 317 milliseconds

123