Searched refs:ti (Results 1 - 25 of 211) sorted by relevance

123456789

/freebsd-11-stable/sys/kern/
H A Dtty_inq.c86 #define TTYINQ_INSERT_TAIL(ti, tib) do { \
87 if (ti->ti_end == 0) { \
89 tib->tib_next = ti->ti_firstblock; \
90 ti->ti_firstblock = tib; \
92 tib->tib_prev = ti->ti_lastblock; \
93 tib->tib_next = ti->ti_lastblock->tib_next; \
94 ti->ti_lastblock->tib_next = tib; \
98 ti->ti_nblocks++; \
101 #define TTYINQ_REMOVE_HEAD(ti) do { \
102 ti
116 ttyinq_setsize(struct ttyinq *ti, struct tty *tp, size_t size) argument
148 ttyinq_free(struct ttyinq *ti) argument
164 ttyinq_read_uio(struct ttyinq *ti, struct tty *tp, struct uio *uio, size_t rlen, size_t flen) argument
279 ttyinq_write(struct ttyinq *ti, const void *buf, size_t nbytes, int quote) argument
327 ttyinq_write_nofrag(struct ttyinq *ti, const void *buf, size_t nbytes, int quote) argument
342 ttyinq_canonicalize(struct ttyinq *ti) argument
350 ttyinq_findchar(struct ttyinq *ti, const char *breakc, size_t maxlen, char *lastc) argument
376 ttyinq_flush(struct ttyinq *ti) argument
393 ttyinq_peekchar(struct ttyinq *ti, char *c, int *quote) argument
411 ttyinq_unputchar(struct ttyinq *ti) argument
428 ttyinq_reprintpos_set(struct ttyinq *ti) argument
436 ttyinq_reprintpos_reset(struct ttyinq *ti) argument
444 ttyinq_line_iterate(struct ttyinq *ti, ttyinq_line_iterator_t *iterator, void *data, unsigned int offset, struct ttyinq_block *tib) argument
470 ttyinq_line_iterate_from_linestart(struct ttyinq *ti, ttyinq_line_iterator_t *iterator, void *data) argument
479 ttyinq_line_iterate_from_reprintpos(struct ttyinq *ti, ttyinq_line_iterator_t *iterator, void *data) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bf/
H A Dbf_cfb64.c75 BF_LONG ti[2]; local
83 ti[0] = v0;
85 ti[1] = v1;
86 BF_encrypt((BF_LONG *)ti, schedule);
88 t = ti[0];
90 t = ti[1];
103 ti[0] = v0;
105 ti[1] = v1;
106 BF_encrypt((BF_LONG *)ti, schedule);
108 t = ti[
[all...]
H A Dbf_ofb64.c76 BF_LONG ti[2]; local
83 ti[0] = v0;
84 ti[1] = v1;
90 BF_encrypt((BF_LONG *)ti, schedule);
92 t = ti[0];
94 t = ti[1];
102 v0 = ti[0];
103 v1 = ti[1];
108 t = v0 = v1 = ti[0] = ti[
[all...]
/freebsd-11-stable/crypto/openssl/crypto/cast/
H A Dc_cfb64.c75 CAST_LONG ti[2]; local
83 ti[0] = v0;
85 ti[1] = v1;
86 CAST_encrypt((CAST_LONG *)ti, schedule);
88 t = ti[0];
90 t = ti[1];
103 ti[0] = v0;
105 ti[1] = v1;
106 CAST_encrypt((CAST_LONG *)ti, schedule);
108 t = ti[
[all...]
H A Dc_ofb64.c76 CAST_LONG ti[2]; local
83 ti[0] = v0;
84 ti[1] = v1;
90 CAST_encrypt((CAST_LONG *)ti, schedule);
92 t = ti[0];
94 t = ti[1];
102 v0 = ti[0];
103 v1 = ti[1];
108 t = v0 = v1 = ti[0] = ti[
[all...]
/freebsd-11-stable/crypto/openssl/crypto/des/
H A Dcfb64enc.c74 DES_LONG ti[2]; local
82 ti[0] = v0;
84 ti[1] = v1;
85 DES_encrypt1(ti, schedule, DES_ENCRYPT);
87 v0 = ti[0];
89 v0 = ti[1];
102 ti[0] = v0;
104 ti[1] = v1;
105 DES_encrypt1(ti, schedule, DES_ENCRYPT);
107 v0 = ti[
[all...]
H A Dofb64enc.c75 DES_LONG ti[2]; local
82 ti[0] = v0;
83 ti[1] = v1;
89 DES_encrypt1(ti, schedule, DES_ENCRYPT);
91 t = ti[0];
93 t = ti[1];
101 v0 = ti[0];
102 v1 = ti[1];
107 t = v0 = v1 = ti[0] = ti[
[all...]
H A Dofb64ede.c76 DES_LONG ti[2]; local
83 ti[0] = v0;
84 ti[1] = v1;
90 /* ti[0]=v0; */
91 /* ti[1]=v1; */
92 DES_encrypt3(ti, k1, k2, k3);
93 v0 = ti[0];
94 v1 = ti[1];
105 /*- v0=ti[0];
106 v1=ti[
[all...]
H A Dofb_enc.c75 DES_LONG ti[2]; local
97 ti[0] = v0;
98 ti[1] = v1;
100 ti[0] = v0;
101 ti[1] = v1;
102 DES_encrypt1((DES_LONG *)ti, schedule, DES_ENCRYPT);
103 vv0 = ti[0];
104 vv1 = ti[1];
130 v0 = v1 = d0 = d1 = ti[0] = ti[
[all...]
H A Dcfb64ede.c76 DES_LONG ti[2]; local
86 ti[0] = v0;
87 ti[1] = v1;
88 DES_encrypt3(ti, ks1, ks2, ks3);
89 v0 = ti[0];
90 v1 = ti[1];
108 ti[0] = v0;
109 ti[1] = v1;
110 DES_encrypt3(ti, ks1, ks2, ks3);
111 v0 = ti[
153 DES_LONG ti[2]; local
[all...]
H A Dcfb_enc.c81 DES_LONG ti[2]; local
103 ti[0] = v0;
104 ti[1] = v1;
105 DES_encrypt1((DES_LONG *)ti, schedule, DES_ENCRYPT);
108 d0 ^= ti[0];
109 d1 ^= ti[1];
150 ti[0] = v0;
151 ti[1] = v1;
152 DES_encrypt1((DES_LONG *)ti, schedule, DES_ENCRYPT);
189 d0 ^= ti[
[all...]
/freebsd-11-stable/crypto/openssl/crypto/idea/
H A Di_cfb64.c75 unsigned long ti[2]; local
83 ti[0] = v0;
85 ti[1] = v1;
86 idea_encrypt((unsigned long *)ti, schedule);
88 t = ti[0];
90 t = ti[1];
103 ti[0] = v0;
105 ti[1] = v1;
106 idea_encrypt((unsigned long *)ti, schedule);
108 t = ti[
[all...]
H A Di_ofb64.c76 unsigned long ti[2]; local
83 ti[0] = v0;
84 ti[1] = v1;
90 idea_encrypt((unsigned long *)ti, schedule);
92 t = ti[0];
94 t = ti[1];
102 v0 = ti[0];
103 v1 = ti[1];
108 t = v0 = v1 = ti[0] = ti[
[all...]
/freebsd-11-stable/crypto/openssl/crypto/rc2/
H A Drc2cfb64.c75 unsigned long ti[2]; local
83 ti[0] = v0;
85 ti[1] = v1;
86 RC2_encrypt((unsigned long *)ti, schedule);
88 t = ti[0];
90 t = ti[1];
103 ti[0] = v0;
105 ti[1] = v1;
106 RC2_encrypt((unsigned long *)ti, schedule);
108 t = ti[
[all...]
H A Drc2ofb64.c76 unsigned long ti[2]; local
83 ti[0] = v0;
84 ti[1] = v1;
90 RC2_encrypt((unsigned long *)ti, schedule);
92 t = ti[0];
94 t = ti[1];
102 v0 = ti[0];
103 v1 = ti[1];
108 t = v0 = v1 = ti[0] = ti[
[all...]
/freebsd-11-stable/crypto/openssl/crypto/rc5/
H A Drc5cfb64.c75 unsigned long ti[2]; local
83 ti[0] = v0;
85 ti[1] = v1;
86 RC5_32_encrypt((unsigned long *)ti, schedule);
88 t = ti[0];
90 t = ti[1];
103 ti[0] = v0;
105 ti[1] = v1;
106 RC5_32_encrypt((unsigned long *)ti, schedule);
108 t = ti[
[all...]
H A Drc5ofb64.c76 unsigned long ti[2]; local
83 ti[0] = v0;
84 ti[1] = v1;
90 RC5_32_encrypt((unsigned long *)ti, schedule);
92 t = ti[0];
94 t = ti[1];
102 v0 = ti[0];
103 v1 = ti[1];
108 t = v0 = v1 = ti[0] = ti[
[all...]
/freebsd-11-stable/sys/sys/
H A Dttyqueue.h72 int ttyinq_setsize(struct ttyinq *ti, struct tty *tp, size_t len);
73 void ttyinq_free(struct ttyinq *ti);
74 int ttyinq_read_uio(struct ttyinq *ti, struct tty *tp, struct uio *uio,
76 size_t ttyinq_write(struct ttyinq *ti, const void *buf, size_t len,
78 int ttyinq_write_nofrag(struct ttyinq *ti, const void *buf, size_t len,
80 void ttyinq_canonicalize(struct ttyinq *ti);
81 size_t ttyinq_findchar(struct ttyinq *ti, const char *breakc, size_t maxlen,
83 void ttyinq_flush(struct ttyinq *ti);
84 int ttyinq_peekchar(struct ttyinq *ti, char *c, int *quote);
85 void ttyinq_unputchar(struct ttyinq *ti);
90 ttyinq_getsize(struct ttyinq *ti) argument
96 ttyinq_getallocatedsize(struct ttyinq *ti) argument
103 ttyinq_bytesleft(struct ttyinq *ti) argument
115 ttyinq_bytescanonicalized(struct ttyinq *ti) argument
123 ttyinq_bytesline(struct ttyinq *ti) argument
[all...]
/freebsd-11-stable/sys/x86/x86/
H A Dpvclock.c62 pvclock_tsc_freq(struct pvclock_vcpu_time_info *ti) argument
66 freq = (1000000000ULL << 32) / ti->tsc_to_system_mul;
68 if (ti->tsc_shift < 0)
69 freq <<= -ti->tsc_shift;
71 freq >>= ti->tsc_shift;
130 pvclock_get_nsec_offset(struct pvclock_vcpu_time_info *ti) argument
134 delta = rdtsc() - ti->tsc_timestamp;
136 return (pvclock_scale_delta(delta, ti->tsc_to_system_mul,
137 ti->tsc_shift));
141 pvclock_read_time_info(struct pvclock_vcpu_time_info *ti, argument
171 pvclock_get_timecount(struct pvclock_vcpu_time_info *ti) argument
[all...]
/freebsd-11-stable/sys/security/audit/
H A Daudit_trigger.c83 struct trigger_info *ti; local
89 ti = TAILQ_FIRST(&trigger_list);
90 TAILQ_REMOVE(&trigger_list, ti, list);
91 free(ti, M_AUDITTRIGGER);
102 struct trigger_info *ti = NULL; local
112 ti = TAILQ_FIRST(&trigger_list);
113 TAILQ_REMOVE(&trigger_list, ti, list);
117 error = uiomove(&ti->trigger, sizeof(ti->trigger), uio);
118 free(ti, M_AUDITTRIGGE
134 struct trigger_info *ti; local
[all...]
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_low.c160 #define SCSI_LOW_INFO(slp, ti, s) scsi_low_info((slp), (ti), (s))
162 #define SCSI_LOW_INFO(slp, ti, s) device_printf((slp)->sl_dev, "%s\n", (s))
250 scsi_low_assert_msg(slp, cb->ti, cb->ccb_msgoutflag, 0);
278 scsi_low_init_msgsys(slp, ti)
280 struct targ_info *ti;
283 ti->ti_msginptr = 0;
284 ti->ti_emsgflags = ti->ti_msgflags = ti
319 struct targ_info *ti; local
420 struct targ_info *ti; local
1111 struct targ_info *ti; local
1148 struct targ_info *ti, *tib; local
1202 struct targ_info *ti; local
1319 struct targ_info *ti; local
1373 struct targ_info *ti; local
1678 struct targ_info *ti; local
1827 struct targ_info *ti = cb->ti; local
1881 struct targ_info *ti; local
2214 struct targ_info *ti; local
2365 struct targ_info *ti; local
2635 struct targ_info *ti = slp->sl_Tnexus; local
2649 struct targ_info *ti = slp->sl_Tnexus; local
2662 struct targ_info *ti = slp->sl_Tnexus; local
2726 struct targ_info *ti = slp->sl_Tnexus; local
2769 struct targ_info *ti = slp->sl_Tnexus; local
2782 struct targ_info *ti = slp->sl_Tnexus; local
2929 struct targ_info *ti = slp->sl_Tnexus; local
2988 struct targ_info *ti; local
3112 struct targ_info *ti = slp->sl_Tnexus; local
3188 struct targ_info *ti = slp->sl_Tnexus; local
3231 struct targ_info *ti = slp->sl_Tnexus; local
3261 struct targ_info *ti = slp->sl_Tnexus; local
3285 struct targ_info *ti = slp->sl_Tnexus; local
3349 struct targ_info *ti = slp->sl_Tnexus; local
3360 struct targ_info *ti = slp->sl_Tnexus; local
3705 struct targ_info *ti = cb->ti; local
3798 struct targ_info *ti = li->li_ti; local
3922 struct targ_info *ti = li->li_ti; local
3944 struct targ_info *ti; local
[all...]
/freebsd-11-stable/contrib/ipfilter/ipsend/
H A Diptest.c70 struct tcpiphdr *ti; local
82 ti = (struct tcpiphdr *)ip;
166 ip_test1(dev, mtu, (ip_t *)ti, gwip, pointtest);
169 ip_test2(dev, mtu, (ip_t *)ti, gwip, pointtest);
172 ip_test3(dev, mtu, (ip_t *)ti, gwip, pointtest);
175 ip_test4(dev, mtu, (ip_t *)ti, gwip, pointtest);
178 ip_test5(dev, mtu, (ip_t *)ti, gwip, pointtest);
181 ip_test6(dev, mtu, (ip_t *)ti, gwip, pointtest);
184 ip_test7(dev, mtu, (ip_t *)ti, gwip, pointtest);
187 ip_test1(dev, mtu, (ip_t *)ti, gwi
[all...]
/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_fw_table.h78 struct table_info *ti, char *data, uint8_t tflags);
79 typedef void (ta_destroy)(void *ta_state, struct table_info *ti);
84 typedef int (ta_add)(void *ta_state, struct table_info *ti,
86 typedef int (ta_del)(void *ta_state, struct table_info *ti,
91 typedef int (ta_need_modify)(void *ta_state, struct table_info *ti,
94 typedef int (ta_fill_mod)(void *ta_state, struct table_info *ti,
96 typedef void (ta_modify)(void *ta_state, struct table_info *ti,
100 typedef void (ta_change_ti)(void *ta_state, struct table_info *ti);
101 typedef void (ta_print_config)(void *ta_state, struct table_info *ti, char *buf,
105 typedef void ta_foreach(void *ta_state, struct table_info *ti, ta_foreach_
[all...]
/freebsd-11-stable/usr.sbin/ngctl/
H A Dtypes.c93 struct typeinfo *const ti = &tlist->typeinfo[k]; local
94 printf("%15s %5d\n", ti->type_name, ti->numnodes);
/freebsd-11-stable/sys/dev/ct/
H A Dct.c391 ct_targ_init(struct ct_softc *ct, struct targ_info *ti, int action) argument
393 struct ct_targ_info *cti = (void *) ti;
405 ti->ti_maxsynch.offset = 5;
410 ti->ti_maxsynch.offset = 12;
415 ti->ti_maxsynch.offset = 12;
419 ti->ti_maxsynch.period = ct->sc_sdp[0].cs_period;
420 ti->ti_width = SCSI_LOW_BUS_WIDTH_8;
463 struct targ_info *ti = slp->sl_Tnexus; local
481 scsi_low_is_msgout_continue(ti, SCSI_LOW_MSG_IDENTIFY) == 0)
497 (void) scsi_low_msgout(slp, ti, SCSI_LOW_MSGOUT_INI
530 ct_msg(struct ct_softc *ct, struct targ_info *ti, u_int msg) argument
698 struct targ_info *ti = slp->sl_Tnexus; local
745 struct targ_info *ti; local
788 struct targ_info *ti = slp->sl_Tnexus; local
820 struct targ_info *ti = slp->sl_Tnexus; local
898 struct targ_info *ti; local
[all...]

Completed in 123 milliseconds

123456789