Home
last modified time | relevance | path

Searched refs:tb (Results 1 – 25 of 93) sorted by relevance

1234

/freebsd-11-stable/contrib/binutils/bfd/
HDconfigure.in570 tb=
581 a_out_adobe_vec) tb="$tb aout-adobe.lo aout32.lo" ;;
582 aix5coff64_vec) tb="$tb coff64-rs6000.lo xcofflink.lo aix5ppc-core.lo"; target_size=64 ;;
583 aout0_big_vec) tb="$tb aout0.lo aout32.lo" ;;
584 aout_arm_big_vec) tb="$tb aout-arm.lo aout32.lo" ;;
585 aout_arm_little_vec) tb="$tb aout-arm.lo aout32.lo" ;;
586 apollocoff_vec) tb="$tb coff-apollo.lo" ;;
587 arm_epoc_pe_big_vec) tb="$tb epoc-pe-arm.lo peigen.lo cofflink.lo " ;;
588 arm_epoc_pe_little_vec) tb="$tb epoc-pe-arm.lo peigen.lo cofflink.lo " ;;
589 arm_epoc_pei_big_vec) tb="$tb epoc-pei-arm.lo peigen.lo cofflink.lo " ;;
[all …]
HDconfigure18579 tb=
18590 a_out_adobe_vec) tb="$tb aout-adobe.lo aout32.lo" ;;
18591 aix5coff64_vec) tb="$tb coff64-rs6000.lo xcofflink.lo aix5ppc-core.lo"; target_size=64 ;;
18592 aout0_big_vec) tb="$tb aout0.lo aout32.lo" ;;
18593 aout_arm_big_vec) tb="$tb aout-arm.lo aout32.lo" ;;
18594 aout_arm_little_vec) tb="$tb aout-arm.lo aout32.lo" ;;
18595 apollocoff_vec) tb="$tb coff-apollo.lo" ;;
18596 arm_epoc_pe_big_vec) tb="$tb epoc-pe-arm.lo peigen.lo cofflink.lo " ;;
18597 arm_epoc_pe_little_vec) tb="$tb epoc-pe-arm.lo peigen.lo cofflink.lo " ;;
18598 arm_epoc_pei_big_vec) tb="$tb epoc-pei-arm.lo peigen.lo cofflink.lo " ;;
[all …]
/freebsd-11-stable/sys/dev/nxge/include/
HDxge-os-pal.h72 #define __xge_trace(tb) { \ argument
73 int msgsize = xge_os_strlen(tb->msg) + 2; \
74 int offset = tb->offset; \
75 if (msgsize != 2 && msgsize < tb->msgbuf_max) { \
76 int leftsize = tb->size - offset; \
77 if ((msgsize + tb->msgbuf_max) > leftsize) { \
78 xge_os_memzero(tb->data + offset, leftsize); \
80 tb->wrapped_once = 1; \
82 xge_os_memcpy(tb->data + offset, tb->msg, msgsize-1); \
83 *(tb->data + offset + msgsize-1) = '\n'; \
[all …]
/freebsd-11-stable/contrib/wpa/src/drivers/
HDdriver_nl80211_event.c967 struct nlattr *tb[]) in mlme_event_michael_mic_failure() argument
973 if (tb[NL80211_ATTR_MAC]) { in mlme_event_michael_mic_failure()
975 nla_data(tb[NL80211_ATTR_MAC]), in mlme_event_michael_mic_failure()
976 nla_len(tb[NL80211_ATTR_MAC])); in mlme_event_michael_mic_failure()
977 data.michael_mic_failure.src = nla_data(tb[NL80211_ATTR_MAC]); in mlme_event_michael_mic_failure()
979 if (tb[NL80211_ATTR_KEY_SEQ]) { in mlme_event_michael_mic_failure()
981 nla_data(tb[NL80211_ATTR_KEY_SEQ]), in mlme_event_michael_mic_failure()
982 nla_len(tb[NL80211_ATTR_KEY_SEQ])); in mlme_event_michael_mic_failure()
984 if (tb[NL80211_ATTR_KEY_TYPE]) { in mlme_event_michael_mic_failure()
986 nla_get_u32(tb[NL80211_ATTR_KEY_TYPE]); in mlme_event_michael_mic_failure()
[all …]
HDdriver_nl80211_capa.c102 struct nlattr *tb) in wiphy_info_supported_iftypes() argument
107 if (tb == NULL) in wiphy_info_supported_iftypes()
110 nla_for_each_nested(nl_mode, tb, i) { in wiphy_info_supported_iftypes()
202 struct nlattr *tb) in wiphy_info_iface_comb() argument
207 if (tb == NULL) in wiphy_info_iface_comb()
210 nla_for_each_nested(nl_combi, tb, rem_combi) { in wiphy_info_iface_comb()
218 struct nlattr *tb) in wiphy_info_supp_cmds() argument
223 if (tb == NULL) in wiphy_info_supp_cmds()
226 nla_for_each_nested(nl_cmd, tb, i) { in wiphy_info_supp_cmds()
252 struct nlattr *tb) in wiphy_info_cipher_suites() argument
[all …]
/freebsd-11-stable/contrib/sendmail/src/
HDtimers.c57 addtimer(ta, tb) in addtimer() argument
59 TIMER *tb;
61 tb->ti_wall_sec += ta->ti_wall_sec;
62 tb->ti_wall_usec += ta->ti_wall_usec;
63 if (tb->ti_wall_usec > 1000000)
65 tb->ti_wall_sec++;
66 tb->ti_wall_usec -= 1000000;
68 tb->ti_cpu_sec += ta->ti_cpu_sec;
69 tb->ti_cpu_usec += ta->ti_cpu_usec;
70 if (tb->ti_cpu_usec > 1000000)
[all …]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
HDlstring.c66 stringtable *tb = &G(L)->strt; in luaS_resize() local
69 if (newsize > tb->size) { in luaS_resize()
70 luaM_reallocvector(L, tb->hash, tb->size, newsize, GCObject *); in luaS_resize()
71 for (i = tb->size; i < newsize; i++) tb->hash[i] = NULL; in luaS_resize()
74 for (i=0; i<tb->size; i++) { in luaS_resize()
75 GCObject *p = tb->hash[i]; in luaS_resize()
76 tb->hash[i] = NULL; in luaS_resize()
80 gch(p)->next = tb->hash[h]; /* chain it */ in luaS_resize()
81 tb->hash[h] = p; in luaS_resize()
86 if (newsize < tb->size) { in luaS_resize()
[all …]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_delta/
HDtext_delta.c430 struct txdelta_baton tb = { 0 }; in svn_txdelta_run() local
433 tb.source = source; in svn_txdelta_run()
434 tb.target = target; in svn_txdelta_run()
435 tb.more_source = TRUE; in svn_txdelta_run()
436 tb.more = TRUE; in svn_txdelta_run()
437 tb.pos = 0; in svn_txdelta_run()
438 tb.buf = apr_palloc(scratch_pool, 2 * SVN_DELTA_WINDOW_SIZE); in svn_txdelta_run()
439 tb.result_pool = result_pool; in svn_txdelta_run()
442 tb.context = svn_checksum_ctx_create(checksum_kind, scratch_pool); in svn_txdelta_run()
450 SVN_ERR(txdelta_next_window(&window, &tb, iterpool)); in svn_txdelta_run()
[all …]
/freebsd-11-stable/contrib/elftoolchain/size/
HDsize.c78 } *tb; variable
806 assert(tb == NULL); in tbl_new()
808 if ((tb = calloc(1, sizeof(*tb))) == NULL) in tbl_new()
810 if ((tb->tbl = calloc(col, sizeof(*tb->tbl))) == NULL) in tbl_new()
812 if ((tb->width = calloc(col, sizeof(*tb->width))) == NULL) in tbl_new()
814 tb->col = col; in tbl_new()
815 tb->row = 0; in tbl_new()
823 assert(tb != NULL && tb->col > 0 && tb->row > 0 && col < tb->col); in tbl_print()
824 assert(s != NULL && tb->tbl[col][tb->row - 1] == NULL); in tbl_print()
825 if ((tb->tbl[col][tb->row - 1] = strdup(s)) == NULL) in tbl_print()
[all …]
/freebsd-11-stable/contrib/lua/src/
HDlstring.c73 stringtable *tb = &G(L)->strt; in luaS_resize() local
74 if (newsize > tb->size) { /* grow table if needed */ in luaS_resize()
75 luaM_reallocvector(L, tb->hash, tb->size, newsize, TString *); in luaS_resize()
76 for (i = tb->size; i < newsize; i++) in luaS_resize()
77 tb->hash[i] = NULL; in luaS_resize()
79 for (i = 0; i < tb->size; i++) { /* rehash */ in luaS_resize()
80 TString *p = tb->hash[i]; in luaS_resize()
81 tb->hash[i] = NULL; in luaS_resize()
85 p->u.hnext = tb->hash[h]; /* chain it */ in luaS_resize()
86 tb->hash[h] = p; in luaS_resize()
[all …]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_diff/
HDdiff_tree.c1258 struct tee_baton_t *tb = processor->baton; in tee_dir_opened() local
1262 SVN_ERR(tb->p1->dir_opened(&(nb->baton1), in tee_dir_opened()
1270 tb->p1, in tee_dir_opened()
1274 SVN_ERR(tb->p2->dir_opened(&(nb->baton2), in tee_dir_opened()
1282 tb->p2, in tee_dir_opened()
1301 struct tee_baton_t *tb = processor->baton; in tee_dir_added() local
1304 SVN_ERR(tb->p1->dir_added(relpath, in tee_dir_added()
1310 tb->p1, in tee_dir_added()
1313 SVN_ERR(tb->p2->dir_added(relpath, in tee_dir_added()
1319 tb->p2, in tee_dir_added()
[all …]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
HDsa.c401 sa_lot_t *tb, *findtb; in sa_add_layout_entry() local
406 tb = kmem_zalloc(sizeof (sa_lot_t), KM_SLEEP); in sa_add_layout_entry()
407 tb->lot_attr_count = attr_count; in sa_add_layout_entry()
408 tb->lot_attrs = kmem_alloc(sizeof (sa_attr_type_t) * attr_count, in sa_add_layout_entry()
410 bcopy(attrs, tb->lot_attrs, sizeof (sa_attr_type_t) * attr_count); in sa_add_layout_entry()
411 tb->lot_num = lot_num; in sa_add_layout_entry()
412 tb->lot_hash = hash; in sa_add_layout_entry()
413 tb->lot_instance = 0; in sa_add_layout_entry()
430 list_create(&tb->lot_idx_tab, sizeof (sa_idx_tab_t), in sa_add_layout_entry()
434 if (sa->sa_attr_table[tb->lot_attrs[i]].sa_length == 0) in sa_add_layout_entry()
[all …]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
HDtree.c1910 txdelta_baton_t *tb = (txdelta_baton_t *) baton; in window_consumer() local
1915 SVN_ERR(tb->interpreter(window, tb->interpreter_baton)); in window_consumer()
1920 SVN_ERR(svn_fs_x__dag_finalize_edits(tb->node, tb->result_checksum, in window_consumer()
1921 tb->pool)); in window_consumer()
1932 txdelta_baton_t *tb = (txdelta_baton_t *) baton; in apply_textdelta() local
1934 svn_fs_x__txn_id_t txn_id = svn_fs_x__root_txn_id(tb->root); in apply_textdelta()
1938 SVN_ERR(svn_fs_x__get_dag_path(&dag_path, tb->root, tb->path, 0, TRUE, in apply_textdelta()
1943 if (tb->root->txn_flags & SVN_FS_TXN_CHECK_LOCKS) in apply_textdelta()
1944 SVN_ERR(svn_fs_x__allow_locked_operation(tb->path, tb->root->fs, in apply_textdelta()
1948 SVN_ERR(svn_fs_x__make_path_mutable(tb->root, dag_path, tb->path, in apply_textdelta()
[all …]
/freebsd-11-stable/contrib/binutils/binutils/
HDrename.c105 struct utimbuf tb; in set_times() local
107 tb.actime = statbuf->st_atime; in set_times()
108 tb.modtime = statbuf->st_mtime; in set_times()
109 result = utime (destination, &tb); in set_times()
112 long tb[2]; in set_times()
114 tb[0] = statbuf->st_atime; in set_times()
115 tb[1] = statbuf->st_mtime; in set_times()
116 result = utime (destination, tb); in set_times()
/freebsd-11-stable/sys/netpfil/ipfw/
HDip_fw_table_algo.c655 struct ta_buf_radix *tb; in ta_prepare_add_radix() local
663 tb = (struct ta_buf_radix *)ta_buf; in ta_prepare_add_radix()
676 mask = (struct sockaddr *)&tb->addr.a4.ma; in ta_prepare_add_radix()
677 tb->ent_ptr = ent; in ta_prepare_add_radix()
688 mask = (struct sockaddr *)&tb->addr.a6.ma; in ta_prepare_add_radix()
689 tb->ent_ptr = xent; in ta_prepare_add_radix()
698 tb->addr_ptr = addr; in ta_prepare_add_radix()
700 tb->mask_ptr = mask; in ta_prepare_add_radix()
712 struct ta_buf_radix *tb; in ta_add_radix() local
716 tb = (struct ta_buf_radix *)ta_buf; in ta_add_radix()
[all …]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/
HDtree.c3701 txdelta_baton_t *tb = (txdelta_baton_t *) baton; in txn_body_txdelta_finalize_edits() local
3702 SVN_ERR(svn_fs_base__dag_finalize_edits(tb->node, in txn_body_txdelta_finalize_edits()
3703 tb->result_checksum, in txn_body_txdelta_finalize_edits()
3704 tb->root->txn, in txn_body_txdelta_finalize_edits()
3708 return add_change(tb->root->fs, tb->root->txn, tb->path, in txn_body_txdelta_finalize_edits()
3709 svn_fs_base__dag_get_id(tb->node), in txn_body_txdelta_finalize_edits()
3722 txdelta_baton_t *tb = (txdelta_baton_t *) baton; in write_to_string() local
3723 svn_stringbuf_appendbytes(tb->target_string, data, *len); in write_to_string()
3733 txdelta_baton_t *tb = (txdelta_baton_t *) baton; in window_consumer() local
3738 SVN_ERR(tb->interpreter(window, tb->interpreter_baton)); in window_consumer()
[all …]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
HDtree.c3005 txdelta_baton_t *tb = (txdelta_baton_t *) baton; in window_consumer() local
3010 SVN_ERR(tb->interpreter(window, tb->interpreter_baton)); in window_consumer()
3015 SVN_ERR(svn_fs_fs__dag_finalize_edits(tb->node, tb->result_checksum, in window_consumer()
3016 tb->pool)); in window_consumer()
3026 txdelta_baton_t *tb = (txdelta_baton_t *) baton; in apply_textdelta() local
3028 const svn_fs_fs__id_part_t *txn_id = root_txn_id(tb->root); in apply_textdelta()
3032 SVN_ERR(open_path(&parent_path, tb->root, tb->path, 0, TRUE, pool)); in apply_textdelta()
3036 if (tb->root->txn_flags & SVN_FS_TXN_CHECK_LOCKS) in apply_textdelta()
3037 SVN_ERR(svn_fs_fs__allow_locked_operation(tb->path, tb->root->fs, in apply_textdelta()
3041 SVN_ERR(make_path_mutable(tb->root, parent_path, tb->path, pool)); in apply_textdelta()
[all …]
/freebsd-11-stable/sys/net/altq/
HDaltq_cdnr.c520 tb_import_profile(tb, profile) in tb_import_profile() argument
521 struct tbe *tb; in tb_import_profile()
524 tb->rate = TB_SCALE(profile->rate / 8) / machclk_freq;
525 tb->depth = TB_SCALE(profile->depth);
526 if (tb->rate > 0)
527 tb->filluptime = tb->depth / tb->rate;
529 tb->filluptime = 0xffffffffffffffffLL;
530 tb->token = tb->depth;
531 tb->last = read_machclk();
553 tb_import_profile(&tbm->tb, profile);
[all …]
/freebsd-11-stable/contrib/bsnmp/lib/
HDsnmp.c288 struct asn_buf tb; in parse_secparams() local
291 tb.asn_ptr = buf; in parse_secparams()
292 tb.asn_len = 256; in parse_secparams()
299 tb.asn_len = len; in parse_secparams()
301 if (asn_get_sequence(&tb, &octs_len) != ASN_ERR_OK) { in parse_secparams()
307 if (asn_get_octetstring(&tb, (u_char *)&pdu->engine.engine_id, in parse_secparams()
314 if (asn_get_integer(&tb, &pdu->engine.engine_boots) != ASN_ERR_OK) { in parse_secparams()
319 if (asn_get_integer(&tb, &pdu->engine.engine_time) != ASN_ERR_OK) { in parse_secparams()
325 if (asn_get_octetstring(&tb, (u_char *)&pdu->user.sec_name, &octs_len) in parse_secparams()
333 if (asn_get_octetstring(&tb, (u_char *)&pdu->msg_digest, &octs_len) != in parse_secparams()
[all …]
/freebsd-11-stable/gnu/usr.bin/gdb/kgdb/
HDtrgt.c235 struct target_ops *tb; in kgdb_trgt_find_new_threads() local
240 tb = find_target_beneath(&kgdb_trgt_ops); in kgdb_trgt_find_new_threads()
241 if (tb->to_find_new_threads != NULL) in kgdb_trgt_find_new_threads()
242 tb->to_find_new_threads(); in kgdb_trgt_find_new_threads()
264 struct target_ops *tb; in kgdb_trgt_xfer_memory() local
274 tb = find_target_beneath(target); in kgdb_trgt_xfer_memory()
275 return (tb->to_xfer_memory(memaddr, myaddr, len, write, attrib, tb)); in kgdb_trgt_xfer_memory()
/freebsd-11-stable/sys/powerpc/powerpc/
HDclock.c301 u_quad_t tb, ttb; in DELAY() local
303 tb = mftb(); in DELAY()
304 ttb = tb + howmany(n * 1000, ns_per_tick); in DELAY()
305 while (tb < ttb) in DELAY()
306 tb = mftb(); in DELAY()
/freebsd-11-stable/lib/libc/nameser/
HDns_samedomain.c200 char ta[NS_MAXDNAME], tb[NS_MAXDNAME]; in ns_samename() local
203 ns_makecanon(b, tb, sizeof tb) < 0) in ns_samename()
205 if (strcasecmp(ta, tb) == 0) in ns_samename()
/freebsd-11-stable/sys/powerpc/include/
HDcpufunc.h140 u_quad_t tb; in mftb() local
142 __asm __volatile ("mftb %0" : "=r"(tb)); in mftb()
144 uint32_t *tbup = (uint32_t *)&tb; in mftb()
153 return (tb); in mftb()
/freebsd-11-stable/sys/kern/
HDsubr_taskqueue.c394 struct taskqueue_busy *tb; in taskqueue_drain_tq_active() local
406 LIST_FOREACH(tb, &queue->tq_active, tb_link) { in taskqueue_drain_tq_active()
407 if ((int)(tb->tb_seq - seq) <= 0) { in taskqueue_drain_tq_active()
408 TQ_SLEEP(queue, tb->tb_running, "tq_adrain"); in taskqueue_drain_tq_active()
443 struct taskqueue_busy tb; in taskqueue_run_locked() local
449 tb.tb_running = NULL; in taskqueue_run_locked()
450 LIST_INSERT_HEAD(&queue->tq_active, &tb, tb_link); in taskqueue_run_locked()
458 tb.tb_running = task; in taskqueue_run_locked()
459 tb.tb_seq = ++queue->tq_seq; in taskqueue_run_locked()
468 LIST_REMOVE(&tb, tb_link); in taskqueue_run_locked()
[all …]
/freebsd-11-stable/etc/
HDdisktab89 :pb#13824:ob#13824:tb=swap: \
96 :pb#13260:ob#13260:tb=swap: \
103 :pb#15748:ob#15748:tb=swap:\
110 :pb#12144:ob#12144:tb=swap: \
124 :pb#24288:ob#15840:tb=swap: \
134 :pb#21600:ob#21600:tb=swap: \
142 :pb#42000:ob#21000:tb=swap: \
150 :pb#80640:ob#20160:tb=swap: \
160 :pb#40320:ob#102816:tb=swap: \

1234