Searched refs:ti (Results 1 - 25 of 100) 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/bluetooth/bluez/tools/
H A Dhciattach.h46 int set_speed(int fd, struct termios *ti, int speed);
48 int texas_init(int fd, struct termios *ti);
49 int texas_post(int fd, struct termios *ti);
50 int texasalt_init(int fd, int speed, struct termios *ti);
54 struct termios *ti);
56 int qualcomm_init(int fd, int speed, struct termios *ti, const char *bdaddr);
H A Dcsr_h4.c44 struct termios ti; local
58 if (tcgetattr(fd, &ti) < 0) {
65 cfmakeraw(&ti);
67 ti.c_cflag |= CLOCAL;
68 ti.c_cflag |= CRTSCTS;
70 cfsetospeed(&ti, B38400);
72 if (tcsetattr(fd, TCSANOW, &ti) < 0) {
H A Dcsr_bcsp.c51 struct termios ti; local
67 if (tcgetattr(fd, &ti) < 0) {
74 cfmakeraw(&ti);
76 ti.c_cflag |= CLOCAL;
77 ti.c_cflag &= ~CRTSCTS;
78 ti.c_cflag |= PARENB;
79 ti.c_cflag &= ~PARODD;
80 ti.c_cflag &= ~CSIZE;
81 ti.c_cflag |= CS8;
82 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/bluetooth/glib/tests/
H A Dgen-casemap-txt.pl149 tr_TR\ti\ti\t\x{0130}\t\x{0130}\t# i => LATIN CAPITAL LETTER I WITH DOT ABOVE
151 tr_TR\tI\x{0307}\ti\tI\x{0307}\tI\x{0307}\t# I => LATIN SMALL LETTER DOTLESS I
152 tr_TR.UTF-8\ti\ti\t\x{0130}\t\x{0130}\t# i => LATIN CAPITAL LETTER I WITH DOT ABOVE
154 tr_TR.UTF-8\tI\x{0307}\ti\tI\x{0307}\tI\x{0307}\t# I => LATIN SMALL LETTER DOTLESS I
164 lt_LT\ti\x{117}\ti\x{117}\tIe\tIE\t
166 lt_LT\t\x{00cc}\ti\x{0307}\x{0300}\t\x{00cc}\t\x{00cc}\t # LATIN CAPITAL LETTER I WITH GRAVE
167 lt_LT\t\x{00CD}\ti\
[all...]
/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;

Completed in 453 milliseconds

1234