HomeSort by: relevance | last modified time | path
    Searched refs:T2 (Results 1 - 25 of 274) 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)
82 mpz_mul (T2, Qk, Qk); /* |U_{k+1} - U_k|^2 */
84 mpz_sub (T2, T1, T2); /* U_{k+1}^2 - (U_{k+1} - U_k)^2 */
94 mpz_mul_si (T2, T2, Q);
95 mpz_sub (T2, T1, T2);
96 mpz_swap (T1, T2);
99 mpz_tdiv_r (V, T2, n)
    [all...]
stronglucas.c 1 /* mpz_stronglucas(n, t1, t2) -- An implementation of the strong Lucas
68 mpz_t T1, T2;
156 mpz_init (T2);
159 if (mpz_lucas_mod (V, Qk, Q, b0, n, T1, T2) == 0)
164 mpz_mul (T2, V, V);
165 mpz_submul_ui (T2, Qk, 2);
166 mpz_tdiv_r (V, T2, n);
170 mpz_mul (T2, Qk, Qk);
171 mpz_tdiv_r (Qk, T2, n);
175 mpz_clear (T2);
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
mux-utils.h 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; };
42 // if (auto *B = mux.dyn_cast<T2 *> ())
48 template<typename T1, typename T2 = T1>
56 static pointer_mux second (T2 *);
64 // if T1 and T2 are distinct and if T can be resolved to exactly one
69 != std::is_convertible<T *, T2 *>::value>::type>
77 void set_second (T2 *ptr) { *this = second (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 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; };
42 // if (auto *B = mux.dyn_cast<T2 *> ())
48 template<typename T1, typename T2 = T1>
56 static pointer_mux second (T2 *);
64 // if T1 and T2 are distinct and if T can be resolved to exactly one
69 != std::is_convertible<T *, T2 *>::value>::type>
77 void set_second (T2 *ptr) { *this = second (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>
337 typename T2::value_type> value_type;
339 typename T2::compare_type> compare_type;
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);
365 template <typename T1, typename T2>
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdcpp/
utility.d 24 struct pair(T1, T2)
29 alias second_type = T2;
34 T2 second;
39 this(T1 t1, T2 t2) inout
42 second = t2;
44 this(ref return scope inout pair!(T1, T2) src) inout
  /src/external/gpl3/gdb/dist/gdbsupport/
valid-expr.h 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) \
91 CHECK_VALID_EXPR_INT (ESC_PARENS (typename T1, typename T2, \
93 ESC_PARENS (T1, T2, T3, T4), \
96 #define CHECK_VALID_EXPR_5(T1, T2, T3, T4, T5, VALID, EXPR_TYPE, EXPR)
    [all...]
scoped_restore.h 65 scoped_restore object is destroyed. This is templated on T2 to
67 E.g.: T='base'; T2='derived'. */
68 template <typename T2>
69 scoped_restore_tmpl (T *var, T2 value)
112 template<typename T, typename T2>
113 scoped_restore_tmpl<T> make_scoped_restore (T *var, T2 value)
  /src/external/gpl3/gdb.old/dist/gdbsupport/
valid-expr.h 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) \
91 CHECK_VALID_EXPR_INT (ESC_PARENS (typename T1, typename T2, \
93 ESC_PARENS (T1, T2, T3, T4), \
96 #define CHECK_VALID_EXPR_5(T1, T2, T3, T4, T5, VALID, EXPR_TYPE, EXPR)
    [all...]
scoped_restore.h 65 scoped_restore object is destroyed. This is templated on T2 to
67 E.g.: T='base'; T2='derived'. */
68 template <typename T2>
69 scoped_restore_tmpl (T *var, T2 value)
112 template<typename T, typename T2>
113 scoped_restore_tmpl<T> make_scoped_restore (T *var, T2 value)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
templates.cc 375 class T2 {
377 T2(int i): integer(i)
382 int operator==(const T2&, const T2&)
384 int operator==(const T2&, char)
386 int operator!=(const T2&, const T2&)
388 int operator!=(const T2&, char)
391 int operator<=(const T2&, const T2&
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
templates.cc 375 class T2 {
377 T2(int i): integer(i)
382 int operator==(const T2&, const T2&)
384 int operator==(const T2&, char)
386 int operator!=(const T2&, const T2&)
388 int operator!=(const T2&, char)
391 int operator<=(const T2&, const T2&
    [all...]
  /src/external/mit/isl/dist/
isl_equalities.h 21 int first, __isl_give isl_mat **T2);
23 __isl_give isl_mat **T2);
30 __isl_give isl_mat **T2);
  /src/crypto/external/apache2/openssl/dist/crypto/aes/asm/
aes-riscv64-zkn.pl 282 my ($T0,$T1,$T2,$T3,$T4) = use_regs(6..8,13..14);
298 @{[aes64ks1i $T2,$T1,$rnum]}
299 @{[aes64ks2 $T0,$T2,$T0]}
316 ld $T2,16($UKEY)
319 sd $T2,16($KEYP)
323 @{[aes64ks1i $T3,$T2,$rnum]}
331 @{[aes64ks2 $T2,$T1,$T2]}
341 sd $T2,16($KEYP)
355 ld $T2,16($UKEY
    [all...]
aes-riscv32-zkn.pl 193 my ($T0,$T1,$T2,$T3) = use_regs(13..16);
261 lw $T2,8($KEYP)
270 xor $Q2,$Q2,$T2
281 lw $T2,8($KEYP)
286 @{[aes32esmi4 $T2,$Q2,$Q3,$Q0,$Q1]}
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]}
311 lw $T2,8($KEYP
    [all...]
  /src/common/dist/zlib/contrib/iostream3/
zfstream.h 412 template<typename T1, typename T2>
423 gzomanip2(gzofstream& (*f)(gzofstream&, T1, T2),
425 T2 v2);
429 (*func)(gzofstream&, T1, T2);
433 T2 val2;
447 template<typename T1, typename T2>
449 gzomanip2<T1,T2>::gzomanip2(gzofstream &(*f)(gzofstream &, T1, T2),
451 T2 v2)
456 template<typename T1, typename T2>
    [all...]
  /src/external/gpl3/binutils/dist/zlib/contrib/iostream3/
zfstream.h 412 template<typename T1, typename T2>
423 gzomanip2(gzofstream& (*f)(gzofstream&, T1, T2),
425 T2 v2);
429 (*func)(gzofstream&, T1, T2);
433 T2 val2;
447 template<typename T1, typename T2>
449 gzomanip2<T1,T2>::gzomanip2(gzofstream &(*f)(gzofstream &, T1, T2),
451 T2 v2)
456 template<typename T1, typename T2>
    [all...]
  /src/external/gpl3/binutils.old/dist/zlib/contrib/iostream3/
zfstream.h 412 template<typename T1, typename T2>
423 gzomanip2(gzofstream& (*f)(gzofstream&, T1, T2),
425 T2 v2);
429 (*func)(gzofstream&, T1, T2);
433 T2 val2;
447 template<typename T1, typename T2>
449 gzomanip2<T1,T2>::gzomanip2(gzofstream &(*f)(gzofstream &, T1, T2),
451 T2 v2)
456 template<typename T1, typename T2>
    [all...]
  /src/external/gpl3/gdb/dist/zlib/contrib/iostream3/
zfstream.h 412 template<typename T1, typename T2>
423 gzomanip2(gzofstream& (*f)(gzofstream&, T1, T2),
425 T2 v2);
429 (*func)(gzofstream&, T1, T2);
433 T2 val2;
447 template<typename T1, typename T2>
449 gzomanip2<T1,T2>::gzomanip2(gzofstream &(*f)(gzofstream &, T1, T2),
451 T2 v2)
456 template<typename T1, typename T2>
    [all...]
  /src/external/gpl3/gdb.old/dist/zlib/contrib/iostream3/
zfstream.h 412 template<typename T1, typename T2>
423 gzomanip2(gzofstream& (*f)(gzofstream&, T1, T2),
425 T2 v2);
429 (*func)(gzofstream&, T1, T2);
433 T2 val2;
447 template<typename T1, typename T2>
449 gzomanip2<T1,T2>::gzomanip2(gzofstream &(*f)(gzofstream &, T1, T2),
451 T2 v2)
456 template<typename T1, typename T2>
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.go/
types.go 9 type T1 *T2
10 type T2 *T1
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.go/
types.go 9 type T1 *T2
10 type T2 *T1
  /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))
50 bool __equals(T1, T2)(scope T1[] lhs, scope T2[] rhs)
51 if (!__traits(isScalar, T1) || !__traits(isScalar, T2))
59 static if (useMemcmp!(T1, T2))
    [all...]

Completed in 46 milliseconds

1 2 3 4 5 6 7 8 91011