HomeSort by: relevance | last modified time | path
    Searched refs:T1 (Results 1 - 25 of 341) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/lgpl3/gmp/dist/mpz/
lucmod.c 48 mp_bitcnt_t b0, mpz_srcptr n, mpz_ptr T1, mpz_ptr T2)
80 mpz_mul (T1, Qk, Qk); /* U_{k+1}^2 */
84 mpz_sub (T2, T1, T2); /* U_{k+1}^2 - (U_{k+1} - U_k)^2 */
86 mpz_submul_ui (T1, Qk, Q);
88 mpz_addmul_ui (T1, Qk, NEG_CAST (unsigned long, Q));
95 mpz_sub (T2, T1, T2);
96 mpz_swap (T1, T2);
98 mpz_tdiv_r (Qk, T1, n);
104 mpz_mul_si (T1, V, -2*Q);
105 mpz_add (T1, Qk, T1); /* V_k = U_k - 2Q*U_{k-1} *
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
mux-utils.h 23 // A class that stores a choice "A or B", where A has type T1 * and B has
24 // type T2 *. Both T1 and T2 must have an alignment greater than 1, since
25 // the low bit is used to identify B over A. T1 and T2 can be the same.
32 // union { T1 *A; T2 *B; };
48 template<typename T1, typename T2 = T1>
53 static pointer_mux first (T1 *);
64 // if T1 and T2 are distinct and if T can be resolved to exactly one
68 std::enable_if<std::is_convertible<T *, T1 *>::value
76 void set_first (T1 *ptr) { *this = first (ptr);
    [all...]
wide-int.h 287 /* The type of result produced by a binary operation on types T1 and T2.
289 #define WI_BINARY_RESULT(T1, T2) \
290 typename wi::binary_traits <T1, T2>::result_type
293 T1 nor T2 is a wide-int-based type. */
294 #define WI_BINARY_OPERATOR_RESULT(T1, T2) \
295 typename wi::binary_traits <T1, T2>::operator_result
297 /* The type of result produced by T1 << T2. Leads to substitution failure
299 #define WI_SIGNED_SHIFT_RESULT(T1, T2) \
300 typename wi::binary_traits <T1, T2>::signed_shift_result_type
303 types T1 and T2. This is bool if wide-int operations make sense fo
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
mux-utils.h 23 // A class that stores a choice "A or B", where A has type T1 * and B has
24 // type T2 *. Both T1 and T2 must have an alignment greater than 1, since
25 // the low bit is used to identify B over A. T1 and T2 can be the same.
32 // union { T1 *A; T2 *B; };
48 template<typename T1, typename T2 = T1>
53 static pointer_mux first (T1 *);
64 // if T1 and T2 are distinct and if T can be resolved to exactly one
68 std::enable_if<std::is_convertible<T *, T1 *>::value
76 void set_first (T1 *ptr) { *this = first (ptr);
    [all...]
wide-int.h 267 /* The type of result produced by a binary operation on types T1 and T2.
269 #define WI_BINARY_RESULT(T1, T2) \
270 typename wi::binary_traits <T1, T2>::result_type
273 T1 nor T2 is a wide-int-based type. */
274 #define WI_BINARY_OPERATOR_RESULT(T1, T2) \
275 typename wi::binary_traits <T1, T2>::operator_result
277 /* The type of result produced by T1 << T2. Leads to substitution failure
279 #define WI_SIGNED_SHIFT_RESULT(T1, T2) \
280 typename wi::binary_traits <T1, T2>::signed_shift_result_type
283 types T1 and T2. This is bool if wide-int operations make sense fo
    [all...]
hash-traits.h 333 template <typename T1, typename T2>
336 typedef std::pair <typename T1::value_type,
338 typedef std::pair <typename T1::compare_type,
345 static const bool empty_zero_p = T1::empty_zero_p;
351 template <typename T1, typename T2>
353 pair_hash <T1, T2>::hash (const value_type &x)
355 return iterative_hash_hashval_t (T1::hash (x.first), T2::hash (x.second));
358 template <typename T1, typename T2>
360 pair_hash <T1, T2>::equal (const value_type &x, const compare_type &y)
362 return T1::equal (x.first, y.first) && T2::equal (x.second, y.second)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/seed/
seed_local.h 56 #define KEYSCHEDULE_UPDATE0(T0, T1, X1, X2, X3, X4, KC) \
61 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
63 #define KEYSCHEDULE_UPDATE1(T0, T1, X1, X2, X3, X4, KC) \
68 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
70 #define KEYUPDATE_TEMP(T0, T1, K) \
72 (K)[1] = G_FUNC((T1))
98 #define E_SEED(T0, T1, X1, X2, X3, X4, rbase) \
100 (T1) = (X4) ^ (ks->data)[(rbase) + 1]; \
101 (T1) ^= (T0); \
102 (T1) = G_FUNC((T1));
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/seed/
seed_local.h 57 # define KEYSCHEDULE_UPDATE0(T0, T1, X1, X2, X3, X4, KC) \
62 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
64 # define KEYSCHEDULE_UPDATE1(T0, T1, X1, X2, X3, X4, KC) \
69 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
71 # define KEYUPDATE_TEMP(T0, T1, K) \
73 (K)[1] = G_FUNC((T1))
99 # define E_SEED(T0, T1, X1, X2, X3, X4, rbase) \
101 (T1) = (X4) ^ (ks->data)[(rbase)+1]; \
102 (T1) ^= (T0); \
103 (T1) = G_FUNC((T1));
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/seed/
seed_local.h 57 # define KEYSCHEDULE_UPDATE0(T0, T1, X1, X2, X3, X4, KC) \
62 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
64 # define KEYSCHEDULE_UPDATE1(T0, T1, X1, X2, X3, X4, KC) \
69 (T1) = ((X2) + (KC) - (X4)) & 0xffffffff
71 # define KEYUPDATE_TEMP(T0, T1, K) \
73 (K)[1] = G_FUNC((T1))
99 # define E_SEED(T0, T1, X1, X2, X3, X4, rbase) \
101 (T1) = (X4) ^ (ks->data)[(rbase)+1]; \
102 (T1) ^= (T0); \
103 (T1) = G_FUNC((T1));
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
valid-expr.h 75 #define CHECK_VALID_EXPR_1(T1, VALID, EXPR_TYPE, EXPR) \
76 CHECK_VALID_EXPR_INT (ESC_PARENS (typename T1), \
77 ESC_PARENS (T1), \
80 #define CHECK_VALID_EXPR_2(T1, T2, VALID, EXPR_TYPE, EXPR) \
81 CHECK_VALID_EXPR_INT (ESC_PARENS(typename T1, typename T2), \
82 ESC_PARENS (T1, T2), \
85 #define CHECK_VALID_EXPR_3(T1, T2, T3, VALID, EXPR_TYPE, EXPR) \
86 CHECK_VALID_EXPR_INT (ESC_PARENS (typename T1, typename T2, typename T3), \
87 ESC_PARENS (T1, T2, T3), \
90 #define CHECK_VALID_EXPR_4(T1, T2, T3, T4, VALID, EXPR_TYPE, EXPR)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
valid-expr.h 75 #define CHECK_VALID_EXPR_1(T1, VALID, EXPR_TYPE, EXPR) \
76 CHECK_VALID_EXPR_INT (ESC_PARENS (typename T1), \
77 ESC_PARENS (T1), \
80 #define CHECK_VALID_EXPR_2(T1, T2, VALID, EXPR_TYPE, EXPR) \
81 CHECK_VALID_EXPR_INT (ESC_PARENS(typename T1, typename T2), \
82 ESC_PARENS (T1, T2), \
85 #define CHECK_VALID_EXPR_3(T1, T2, T3, VALID, EXPR_TYPE, EXPR) \
86 CHECK_VALID_EXPR_INT (ESC_PARENS (typename T1, typename T2, typename T3), \
87 ESC_PARENS (T1, T2, T3), \
90 #define CHECK_VALID_EXPR_4(T1, T2, T3, T4, VALID, EXPR_TYPE, EXPR)
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdcpp/
utility.d 24 struct pair(T1, T2)
27 alias first_type = T1;
32 T1 first;
39 this(T1 t1, T2 t2) inout
41 first = t1;
44 this(ref return scope inout pair!(T1, T2) src) inout
  /src/crypto/external/apache2/openssl/dist/crypto/aes/asm/
aes-riscv64-zkn.pl 120 my ($T0,$T1) = use_regs(13..14);
147 ld $T1,8($KEYP)
154 xor $Q1,$Q1,$T1
169 ld $T1,8($KEYP)
171 xor $Q1,$Q3,$T1
182 ld $T1,24($KEYP)
184 xor $Q1,$Q3,$T1
225 ld $T1,8($KEYP)
228 xor $Q1,$Q1,$T1
243 ld $T1,8($KEYP
    [all...]
aes-riscv32-zkn.pl 193 my ($T0,$T1,$T2,$T3) = use_regs(13..16);
260 lw $T1,4($KEYP)
269 xor $Q1,$Q1,$T1
280 lw $T1,4($KEYP)
285 @{[aes32esmi4 $T1,$Q1,$Q2,$Q3,$Q0]}
297 @{[aes32esmi4 $Q0,$T0,$T1,$T2,$T3]}
298 @{[aes32esmi4 $Q1,$T1,$T2,$T3,$T0]}
299 @{[aes32esmi4 $Q2,$T2,$T3,$T0,$T1]}
300 @{[aes32esmi4 $Q3,$T3,$T0,$T1,$T2]}
310 lw $T1,4($KEYP
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/poly1305/asm/
poly1305-x86.pl 392 my ($D0,$D1,$D2,$D3,$D4,$T0,$T1,$T2)=map("xmm$_",(0..7));
430 &movdqa ($T1,$D1);
432 &pslld ($T1,2);
434 &paddd ($T1,$D1); # *5
436 &movdqa (&QWP(16*5,"esp"),$T1);
438 &movdqa ($T1,$D3);
440 &pslld ($T1,2);
442 &paddd ($T1,$D3); # *5
444 &movdqa (&QWP(16*7,"esp"),$T1);
447 &pshufd ($T1,$D0,0b01000100)
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/poly1305/asm/
poly1305-x86.pl 392 my ($D0,$D1,$D2,$D3,$D4,$T0,$T1,$T2)=map("xmm$_",(0..7));
430 &movdqa ($T1,$D1);
432 &pslld ($T1,2);
434 &paddd ($T1,$D1); # *5
436 &movdqa (&QWP(16*5,"esp"),$T1);
438 &movdqa ($T1,$D3);
440 &pslld ($T1,2);
442 &paddd ($T1,$D3); # *5
444 &movdqa (&QWP(16*7,"esp"),$T1);
447 &pshufd ($T1,$D0,0b01000100)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/poly1305/asm/
poly1305-x86.pl 393 my ($D0,$D1,$D2,$D3,$D4,$T0,$T1,$T2)=map("xmm$_",(0..7));
431 &movdqa ($T1,$D1);
433 &pslld ($T1,2);
435 &paddd ($T1,$D1); # *5
437 &movdqa (&QWP(16*5,"esp"),$T1);
439 &movdqa ($T1,$D3);
441 &pslld ($T1,2);
443 &paddd ($T1,$D3); # *5
445 &movdqa (&QWP(16*7,"esp"),$T1);
448 &pshufd ($T1,$D0,0b01000100)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
templates.cc 291 class T1 {
296 void operator=(const T1&);
297 T1& operator=(int);
300 int operator==(const T1&) const;
302 int operator!=(const T1&) const;
305 int operator<=(const T1&) const;
307 int operator<(const T1&) const;
309 int operator>=(const T1&) const;
311 int operator>(const T1&) const;
314 T1& operator+(const T1&) const
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
templates.cc 291 class T1 {
296 void operator=(const T1&);
297 T1& operator=(int);
300 int operator==(const T1&) const;
302 int operator!=(const T1&) const;
305 int operator<=(const T1&) const;
307 int operator<(const T1&) const;
309 int operator>=(const T1&) const;
311 int operator>(const T1&) const;
314 T1& operator+(const T1&) const
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-xmethods.cc 94 template <typename T1>
100 template <typename T1>
101 T mul(const T1 t1);
110 template <typename T1>
115 return sizeof (T1) - sizeof (T);
132 template <typename T1>
134 G<T>::mul (const T1 t1)
137 return t1 * t
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-xmethods.cc 94 template <typename T1>
100 template <typename T1>
101 T mul(const T1 t1);
110 template <typename T1>
115 return sizeof (T1) - sizeof (T);
132 template <typename T1>
134 G<T>::mul (const T1 t1)
137 return t1 * t
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/array/
equality.d 20 bool __equals(T1, T2)(scope const T1[] lhs, scope const T2[] rhs)
22 if (__traits(isScalar, T1) && __traits(isScalar, T2))
27 static if (T1.sizeof == T2.sizeof
31 && (T1.sizeof >= 4 || __traits(isUnsigned, T1) == __traits(isUnsigned, T2))
32 && !__traits(isFloating, T1) && !__traits(isFloating, T2))
40 0 == memcmp(cast(const void*) lhs.ptr, cast(const void*) rhs.ptr, lhs.length * T1.sizeof);
50 bool __equals(T1, T2)(scope T1[] lhs, scope T2[] rhs
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/sha/asm/
sha256-c64xplus.pl 36 ($E,$Ectx,$F,$Fctx,$G,$Gctx,$H,$Hctx,$T1,$S1,$s0,$t0e,$t1e,$t2e,$X1,$X15)
137 || ADD $K,$H,$T1 ; T1 = h + K256[i]
138 ADD $X0,$T1,$T1 ; T1 += X[i];
145 || ADD $Ch,$T1,$T1 ; T1 += Ch(e,f,g)
146 ADD $S1,$T1,$T1 ; T1 += Sigma1(e
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/sha/
sha256.c 219 unsigned MD32_REG_T a, b, c, d, e, f, g, h, s0, s1, T1, T2;
237 T1 = X[i] = l;
238 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
243 e = d + T1;
247 a = T1 + T2;
256 T1 = X[i & 0xf] += s0 + s1 + X[(i + 9) & 0xf];
257 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
262 e = d + T1;
266 a = T1 + T2;
284 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/sha/asm/
sha256-c64xplus.pl 36 ($E,$Ectx,$F,$Fctx,$G,$Gctx,$H,$Hctx,$T1,$S1,$s0,$t0e,$t1e,$t2e,$X1,$X15)
137 || ADD $K,$H,$T1 ; T1 = h + K256[i]
138 ADD $X0,$T1,$T1 ; T1 += X[i];
145 || ADD $Ch,$T1,$T1 ; T1 += Ch(e,f,g)
146 ADD $S1,$T1,$T1 ; T1 += Sigma1(e
    [all...]

Completed in 47 milliseconds

1 2 3 4 5 6 7 8 91011>>