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

1234

/external/stlport/test/unit/
H A Dtypeinfo_header_test.cpp18 const std::type_info& ti = typeid(A);
/external/openssl/crypto/bf/
H A Dbf_cfb64.c73 BF_LONG ti[2]; local
83 n2l(iv,v0); ti[0]=v0;
84 n2l(iv,v1); ti[1]=v1;
85 BF_encrypt((BF_LONG *)ti,schedule);
87 t=ti[0]; l2n(t,iv);
88 t=ti[1]; l2n(t,iv);
103 n2l(iv,v0); ti[0]=v0;
104 n2l(iv,v1); ti[1]=v1;
105 BF_encrypt((BF_LONG *)ti,schedule);
107 t=ti[
[all...]
H A Dbf_ofb64.c74 BF_LONG ti[2]; local
81 ti[0]=v0;
82 ti[1]=v1;
90 BF_encrypt((BF_LONG *)ti,schedule);
92 t=ti[0]; l2n(t,dp);
93 t=ti[1]; l2n(t,dp);
101 v0=ti[0];
102 v1=ti[1];
107 t=v0=v1=ti[0]=ti[
[all...]
/external/openssl/crypto/des/
H A Dcfb64enc.c73 DES_LONG ti[2]; local
83 c2l(iv,v0); ti[0]=v0;
84 c2l(iv,v1); ti[1]=v1;
85 DES_encrypt1(ti,schedule,DES_ENCRYPT);
87 v0=ti[0]; l2c(v0,iv);
88 v0=ti[1]; l2c(v0,iv);
103 c2l(iv,v0); ti[0]=v0;
104 c2l(iv,v1); ti[1]=v1;
105 DES_encrypt1(ti,schedule,DES_ENCRYPT);
107 v0=ti[
[all...]
H A Dofb64enc.c74 DES_LONG ti[2]; local
81 ti[0]=v0;
82 ti[1]=v1;
90 DES_encrypt1(ti,schedule,DES_ENCRYPT);
92 t=ti[0]; l2c(t,dp);
93 t=ti[1]; l2c(t,dp);
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;
92 /* ti[0]=v0; */
93 /* ti[1]=v1; */
94 DES_encrypt3(ti,k1,k2,k3);
95 v0=ti[0];
96 v1=ti[1];
108 /* v0=ti[0];
109 v1=ti[
[all...]
H A Dofb_enc.c75 DES_LONG ti[2]; local
99 ti[0]=v0;
100 ti[1]=v1;
103 ti[0]=v0;
104 ti[1]=v1;
105 DES_encrypt1((DES_LONG *)ti,schedule,DES_ENCRYPT);
106 vv0=ti[0];
107 vv1=ti[1];
133 v0=v1=d0=d1=ti[0]=ti[
[all...]
H A Dcfb64ede.c75 DES_LONG ti[2]; local
88 ti[0]=v0;
89 ti[1]=v1;
90 DES_encrypt3(ti,ks1,ks2,ks3);
91 v0=ti[0];
92 v1=ti[1];
114 ti[0]=v0;
115 ti[1]=v1;
116 DES_encrypt3(ti,ks1,ks2,ks3);
117 v0=ti[
157 DES_LONG ti[2]; local
[all...]
H A Dcfb_enc.c78 DES_LONG ti[2]; local
101 ti[0]=v0;
102 ti[1]=v1;
103 DES_encrypt1((DES_LONG *)ti,schedule,DES_ENCRYPT);
106 d0^=ti[0];
107 d1^=ti[1];
148 ti[0]=v0;
149 ti[1]=v1;
150 DES_encrypt1((DES_LONG *)ti,schedule,DES_ENCRYPT);
184 d0^=ti[
[all...]
/external/openssl/crypto/rc2/
H A Drc2cfb64.c74 unsigned long ti[2]; local
84 c2l(iv,v0); ti[0]=v0;
85 c2l(iv,v1); ti[1]=v1;
86 RC2_encrypt((unsigned long *)ti,schedule);
88 t=ti[0]; l2c(t,iv);
89 t=ti[1]; l2c(t,iv);
104 c2l(iv,v0); ti[0]=v0;
105 c2l(iv,v1); ti[1]=v1;
106 RC2_encrypt((unsigned long *)ti,schedule);
108 t=ti[
[all...]
H A Drc2ofb64.c75 unsigned long ti[2]; local
82 ti[0]=v0;
83 ti[1]=v1;
91 RC2_encrypt((unsigned long *)ti,schedule);
93 t=ti[0]; l2c(t,dp);
94 t=ti[1]; l2c(t,dp);
102 v0=ti[0];
103 v1=ti[1];
108 t=v0=v1=ti[0]=ti[
[all...]
/external/kernel-headers/original/linux/
H A Dthread_info.h30 static inline void set_ti_thread_flag(struct thread_info *ti, int flag) argument
32 set_bit(flag,&ti->flags);
35 static inline void clear_ti_thread_flag(struct thread_info *ti, int flag) argument
37 clear_bit(flag,&ti->flags);
40 static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag) argument
42 return test_and_set_bit(flag,&ti->flags);
45 static inline int test_and_clear_ti_thread_flag(struct thread_info *ti, int flag) argument
47 return test_and_clear_bit(flag,&ti->flags);
50 static inline int test_ti_thread_flag(struct thread_info *ti, int flag) argument
52 return test_bit(flag,&ti
[all...]
/external/dhcpcd/
H A Dif-pref.c37 ifcmp(struct interface *si, struct interface *ti) argument
41 if (si->state && !ti->state)
43 if (!si->state && ti->state)
45 if (!si->state && !ti->state)
48 if (si->state->new && !ti->state->new)
50 if (!si->state->new && ti->state->new)
54 if (si->state->new && ti->state->new) {
56 till = (ti->state->new->cookie == htonl(MAGIC_COOKIE));
63 if (si->carrier > ti->carrier)
65 if (si->carrier < ti
[all...]
/external/qemu/slirp/
H A Dtcp_input.c58 * Insert segment ti into reassembly queue of tcp with
68 #define TCP_REASS(tp, ti, m, so, flags) {\
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) { \
92 if ((ti)
116 tcp_reass(register struct tcpcb *tp, register struct tcpiphdr *ti, struct mbuf *m) argument
236 register struct tcpiphdr *ti; local
1498 tcp_dooptions(struct tcpcb *tp, u_char *cp, int cnt, struct tcpiphdr *ti) argument
[all...]
H A 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
[all...]
/external/qemu/slirp-android/
H A Dtcp_input.c58 * Insert segment ti into reassembly queue of tcp with
68 #define TCP_REASS(tp, ti, m, so, flags) {\
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) { \
92 if ((ti)
116 tcp_reass(register struct tcpcb *tp, register struct tcpiphdr *ti, struct mbuf *m) argument
236 register struct tcpiphdr *ti; local
1504 tcp_dooptions(struct tcpcb *tp, u_char *cp, int cnt, struct tcpiphdr *ti) argument
[all...]
H A 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
[all...]
/external/webrtc/src/common_audio/signal_processing/
H A Dcomplex_bit_reverse.c23 WebRtc_Word16 tr, ti; local
47 ti = frfi[2 * m + 1];
49 frfi[2 * mr + 1] = ti;
/external/clang/test/CodeGenCXX/
H A Dtypeid-cxx11.cpp7 const std::type_info &ti; member in struct:Test1::Item
28 constexpr auto &x = items[0].ti;
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/
H A Dp3-0x.cpp43 const std::type_info &ti = typeid(struct Ti {}); // expected-error {{'Ti' can not be defined in a type specifier}} variable
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm10t.java66 TargetInsn ti = (TargetInsn) insn;
67 return ti.hasTargetOffset() ? branchFits(ti) : true;
H A DForm20t.java66 TargetInsn ti = (TargetInsn) insn;
67 return ti.hasTargetOffset() ? branchFits(ti) : true;
/external/chromium/base/
H A Dutf_offset_string_conversions_unittest.cc93 for (std::vector<size_t>::iterator ti = size_ts.begin(); ti != size_ts.end();
94 ++ti) {
95 if (*ti < kLimit && *ti != kNpos)
107 for (std::vector<size_t>::iterator ti = size_ts.begin(); ti != size_ts.end();
108 ++ti) {
109 if (*ti < kLimit && *ti !
[all...]
/external/qemu/
H A Dtranslate-all.c105 int64_t ti; local
111 ti = profile_getclock();
136 s->interm_time += profile_getclock() - ti;
180 int64_t ti; local
184 ti = profile_getclock();
221 s->restore_time += profile_getclock() - ti;
/external/apache-http/src/org/apache/http/impl/
H A DDefaultConnectionReuseStrategy.java143 TokenIterator ti = createTokenIterator(hit);
145 while (ti.hasNext()) {
146 final String token = ti.nextToken();

Completed in 999 milliseconds

1234