Searched refs:ta (Results 1 - 25 of 85) sorted by relevance

1234

/freebsd-current/tools/boot/
H A Duniverse.sh24 local ta=$1
28 echo -n "Building $ta ${opt} ... "
29 objdir=$(make buildenv TARGET_ARCH=$ta BUILDENV_SHELL="make -V .OBJDIR" | tail -1)
37 if ! make buildenv TARGET_ARCH=$ta BUILDENV_SHELL="make clean cleandepend cleandir obj depend" \
42 if ! make buildenv TARGET_ARCH=$ta BUILDENV_SHELL="make ${opt} -j 40 all" \
59 ta=${i##*/}
60 dobuild $ta _.boot.${ta}.no_forth.log "WITHOUT_FORTH=yes"
69 ta=${i##*/}
70 dobuild $ta
[all...]
/freebsd-current/lib/libthread_db/
H A Dlibpthread_db.c46 static void pt_unmap_lwp(const td_thragent_t *ta, lwpid_t lwp);
75 td_thragent_t *ta = __DECONST(td_thragent_t *, const_ta); local
81 for (i = 1; i < ta->map_len; ++i) {
82 if (ta->map[i].type == PT_NONE) {
85 } else if (ta->map[i].type == type && ta->map[i].thr == pt) {
91 if (ta->map_len == 0) {
92 ta->map = calloc(20, sizeof(struct pt_map));
93 if (ta->map == NULL)
95 ta
147 td_thragent_t *ta; local
202 pt_ta_delete(td_thragent_t *ta) argument
221 pt_ta_map_id2thr(const td_thragent_t *ta, thread_t id, td_thrhandle_t *th) argument
295 pt_ta_map_lwp2thr(const td_thragent_t *ta, lwpid_t lwp, td_thrhandle_t *th) argument
334 pt_ta_thr_iter(const td_thragent_t *ta, td_thr_iter_f *callback, void *cbdata_p, td_thr_state_e state __unused, int ti_pri __unused, sigset_t *ti_sigmask_p __unused, unsigned int ti_user_flags __unused) argument
373 pt_ta_tsd_iter(const td_thragent_t *ta, td_key_iter_f *ki, void *arg) argument
442 const td_thragent_t *ta = th->th_ta; local
576 const td_thragent_t *ta = th->th_ta; local
677 const td_thragent_t *ta = th->th_ta; local
721 const td_thragent_t *ta = th->th_ta; local
762 const td_thragent_t *ta = th->th_ta; local
804 const td_thragent_t *ta = th->th_ta; local
854 const td_thragent_t *ta = th->th_ta; local
901 const td_thragent_t *ta = th->th_ta; local
979 const td_thragent_t *ta = th->th_ta; local
1049 pt_unmap_lwp(const td_thragent_t *ta, lwpid_t lwp) argument
1075 const td_thragent_t *ta = th->th_ta; local
[all...]
H A Dthread_db.c69 td_ta_clear_event(const td_thragent_t *ta, td_thr_events_t *events) argument
71 return (ta->ta_ops->to_ta_clear_event(ta, events));
75 td_ta_delete(td_thragent_t *ta) argument
77 TAILQ_REMOVE(&proclist, ta, ta_next);
78 return (ta->ta_ops->to_ta_delete(ta));
82 td_ta_event_addr(const td_thragent_t *ta, td_event_e event, td_notify_t *ptr) argument
84 return (ta->ta_ops->to_ta_event_addr(ta, even
88 td_ta_event_getmsg(const td_thragent_t *ta, td_event_msg_t *msg) argument
94 td_ta_map_id2thr(const td_thragent_t *ta, thread_t id, td_thrhandle_t *th) argument
100 td_ta_map_lwp2thr(const td_thragent_t *ta, lwpid_t lwpid, td_thrhandle_t *th) argument
122 td_ta_set_event(const td_thragent_t *ta, td_thr_events_t *events) argument
128 td_ta_thr_iter(const td_thragent_t *ta, td_thr_iter_f *callback, void *cbdata_p, td_thr_state_e state, int ti_pri, sigset_t *ti_sigmask_p, unsigned int ti_user_flags) argument
137 td_ta_tsd_iter(const td_thragent_t *ta, td_key_iter_f *callback, void *cbdata_p) argument
146 const td_thragent_t *ta = th->th_ta; local
153 const td_thragent_t *ta = th->th_ta; local
160 const td_thragent_t *ta = th->th_ta; local
167 const td_thragent_t *ta = th->th_ta; local
174 const td_thragent_t *ta = th->th_ta; local
181 const td_thragent_t *ta = th->th_ta; local
189 const td_thragent_t *ta = th->th_ta; local
197 const td_thragent_t *ta = th->th_ta; local
206 const td_thragent_t *ta = th->th_ta; local
213 const td_thragent_t *ta = th->th_ta; local
220 const td_thragent_t *ta = th->th_ta; local
228 const td_thragent_t *ta = th->th_ta; local
236 const td_thragent_t *ta = th->th_ta; local
243 const td_thragent_t *ta = th->th_ta; local
250 const td_thragent_t *ta = th->th_ta; local
258 const td_thragent_t *ta = th->th_ta; local
267 const td_thragent_t *ta = th->th_ta; local
335 thr_pread_int(const struct td_thragent *ta, psaddr_t addr, uint32_t *val) argument
348 thr_pread_long(const struct td_thragent *ta, psaddr_t addr, uint64_t *val) argument
355 thr_pread_ptr(const struct td_thragent *ta, psaddr_t addr, psaddr_t *val) argument
423 thr_pwrite_int(const struct td_thragent *ta, psaddr_t addr, uint32_t val) argument
430 thr_pwrite_long(const struct td_thragent *ta, psaddr_t addr, uint64_t val) argument
437 thr_pwrite_ptr(const struct td_thragent *ta, psaddr_t addr, psaddr_t val) argument
[all...]
H A Dlibthr_db.c132 td_thragent_t *ta; local
139 ta = malloc(sizeof(td_thragent_t));
140 if (ta == NULL)
143 ta->ph = ph;
145 LOOKUP_SYM(ph, "_libthr_debug", &ta->libthr_debug_addr);
146 LOOKUP_SYM(ph, "_thread_list", &ta->thread_list_addr);
147 LOOKUP_SYM(ph, "_thread_active_threads",&ta->thread_active_threads_addr);
148 LOOKUP_SYM(ph, "_thread_keytable", &ta->thread_keytable_addr);
149 LOOKUP_SYM(ph, "_thread_last_event", &ta->thread_last_event_addr);
150 LOOKUP_SYM(ph, "_thread_event_mask", &ta
185 pt_ta_delete(td_thragent_t *ta) argument
202 pt_ta_map_id2thr(const td_thragent_t *ta, thread_t id, td_thrhandle_t *th) argument
236 pt_ta_map_lwp2thr(const td_thragent_t *ta, lwpid_t lwp, td_thrhandle_t *th) argument
242 pt_ta_thr_iter(const td_thragent_t *ta, td_thr_iter_f *callback, void *cbdata_p, td_thr_state_e state __unused, int ti_pri __unused, sigset_t *ti_sigmask_p __unused, unsigned int ti_user_flags __unused) argument
276 pt_ta_tsd_iter(const td_thragent_t *ta, td_key_iter_f *ki, void *arg) argument
311 pt_ta_event_addr(const td_thragent_t *ta, td_event_e event, td_notify_t *ptr) argument
331 pt_ta_set_event(const td_thragent_t *ta, td_thr_events_t *events) argument
348 pt_ta_clear_event(const td_thragent_t *ta, td_thr_events_t *events) argument
365 pt_ta_event_getmsg(const td_thragent_t *ta, td_event_msg_t *msg) argument
411 const td_thragent_t *ta = th->th_ta; local
458 const td_thragent_t *ta = th->th_ta; local
529 const td_thragent_t *ta = th->th_ta; local
546 const td_thragent_t *ta = th->th_ta; local
562 const td_thragent_t *ta = th->th_ta; local
579 const td_thragent_t *ta = th->th_ta; local
596 const td_thragent_t *ta = th->th_ta; local
612 const td_thragent_t *ta = th->th_ta; local
628 const td_thragent_t *ta = th->th_ta; local
640 const td_thragent_t *ta = th->th_ta; local
656 const td_thragent_t *ta = th->th_ta; local
673 const td_thragent_t *ta = th->th_ta; local
733 const td_thragent_t *ta = th->th_ta; local
[all...]
/freebsd-current/contrib/unbound/validator/
H A Dval_anchor.c118 struct trust_anchor* ta = (struct trust_anchor*)elem; local
119 if(!ta) return;
120 if(ta->autr) {
121 autr_point_delete(ta);
124 lock_basic_destroy(&ta->lock);
125 free(ta->name);
126 p = ta->keylist;
133 assembled_rrset_delete(ta->ds_rrset);
134 assembled_rrset_delete(ta->dnskey_rrset);
135 free(ta);
227 struct trust_anchor* ta = (struct trust_anchor*)malloc( local
260 anchor_find_key(struct trust_anchor* ta, uint8_t* rdata, size_t rdata_len, uint16_t type) argument
308 struct trust_anchor* ta; local
360 struct trust_anchor* ta; local
383 struct trust_anchor* ta; local
400 struct trust_anchor* ta; local
430 struct trust_anchor* ta = NULL, *tanew; local
856 assemble_it(struct trust_anchor* ta, size_t num, uint16_t type) argument
931 anchors_assemble(struct trust_anchor* ta) argument
953 anchors_ds_unsupported(struct trust_anchor* ta) argument
970 anchors_dnskey_unsupported(struct trust_anchor* ta) argument
989 struct trust_anchor* ta; local
1176 struct trust_anchor *ta; local
1217 struct trust_anchor* ta; local
1260 anchor_list_keytags(struct trust_anchor* ta, uint16_t* list, size_t num) argument
1329 struct trust_anchor* ta, *next; local
[all...]
H A Dautotrust.c130 verbose_key(struct autr_ta* ta, enum verbosity_value level,
135 * @param ta: trust anchor key with DNSKEY data.
140 verbose_key(struct autr_ta* ta, enum verbosity_value level, argument
146 char* str = sldns_wire2str_dname(ta->rr, ta->dname_len);
148 ta->rr, ta->rr_len, ta->dname_len),
149 sldns_wirerr_get_rdatalen(ta->rr, ta
166 parse_comments(char* str, struct autr_ta* ta) argument
298 ta_is_dnskey_sep(struct autr_ta* ta) argument
319 struct autr_ta* ta = (struct autr_ta*)calloc(1, sizeof(*ta)); local
447 struct autr_ta* ta = autr_ta_create(rr, rr_len, dname_len); local
533 struct autr_ta* ta = NULL; local
1117 struct autr_ta* ta; local
1325 seen_trustanchor(struct autr_ta* ta, uint8_t seen) argument
1334 seen_revoked_trustanchor(struct autr_ta* ta, uint8_t revoked) argument
1341 revoke_dnskey(struct autr_ta* ta, int off) argument
1422 struct autr_ta* ta; local
1441 struct autr_ta* ta; local
1525 struct autr_ta* ta; local
1542 struct autr_ta* ta = NULL; local
1635 struct autr_ta* ta = NULL; local
1692 check_holddown(struct module_env* env, struct autr_ta* ta, unsigned int holddown) argument
1712 reset_holddown(struct module_env* env, struct autr_ta* ta, int* changed) argument
1720 set_trustanchor_state(struct module_env* env, struct autr_ta* ta, int* changed, autr_state_type s) argument
2268 autr_debug_print_ta(struct autr_ta* ta) argument
2289 struct autr_ta* ta; local
[all...]
/freebsd-current/contrib/bearssl/tools/
H A Dcerts.c40 certificate_to_trust_anchor_inner(br_x509_trust_anchor *ta, argument
56 ta->dn.data = VEC_TOARRAY(vdn);
57 ta->dn.len = VEC_LEN(vdn);
59 ta->flags = 0;
61 ta->flags |= BR_X509_TA_CA;
65 ta->pkey.key_type = BR_KEYTYPE_RSA;
66 ta->pkey.key.rsa.n = xblobdup(pk->key.rsa.n, pk->key.rsa.nlen);
67 ta->pkey.key.rsa.nlen = pk->key.rsa.nlen;
68 ta->pkey.key.rsa.e = xblobdup(pk->key.rsa.e, pk->key.rsa.elen);
69 ta
89 br_x509_trust_anchor ta; local
100 free_ta_contents(br_x509_trust_anchor *ta) argument
127 br_x509_trust_anchor ta; local
[all...]
H A Dta.c91 print_ta_internals(br_x509_trust_anchor *ta, long ctr) argument
96 print_blob(tmp, ta->dn.data, ta->dn.len);
97 switch (ta->pkey.key_type) {
100 print_blob(tmp, ta->pkey.key.rsa.n, ta->pkey.key.rsa.nlen);
102 print_blob(tmp, ta->pkey.key.rsa.e, ta->pkey.key.rsa.elen);
106 print_blob(tmp, ta->pkey.key.ec.q, ta
117 print_ta(br_x509_trust_anchor *ta, long ctr) argument
[all...]
/freebsd-current/contrib/sendmail/src/
H A Dtimers.c57 addtimer(ta, tb)
58 TIMER *ta;
61 tb->ti_wall_sec += ta->ti_wall_sec;
62 tb->ti_wall_usec += ta->ti_wall_usec;
68 tb->ti_cpu_sec += ta->ti_cpu_sec;
69 tb->ti_cpu_usec += ta->ti_cpu_usec;
78 subtimer(ta, tb)
79 TIMER *ta;
82 tb->ti_wall_sec -= ta->ti_wall_sec;
83 tb->ti_wall_usec -= ta
[all...]
/freebsd-current/sys/sys/
H A D_task.h59 #define TASK_IS_NET(ta) ((ta)->ta_flags & TASK_NETWORK)
/freebsd-current/sys/netpfil/ipfw/
H A Dip_fw_table.c86 struct table_algo *ta; /* Callbacks for given algo */ member in struct:table_config
97 struct tid_info *ti, struct table_algo *ta, char *adata, uint8_t tflags);
352 struct table_algo *ta; local
361 ta = tc->ta;
362 ta_buf_sz = ta->ta_buf_size;
373 error = ta->add(tc->astate, tinfo, ptei, v, &num);
379 error = ta->prepare_del(ch, ptei, vv);
381 error = ta->del(tc->astate, tinfo, ptei, vv, &num);
395 prepare_batch_buffer(struct ip_fw_chain *ch, struct table_algo *ta, argument
447 flush_batch_buffer(struct ip_fw_chain *ch, struct table_algo *ta, struct tentry_info *tei, uint32_t count, int rollback, caddr_t ta_buf_m, caddr_t ta_buf) argument
547 struct table_algo *ta; local
718 struct table_algo *ta; local
817 struct table_algo *ta; local
1091 struct table_algo *ta; local
1207 struct table_algo *ta; local
1386 struct table_algo *ta; local
1875 struct table_algo *ta; local
2037 struct table_algo *ta; local
2066 struct table_algo *ta; local
2170 struct table_algo *ta; local
2232 struct table_algo *ta; local
2348 struct table_algo *ta; local
2385 struct table_algo *ta; local
2421 struct table_algo *ta; local
2458 struct table_algo *ta; local
2507 struct table_algo *ta; local
2533 struct table_algo *ta; local
2569 struct table_algo *ta; local
2620 ipfw_add_table_algo(struct ip_fw_chain *ch, struct table_algo *ta, size_t size, int *idx) argument
2667 struct table_algo *ta; local
2698 struct table_algo *ta; local
3175 alloc_table_config(struct ip_fw_chain *ch, struct tid_info *ti, struct table_algo *ta, char *aname, uint8_t tflags) argument
[all...]
H A Dip_fw_table_value.c269 struct table_algo *ta; member in struct:flush_args
280 struct table_algo *ta; local
286 ta = fa->ta;
289 error = ta->dump_tentry(fa->astate, fa->ti, e, tent);
306 struct table_algo *ta, void *astate, struct table_info *ti)
314 fa.ta = ta;
318 ta->foreach(astate, ti, unref_table_value_cb, &fa);
383 vlimit = ts->ta
305 ipfw_unref_table_values(struct ip_fw_chain *ch, struct table_config *tc, struct table_algo *ta, void *astate, struct table_info *ti) argument
[all...]
/freebsd-current/lib/libsecureboot/
H A Dbrf.c342 certificate_to_trust_anchor_inner(br_x509_trust_anchor *ta, argument
358 ta->dn.data = VEC_TOARRAY(vdn);
359 ta->dn.len = VEC_LEN(vdn);
361 ta->flags = 0;
363 ta->flags |= BR_X509_TA_CA;
367 ta->pkey.key_type = BR_KEYTYPE_RSA;
368 ta->pkey.key.rsa.n = xblobdup(pk->key.rsa.n, pk->key.rsa.nlen);
369 ta->pkey.key.rsa.nlen = pk->key.rsa.nlen;
370 ta->pkey.key.rsa.e = xblobdup(pk->key.rsa.e, pk->key.rsa.elen);
371 ta
389 free_ta_contents(br_x509_trust_anchor *ta) argument
[all...]
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dvdev_trim.c484 * Returns the average trim rate in bytes/sec for the ta->trim_vdev.
487 vdev_trim_calculate_rate(trim_args_t *ta) argument
489 return (ta->trim_bytes_done * 1000 /
490 (NSEC2MSEC(gethrtime() - ta->trim_start_time) + 1));
498 vdev_trim_range(trim_args_t *ta, uint64_t start, uint64_t size) argument
500 vdev_t *vd = ta->trim_vdev;
510 if (ta->trim_type == TRIM_TYPE_MANUAL) {
512 vdev_trim_calculate_rate(ta) > vd->vdev_trim_rate) {
518 ta->trim_bytes_done += size;
525 vd->vdev_trim_inflight[ta
591 vdev_trim_ranges(trim_args_t *ta) argument
812 trim_args_t *ta = arg; local
846 trim_args_t *ta = arg; local
880 trim_args_t ta; local
1202 trim_args_t *ta = arg; local
1334 trim_args_t *ta = &tap[c]; local
1376 trim_args_t *ta = &tap[c]; local
1432 trim_args_t *ta = &tap[c]; local
1587 trim_args_t ta = {0}; local
1721 trim_args_t ta = {0}; local
[all...]
/freebsd-current/tools/test/stress2/misc/
H A Drename9.sh102 struct stat fb, tb, fa, ta;
114 bzero(&ta, sizeof(ta));
133 if (stat(toFile, &ta) == -1)
136 if (tb.st_ino == ta.st_ino) {
156 toFile, (uintmax_t)ta.st_ino, (uintmax_t)ta.st_nlink,
157 ta.st_blocks);
/freebsd-current/lib/libc/nameser/
H A Dns_samedomain.c196 char ta[NS_MAXDNAME], tb[NS_MAXDNAME]; local
198 if (ns_makecanon(a, ta, sizeof ta) < 0 ||
201 if (strcasecmp(ta, tb) == 0)
/freebsd-current/lib/libc/stdlib/
H A Dradixsort.c101 const u_char *tr, **ta; local
109 if ((ta = malloc(n * sizeof(a))) == NULL)
111 r_sort_b(a, ta, n, 0, tr, endch);
112 free(ta);
222 r_sort_b(const u_char **a, const u_char **ta, int n, int i, const u_char *tr, argument
252 r_sort_b(a, ta, n, i, tr, endch);
283 for (ak = ta + n, ai = a+n; ak > ta;) /* Copy to temp. */
285 for (ak = ta+n; --ak >= ta;) /* Dea
[all...]
/freebsd-current/crypto/openssl/crypto/bn/
H A Dbn_mod.c141 BN_ULONG borrow, carry, ta, tb, mask, *rp; local
153 ta = ap[ai] & mask;
157 rp[i] = ta - tb - borrow;
158 if (ta != tb)
159 borrow = (ta < tb);
167 ta = ((ap[i] & mask) + carry) & BN_MASK2;
168 carry = (ta < carry);
169 rp[i] = (rp[i] + ta) & BN_MASK2;
170 carry += (rp[i] < ta);
174 ta
[all...]
/freebsd-current/crypto/heimdal/lib/asn1/
H A Dasn1_gen.c74 int ret, l, c, ty, ta; local
102 ta = der_get_tag_num(tag);
103 if (ta == -1)
104 ta = atoi(tag);
110 line, (unsigned long)offset, c, ty, ta, l,
117 ta,
/freebsd-current/contrib/libfido2/src/
H A Dbio.c139 bio_reset_template_array(fido_bio_template_array_t *ta) argument
141 for (size_t i = 0; i < ta->n_alloc; i++)
142 bio_reset_template(&ta->ptr[i]);
144 free(ta->ptr);
145 ta->ptr = NULL;
146 memset(ta, 0, sizeof(*ta));
173 fido_bio_template_array_t *ta = arg; local
181 if (ta->n_rx >= ta
200 fido_bio_template_array_t *ta = arg; local
235 bio_rx_template_array(fido_dev_t *dev, fido_bio_template_array_t *ta, int *ms) argument
268 bio_get_template_array_wait(fido_dev_t *dev, fido_bio_template_array_t *ta, const char *pin, int *ms) argument
281 fido_bio_dev_get_template_array(fido_dev_t *dev, fido_bio_template_array_t *ta, const char *pin) argument
758 fido_bio_template_array_count(const fido_bio_template_array_t *ta) argument
778 fido_bio_template_array_t *ta; local
826 fido_bio_template(const fido_bio_template_array_t *ta, size_t idx) argument
[all...]
/freebsd-current/contrib/ntp/libntp/lib/isc/include/isc/
H A Devent.h62 #define ISC_EVENT_INIT(event, sz, at, ta, ty, ac, ar, sn, df, da) \
66 (event)->ev_tag = (ta); \
/freebsd-current/contrib/libfido2/tools/
H A Dbio.c22 print_template(const fido_bio_template_array_t *ta, size_t idx) argument
27 if ((t = fido_bio_template(ta, idx)) == NULL) {
46 fido_bio_template_array_t *ta = NULL; local
51 if ((ta = fido_bio_template_array_new()) == NULL)
56 r = fido_bio_dev_get_template_array(dev, ta, pin);
63 for (size_t i = 0; i < fido_bio_template_array_count(ta); i++)
64 if (print_template(ta, i) < 0)
69 fido_bio_template_array_free(&ta);
/freebsd-current/sbin/pfctl/
H A Dpfctl_table.c366 print_table(struct pfr_table *ta, int verbose, int debug) argument
368 if (!debug && !(ta->pfrt_flags & PFR_TFLAG_ACTIVE))
372 (ta->pfrt_flags & PFR_TFLAG_CONST) ? 'c' : '-',
373 (ta->pfrt_flags & PFR_TFLAG_PERSIST) ? 'p' : '-',
374 (ta->pfrt_flags & PFR_TFLAG_ACTIVE) ? 'a' : '-',
375 (ta->pfrt_flags & PFR_TFLAG_INACTIVE) ? 'i' : '-',
376 (ta->pfrt_flags & PFR_TFLAG_REFERENCED) ? 'r' : '-',
377 (ta->pfrt_flags & PFR_TFLAG_REFDANCHOR) ? 'h' : '-',
378 (ta->pfrt_flags & PFR_TFLAG_COUNTERS) ? 'C' : '-',
379 ta
[all...]
/freebsd-current/contrib/atf/atf-c++/detail/
H A Dauto_array_test.cpp52 do_copy(atf::auto_array< test_array >& ta) argument
54 return atf::auto_array< test_array >(ta);
164 test_array* ta = new test_array[10];
165 auto_array< test_array > t(ta);
166 ATF_REQUIRE_EQ(t.get(), ta);
/freebsd-current/contrib/kyua/utils/
H A Dauto_array_test.cpp183 test_array* ta = new test_array[10]; local
184 auto_array< test_array > t(ta);
185 ATF_REQUIRE_EQ(t.get(), ta);

Completed in 249 milliseconds

1234