HomeSort by relevance Sort by last modified time
    Searched refs:T1 (Results 1 - 25 of 49) sorted by null

1 2

  /external/stlport/test/compiler/
partial_spec.cpp 17 template <class T1>
20 template <class T1>
21 int func(T1 p1);
23 template <class T1>
24 int func(template_struct<T1>);
ttei6.cpp 15 template <typename T1>
26 template <typename T1, typename T2>
29 typedef typename A<T1>:: template B<T2>::_Type ABType;
ttei7.cpp 16 template <typename T1>
  /external/srec/tools/grxmlcompile/
hashmap.h 29 template <typename T1, typename T2>
33 //typedef T1 MapValue;
36 bool insert( T1 const & index, T2 const & value);
37 bool remove( T1 const & index);
40 bool getFirst( T1 *index, T2 *value );
41 bool getNext( T1 *index, T2 *value );
42 bool getValue( T1 const & index, T2 *value); //returns value
43 bool getIndex( T2 const & value, T1 *index ); //returns index
47 typename std::map<T1,T2>::iterator begin();
48 typename std::map<T1,T2>::iterator end()
    [all...]
hashmap.cpp 38 template <typename T1, typename T2>
39 HashMap<T1,T2>::HashMap():
44 template <typename T1, typename T2>
45 void HashMap<T1,T2>::setName(std::string s)
50 template <typename T1, typename T2>
51 bool HashMap<T1,T2>::insert( T1 const & index, T2 const & value)
54 pair<typename std::map<T1,T2>::iterator,bool> result = m_Map.insert( make_pair(index, value) );
62 template <typename T1, typename T2>
63 bool HashMap<T1,T2>::remove( T1 const & index
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/argsreturns/pargsreturn/jm/
T1.java 19 public class T1 {
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
upair.h 21 template <typename T1, typename T2>
24 typedef T1 first_type;
28 inline pair (void) : first (T1()), second (T2()) {}
30 inline pair (const T1& a, const T2& b) : first (a), second (b) {}
31 inline pair& operator= (const pair<T1, T2>& p2) { first = p2.first; second = p2.second; return (*this); }
40 template <typename T1, typename T2>
41 inline bool operator== (const pair<T1,T2>& p1, const pair<T1,T2>& p2)
47 template <typename T1, typename T2>
48 bool operator< (const pair<T1,T2>& p1, const pair<T1,T2>& p2
    [all...]
utuple.h 121 template <size_t N, typename T1, typename T2>
122 inline bool operator== (const tuple<N,T1>& t1, const tuple<N,T2>& t2)
125 if (t1[i] != t2[i])
130 template <size_t N, typename T1, typename T2>
131 inline bool operator< (const tuple<N,T1>& t1, const tuple<N,T2>& t2)
133 for (uoff_t i = 0; i < N && t1[i] <= t2[i]; ++ i)
134 if (t1[i] < t2[i])
139 template <size_t N, typename T1, typename T2
    [all...]
uutility.h 61 #define TEMPLATE_FULL_DECL1(d1,t1) template <d1 t1>
62 #define TEMPLATE_FULL_DECL2(d1,t1,d2,t2) template <d1 t1, d2 t2>
63 #define TEMPLATE_FULL_DECL3(d1,t1,d2,t2,d3,t3) template <d1 t1, d2 t2, d3 t3>
64 #define TEMPLATE_DECL1(t1) TEMPLATE_FULL_DECL1(typename,t1)
65 #define TEMPLATE_DECL2(t1,t2) TEMPLATE_FULL_DECL2(typename,t1,typename,t2
    [all...]
uspecial.h 51 template <typename T1, typename T2>
52 istream& operator>> (istream& is, pair<T1,T2>& p)
57 is.align (alignof(T1()));
62 template <typename T1, typename T2>
63 ostream& operator<< (ostream& os, const pair<T1,T2>& p)
68 os.align (alignof(T1()));
73 template <typename T1, typename T2>
74 ostringstream& operator<< (ostringstream& os, const pair<T1,T2>& p)
81 template <typename T1, typename T2>
82 inline size_t stream_size_of (const pair<T1,T2>& v
    [all...]
  /external/openssl/crypto/0.9.9-dev/sha/
sha256-armv4.pl 21 $len="r2"; $t1="r2";
22 $T1="r3";
44 ldrb $T1,[$inp,#3] @ $i
46 ldrb $t1,[$inp,#1]
48 orr $T1,$T1,$t2,lsl#8
49 orr $T1,$T1,$t1,lsl#16
50 orr $T1,$T1,$t0,lsl#2
    [all...]
  /external/webkit/WebKit/chromium/src/
DevToolsRPC.h 150 #define TOOLS_RPC_API_METHOD1(Method, T1) \
151 virtual void Method(RpcTypeTrait<T1>::ApiType t1) = 0;
153 #define TOOLS_RPC_API_METHOD2(Method, T1, T2) \
154 virtual void Method(RpcTypeTrait<T1>::ApiType t1, \
157 #define TOOLS_RPC_API_METHOD3(Method, T1, T2, T3) \
158 virtual void Method(RpcTypeTrait<T1>::ApiType t1, \
162 #define TOOLS_RPC_API_METHOD4(Method, T1, T2, T3, T4)
    [all...]
DevToolsRPCJS.h 51 #define TOOLS_RPC_JS_BIND_METHOD1(Method, T1) \
54 #define TOOLS_RPC_JS_BIND_METHOD2(Method, T1, T2) \
57 #define TOOLS_RPC_JS_BIND_METHOD3(Method, T1, T2, T3) \
60 #define TOOLS_RPC_JS_BIND_METHOD4(Method, T1, T2, T3, T4) \
63 #define TOOLS_RPC_JS_BIND_METHOD5(Method, T1, T2, T3, T4, T5) \
72 #define TOOLS_RPC_JS_STUB_METHOD1(Method, T1) \
78 #define TOOLS_RPC_JS_STUB_METHOD2(Method, T1, T2) \
84 #define TOOLS_RPC_JS_STUB_METHOD3(Method, T1, T2, T3) \
90 #define TOOLS_RPC_JS_STUB_METHOD4(Method, T1, T2, T3, T4) \
96 #define TOOLS_RPC_JS_STUB_METHOD5(Method, T1, T2, T3, T4, T5)
    [all...]
  /external/openssl/crypto/sha/
sha256.c 163 unsigned MD32_REG_T a,b,c,d,e,f,g,h,s0,s1,T1,T2;
175 HOST_c2l(data,l); T1 = X[i] = l;
176 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
178 h = g; g = f; f = e; e = d + T1;
179 d = c; c = b; b = a; a = T1 + T2;
187 T1 = X[i&0xf] += s0 + s1 + X[(i+9)&0xf];
188 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
190 h = g; g = f; f = e; e = d + T1;
191 d = c; c = b; b = a; a = T1 + T2;
203 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
    [all...]
sha512.c 414 SHA_LONG64 a,b,c,d,e,f,g,h,s0,s1,T1,T2;
430 T1 = X[i] = W[i];
432 T1 = X[i] = PULL64(W[i]);
434 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i];
436 h = g; g = f; f = e; e = d + T1;
437 d = c; c = b; b = a; a = T1 + T2;
445 T1 = X[i&0xf] += s0 + s1 + X[(i+9)&0xf];
446 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i];
448 h = g; g = f; f = e; e = d + T1;
449 d = c; c = b; b = a; a = T1 + T2
    [all...]
  /external/zlib/contrib/iostream3/
zfstream.h 412 template<typename T1, typename T2>
423 gzomanip2(gzofstream& (*f)(gzofstream&, T1, T2),
424 T1 v1,
429 (*func)(gzofstream&, T1, T2);
432 T1 val1;
447 template<typename T1, typename T2>
449 gzomanip2<T1,T2>::gzomanip2(gzofstream &(*f)(gzofstream &, T1, T2),
450 T1 v1,
456 template<typename T1, typename T2
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/argsreturns/pargsreturn/
Test_pargsreturn.java 20 import dxc.junit.argsreturns.pargsreturn.jm.T1;
31 assertEquals(1234, new T1().run());
  /external/qemu/target-arm/
exec.h 25 register uint32_t T1 asm(AREG2);
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-alg-fst.c 162 *((word32*)(b )) = *((const word32*)T1[temp[0][0]])
166 *((word32*)(b + 4)) = *((const word32*)T1[temp[1][0]])
170 *((word32*)(b + 8)) = *((const word32*)T1[temp[2][0]])
174 *((word32*)(b +12)) = *((const word32*)T1[temp[3][0]])
184 *((word32*)(b )) = *((const word32*)T1[temp[0][0]])
188 *((word32*)(b + 4)) = *((const word32*)T1[temp[1][0]])
192 *((word32*)(b + 8)) = *((const word32*)T1[temp[2][0]])
196 *((word32*)(b +12)) = *((const word32*)T1[temp[3][0]])
206 b[ 0] = T1[temp[0][0]][1];
207 b[ 1] = T1[temp[1][1]][1]
    [all...]
  /external/openssl/crypto/sha/asm/
sha512-x86_64.pl 58 ($T1,$a0,$a1,$a2)=("%r12","%r13","%r14","%r15");
70 ($T1,$a0,$a1,$a2)=("%r12d","%r13d","%r14d","%r15d");
105 mov $T1,`$SZ*($i&0xf)`(%rsp)
109 add $h,$T1 # T1+=h
112 add $a0,$T1 # T1+=Sigma1(e)
114 add $a2,$T1 # T1+=Ch(e,f,g)
121 add ($Tbl,$round,$SZ),$T1 # T1+=K[round
    [all...]
  /external/gtest/include/gtest/
gtest-param-test.h 311 template <typename T1>
312 internal::ValueArray1<T1> Values(T1 v1) {
313 return internal::ValueArray1<T1>(v1);
316 template <typename T1, typename T2>
317 internal::ValueArray2<T1, T2> Values(T1 v1, T2 v2) {
318 return internal::ValueArray2<T1, T2>(v1, v2);
321 template <typename T1, typename T2, typename T3>
322 internal::ValueArray3<T1, T2, T3> Values(T1 v1, T2 v2, T3 v3)
    [all...]
gtest_pred_impl.h 86 typename T1>
90 const T1& v1) {
129 typename T1,
135 const T1& v1,
179 typename T1,
187 const T1& v1,
236 typename T1,
246 const T1& v1,
300 typename T1,
312 const T1& v1
    [all...]
  /external/gtest/include/gtest/internal/
gtest-type-util.h 59 // AssertyTypeEq<T1, T2>::type is defined iff T1 and T2 are the same
63 template <typename T1, typename T2>
101 // represent type lists. In particular, TypesN<T1, T2, ..., TN>
102 // represents a type list with N types (T1, T2, ..., and TN) in it.
112 template <typename T1>
114 typedef T1 Head;
117 template <typename T1, typename T2>
119 typedef T1 Head;
123 template <typename T1, typename T2, typename T3
    [all...]
  /external/gtest/test/
gtest_pred_impl_unittest.cc 76 template <typename T1>
77 bool PredFunction1(T1 v1) {
93 template <typename T1>
94 bool operator()(const T1& v1) {
100 template <typename T1>
102 const T1& v1) {
115 template <typename T1>
117 const T1& v1) const {
464 template <typename T1, typename T2>
465 bool PredFunction2(T1 v1, T2 v2)
    [all...]
  /external/ipsec-tools/src/racoon/missing/crypto/sha2/
sha2.c 351 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
353 (d) += T1; \
354 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
361 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
363 (d) += T1; \
364 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
374 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
376 (d) += T1; \
377 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
382 sha2_word32 T1, *W256
    [all...]

Completed in 1464 milliseconds

1 2