Home
last modified time | relevance | path

Searched refs:ti (Results 1 – 25 of 244) sorted by relevance

12345678910

/external/icu4c/data/curr/
Dyo.txt16 "Diami ti Awon Orílẹ́ède Arabu",
20 "Wansa ti Orílẹ́ède Àngólà",
24 "Dọla ti Orílẹ́ède Ástràlìá",
28 "Dina ti Orílẹ́ède Báránì",
32 "Faransi ti Orílẹ́ède Bùùrúndì",
36 "Pula ti Orílẹ́ède Bọ̀tìsúwánà",
40 "Dọla ti Orílẹ́ède Kánádà",
44 "Faransi ti Orílẹ́ède Kóngò",
48 "Faransi ti Orílẹ́ède Siwisi",
52 "Reminibi ti Orílẹ́ède ṣáínà",
[all …]
/external/qemu/slirp/
Dtcp_input.c68 #define TCP_REASS(tp, ti, m, so, flags) {\ argument
69 if ((ti)->ti_seq == (tp)->rcv_nxt && \
72 if (ti->ti_flags & TH_PUSH) \
76 (tp)->rcv_nxt += (ti)->ti_len; \
77 flags = (ti)->ti_flags & TH_FIN; \
79 STAT(tcpstat.tcps_rcvbyte += (ti)->ti_len); \
86 (flags) = tcp_reass((tp), (ti), (m)); \
91 #define TCP_REASS(tp, ti, m, so, flags) { \ argument
92 if ((ti)->ti_seq == (tp)->rcv_nxt && \
96 (tp)->rcv_nxt += (ti)->ti_len; \
[all …]
Dtcp_output.c73 register struct tcpiphdr *ti; local
398 ti = mtod(m, struct tcpiphdr *);
400 memcpy((caddr_t)ti, &tp->t_template, sizeof (struct tcpiphdr));
424 ti->ti_seq = htonl(tp->snd_nxt);
426 ti->ti_seq = htonl(tp->snd_max);
427 ti->ti_ack = htonl(tp->rcv_nxt);
429 memcpy((caddr_t)(ti + 1), (caddr_t)opt, optlen);
430 ti->ti_off = (sizeof (struct tcphdr) + optlen) >> 2;
432 ti->ti_flags = flags;
443 ti->ti_win = htons((u_int16_t) (win>>tp->rcv_scale));
[all …]
Dtcp_subr.c103 tcp_respond(struct tcpcb *tp, struct tcpiphdr *ti, struct mbuf *m, in tcp_respond() argument
111 DEBUG_ARG("ti = %lx", (long)ti); in tcp_respond()
128 *mtod(m, struct tcpiphdr *) = *ti; in tcp_respond()
129 ti = mtod(m, struct tcpiphdr *); in tcp_respond()
136 m->m_data = (caddr_t)ti; in tcp_respond()
141 xchg(ti->ti_dst.s_addr, ti->ti_src.s_addr, u_int32_t); in tcp_respond()
142 xchg(ti->ti_dport, ti->ti_sport, u_int16_t); in tcp_respond()
145 ti->ti_len = htons((u_short)(sizeof (struct tcphdr) + tlen)); in tcp_respond()
149 ti->ti_mbuf = NULL; in tcp_respond()
150 ti->ti_x1 = 0; in tcp_respond()
[all …]
/external/qemu/slirp-android/
Dtcp_input.c68 #define TCP_REASS(tp, ti, m, so, flags) {\ argument
69 if ((ti)->ti_seq == (tp)->rcv_nxt && \
72 if (ti->ti_flags & TH_PUSH) \
76 (tp)->rcv_nxt += (ti)->ti_len; \
77 flags = (ti)->ti_flags & TH_FIN; \
79 STAT(tcpstat.tcps_rcvbyte += (ti)->ti_len); \
86 (flags) = tcp_reass((tp), (ti), (m)); \
91 #define TCP_REASS(tp, ti, m, so, flags) { \ argument
92 if ((ti)->ti_seq == (tp)->rcv_nxt && \
96 (tp)->rcv_nxt += (ti)->ti_len; \
[all …]
Dtcp_output.c73 register struct tcpiphdr *ti; local
398 ti = mtod(m, struct tcpiphdr *);
400 memcpy((caddr_t)ti, &tp->t_template, sizeof (struct tcpiphdr));
424 ti->ti_seq = htonl(tp->snd_nxt);
426 ti->ti_seq = htonl(tp->snd_max);
427 ti->ti_ack = htonl(tp->rcv_nxt);
429 memcpy((caddr_t)(ti + 1), (caddr_t)opt, optlen);
430 ti->ti_off = (sizeof (struct tcphdr) + optlen) >> 2;
432 ti->ti_flags = flags;
443 ti->ti_win = htons((u_int16_t) (win>>tp->rcv_scale));
[all …]
Dtcp_subr.c105 tcp_respond(struct tcpcb *tp, struct tcpiphdr *ti, struct mbuf *m, in tcp_respond() argument
113 DEBUG_ARG("ti = %lx", (long)ti); in tcp_respond()
130 *mtod(m, struct tcpiphdr *) = *ti; in tcp_respond()
131 ti = mtod(m, struct tcpiphdr *); in tcp_respond()
138 m->m_data = (caddr_t)ti; in tcp_respond()
143 xchg(ti->ti_dst, ti->ti_src, ipaddr_t); in tcp_respond()
144 xchg(ti->ti_dport, ti->ti_sport, port_t); in tcp_respond()
147 ti->ti_len = htons((u_short)(sizeof (struct tcphdr) + tlen)); in tcp_respond()
151 ti->ti_mbuf = NULL; in tcp_respond()
152 ti->ti_x1 = 0; in tcp_respond()
[all …]
/external/openssl/crypto/des/
Dcfb64ede.c75 DES_LONG ti[2]; in DES_ede3_cfb64_encrypt() local
88 ti[0]=v0; in DES_ede3_cfb64_encrypt()
89 ti[1]=v1; in DES_ede3_cfb64_encrypt()
90 DES_encrypt3(ti,ks1,ks2,ks3); in DES_ede3_cfb64_encrypt()
91 v0=ti[0]; in DES_ede3_cfb64_encrypt()
92 v1=ti[1]; in DES_ede3_cfb64_encrypt()
114 ti[0]=v0; in DES_ede3_cfb64_encrypt()
115 ti[1]=v1; in DES_ede3_cfb64_encrypt()
116 DES_encrypt3(ti,ks1,ks2,ks3); in DES_ede3_cfb64_encrypt()
117 v0=ti[0]; in DES_ede3_cfb64_encrypt()
[all …]
Dcfb64enc.c73 DES_LONG ti[2]; in DES_cfb64_encrypt() local
83 c2l(iv,v0); ti[0]=v0; in DES_cfb64_encrypt()
84 c2l(iv,v1); ti[1]=v1; in DES_cfb64_encrypt()
85 DES_encrypt1(ti,schedule,DES_ENCRYPT); in DES_cfb64_encrypt()
87 v0=ti[0]; l2c(v0,iv); in DES_cfb64_encrypt()
88 v0=ti[1]; l2c(v0,iv); in DES_cfb64_encrypt()
103 c2l(iv,v0); ti[0]=v0; in DES_cfb64_encrypt()
104 c2l(iv,v1); ti[1]=v1; in DES_cfb64_encrypt()
105 DES_encrypt1(ti,schedule,DES_ENCRYPT); in DES_cfb64_encrypt()
107 v0=ti[0]; l2c(v0,iv); in DES_cfb64_encrypt()
[all …]
Dofb64enc.c74 DES_LONG ti[2]; in DES_ofb64_encrypt() local
81 ti[0]=v0; in DES_ofb64_encrypt()
82 ti[1]=v1; in DES_ofb64_encrypt()
90 DES_encrypt1(ti,schedule,DES_ENCRYPT); in DES_ofb64_encrypt()
92 t=ti[0]; l2c(t,dp); in DES_ofb64_encrypt()
93 t=ti[1]; l2c(t,dp); in DES_ofb64_encrypt()
101 v0=ti[0]; in DES_ofb64_encrypt()
102 v1=ti[1]; in DES_ofb64_encrypt()
107 t=v0=v1=ti[0]=ti[1]=0; in DES_ofb64_encrypt()
Dofb_enc.c75 DES_LONG ti[2]; in DES_ofb_encrypt() local
99 ti[0]=v0; in DES_ofb_encrypt()
100 ti[1]=v1; in DES_ofb_encrypt()
103 ti[0]=v0; in DES_ofb_encrypt()
104 ti[1]=v1; in DES_ofb_encrypt()
105 DES_encrypt1((DES_LONG *)ti,schedule,DES_ENCRYPT); in DES_ofb_encrypt()
106 vv0=ti[0]; in DES_ofb_encrypt()
107 vv1=ti[1]; in DES_ofb_encrypt()
133 v0=v1=d0=d1=ti[0]=ti[1]=vv0=vv1=0; in DES_ofb_encrypt()
Dcfb_enc.c78 DES_LONG ti[2]; in DES_cfb_encrypt() local
101 ti[0]=v0; in DES_cfb_encrypt()
102 ti[1]=v1; in DES_cfb_encrypt()
103 DES_encrypt1((DES_LONG *)ti,schedule,DES_ENCRYPT); in DES_cfb_encrypt()
106 d0^=ti[0]; in DES_cfb_encrypt()
107 d1^=ti[1]; in DES_cfb_encrypt()
148 ti[0]=v0; in DES_cfb_encrypt()
149 ti[1]=v1; in DES_cfb_encrypt()
150 DES_encrypt1((DES_LONG *)ti,schedule,DES_ENCRYPT); in DES_cfb_encrypt()
184 d0^=ti[0]; in DES_cfb_encrypt()
[all …]
Dofb64ede.c76 DES_LONG ti[2]; in DES_ede3_ofb64_encrypt() local
83 ti[0]=v0; in DES_ede3_ofb64_encrypt()
84 ti[1]=v1; in DES_ede3_ofb64_encrypt()
94 DES_encrypt3(ti,k1,k2,k3); in DES_ede3_ofb64_encrypt()
95 v0=ti[0]; in DES_ede3_ofb64_encrypt()
96 v1=ti[1]; in DES_ede3_ofb64_encrypt()
114 v0=v1=ti[0]=ti[1]=0; in DES_ede3_ofb64_encrypt()
/external/openssl/crypto/rc2/
Drc2cfb64.c74 unsigned long ti[2]; in RC2_cfb64_encrypt() local
84 c2l(iv,v0); ti[0]=v0; in RC2_cfb64_encrypt()
85 c2l(iv,v1); ti[1]=v1; in RC2_cfb64_encrypt()
86 RC2_encrypt((unsigned long *)ti,schedule); in RC2_cfb64_encrypt()
88 t=ti[0]; l2c(t,iv); in RC2_cfb64_encrypt()
89 t=ti[1]; l2c(t,iv); in RC2_cfb64_encrypt()
104 c2l(iv,v0); ti[0]=v0; in RC2_cfb64_encrypt()
105 c2l(iv,v1); ti[1]=v1; in RC2_cfb64_encrypt()
106 RC2_encrypt((unsigned long *)ti,schedule); in RC2_cfb64_encrypt()
108 t=ti[0]; l2c(t,iv); in RC2_cfb64_encrypt()
[all …]
Drc2ofb64.c75 unsigned long ti[2]; in RC2_ofb64_encrypt() local
82 ti[0]=v0; in RC2_ofb64_encrypt()
83 ti[1]=v1; in RC2_ofb64_encrypt()
91 RC2_encrypt((unsigned long *)ti,schedule); in RC2_ofb64_encrypt()
93 t=ti[0]; l2c(t,dp); in RC2_ofb64_encrypt()
94 t=ti[1]; l2c(t,dp); in RC2_ofb64_encrypt()
102 v0=ti[0]; in RC2_ofb64_encrypt()
103 v1=ti[1]; in RC2_ofb64_encrypt()
108 t=v0=v1=ti[0]=ti[1]=0; in RC2_ofb64_encrypt()
/external/openssl/crypto/bf/
Dbf_cfb64.c73 BF_LONG ti[2]; in BF_cfb64_encrypt() local
83 n2l(iv,v0); ti[0]=v0; in BF_cfb64_encrypt()
84 n2l(iv,v1); ti[1]=v1; in BF_cfb64_encrypt()
85 BF_encrypt((BF_LONG *)ti,schedule); in BF_cfb64_encrypt()
87 t=ti[0]; l2n(t,iv); in BF_cfb64_encrypt()
88 t=ti[1]; l2n(t,iv); in BF_cfb64_encrypt()
103 n2l(iv,v0); ti[0]=v0; in BF_cfb64_encrypt()
104 n2l(iv,v1); ti[1]=v1; in BF_cfb64_encrypt()
105 BF_encrypt((BF_LONG *)ti,schedule); in BF_cfb64_encrypt()
107 t=ti[0]; l2n(t,iv); in BF_cfb64_encrypt()
[all …]
Dbf_ofb64.c74 BF_LONG ti[2]; in BF_ofb64_encrypt() local
81 ti[0]=v0; in BF_ofb64_encrypt()
82 ti[1]=v1; in BF_ofb64_encrypt()
90 BF_encrypt((BF_LONG *)ti,schedule); in BF_ofb64_encrypt()
92 t=ti[0]; l2n(t,dp); in BF_ofb64_encrypt()
93 t=ti[1]; l2n(t,dp); in BF_ofb64_encrypt()
101 v0=ti[0]; in BF_ofb64_encrypt()
102 v1=ti[1]; in BF_ofb64_encrypt()
107 t=v0=v1=ti[0]=ti[1]=0; in BF_ofb64_encrypt()
/external/dhcpcd/
Dif-pref.c37 ifcmp(struct interface *si, struct interface *ti) in ifcmp() argument
41 if (si->state && !ti->state) in ifcmp()
43 if (!si->state && ti->state) in ifcmp()
45 if (!si->state && !ti->state) in ifcmp()
48 if (si->state->new && !ti->state->new) in ifcmp()
50 if (!si->state->new && ti->state->new) in ifcmp()
54 if (si->state->new && ti->state->new) { in ifcmp()
56 till = (ti->state->new->cookie == htonl(MAGIC_COOKIE)); in ifcmp()
63 if (si->carrier > ti->carrier) in ifcmp()
65 if (si->carrier < ti->carrier) in ifcmp()
[all …]
/external/kernel-headers/original/linux/
Dthread_info.h30 static inline void set_ti_thread_flag(struct thread_info *ti, int flag) in set_ti_thread_flag() argument
32 set_bit(flag,&ti->flags); in set_ti_thread_flag()
35 static inline void clear_ti_thread_flag(struct thread_info *ti, int flag) in clear_ti_thread_flag() argument
37 clear_bit(flag,&ti->flags); in clear_ti_thread_flag()
40 static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag) in test_and_set_ti_thread_flag() argument
42 return test_and_set_bit(flag,&ti->flags); in test_and_set_ti_thread_flag()
45 static inline int test_and_clear_ti_thread_flag(struct thread_info *ti, int flag) in test_and_clear_ti_thread_flag() argument
47 return test_and_clear_bit(flag,&ti->flags); in test_and_clear_ti_thread_flag()
50 static inline int test_ti_thread_flag(struct thread_info *ti, int flag) in test_ti_thread_flag() argument
52 return test_bit(flag,&ti->flags); in test_ti_thread_flag()
/external/chromium/base/
Dutf_offset_string_conversions_unittest.cc93 for (std::vector<size_t>::iterator ti = size_ts.begin(); ti != size_ts.end(); in TEST() local
94 ++ti) { in TEST()
95 if (*ti < kLimit && *ti != kNpos) in TEST()
107 for (std::vector<size_t>::iterator ti = size_ts.begin(); ti != size_ts.end(); in TEST() local
108 ++ti) { in TEST()
109 if (*ti < kLimit && *ti != kNpos) in TEST()
/external/clang/utils/TableGen/
DNeonEmitter.cpp1386 for (unsigned ti = 0, te = TypeVec.size(); ti != te; ++ti) { in emitIntrinsic() local
1390 (void)ClassifyType(TypeVec[ti], outQuad, dummy, dummy); in emitIntrinsic()
1395 if (srcti == ti || inQuad != outQuad) in emitIntrinsic()
1397 OS << GenIntrinsic(name, Proto, TypeVec[ti], TypeVec[srcti], in emitIntrinsic()
1401 OS << GenIntrinsic(name, Proto, TypeVec[ti], TypeVec[ti], in emitIntrinsic()
1464 for (unsigned ti = 0, te = TypeVec.size(); ti != te; ++ti) { in runHeader() local
1468 std::string bd = GenBuiltinDef(name, Proto, TypeVec[ti], ck); in runHeader()
1508 for (unsigned ti = 0, te = TypeVec.size(); ti != te; ++ti) { in runHeader() local
1511 (void) ClassifyType(TypeVec[ti], quad, poly, usgn); in runHeader()
1514 qi = ti; in runHeader()
[all …]
/external/qemu/
Dtranslate-all.c105 int64_t ti; in cpu_gen_code() local
111 ti = profile_getclock(); in cpu_gen_code()
136 s->interm_time += profile_getclock() - ti; in cpu_gen_code()
180 int64_t ti; in cpu_restore_state() local
184 ti = profile_getclock(); in cpu_restore_state()
221 s->restore_time += profile_getclock() - ti; in cpu_restore_state()
/external/icu4c/data/region/
Dti.txt6 // * Source File:<path>/common/main/ti.xml
10 * ICU <specials> source: <path>/xml/main/ti.xml
12 ti{
/external/icu4c/data/lang/
Dti.txt6 // * Source File:<path>/common/main/ti.xml
10 * ICU <specials> source: <path>/xml/main/ti.xml
12 ti{
96 ti{"ትግርኛ"}
/external/icu4c/data/zone/
Dti.txt6 // * Source File:<path>/common/main/ti.xml
10 * ICU <specials> source: <path>/xml/main/ti.xml
12 ti{

12345678910