Searched refs:T1 (Results 76 - 100 of 139) sorted by relevance

123456

/freebsd-13-stable/crypto/openssl/crypto/sha/asm/
H A Dsha512-x86_64.pl154 ($T1,$a0,$a1,$a2,$a3)=("%r12","%r13","%r14","%r15","%rdi");
166 ($T1,$a0,$a1,$a2,$a3)=("%r12d","%r13d","%r14d","%r15d","%edi");
198 mov $T1,`$SZ*($i&0xf)`(%rsp)
203 add $h,$T1 # T1+=h
208 add $a2,$T1 # T1+=Ch(e,f,g)
211 add ($Tbl),$T1 # T1+=K[round]
220 add $a0,$T1 # T
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallVector.h330 template <typename T1, typename T2>
332 T1 *I, T1 *E, T2 *Dest,
333 std::enable_if_t<std::is_same<typename std::remove_const<T1>::type,
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgtest-typed-test_test.cc438 template <typename T1, typename T2> struct MyPair {};
H A Dgtest_unittest.cc2378 template <typename T1, typename T2>
2379 bool GreaterThan(T1 x1, T2 x2) {
2420 template <typename T1, typename T2>
2422 const T1& x1, const T2& x2) {
7421 template <typename T1, typename T2>
7423 CompileAssertTypesEqual<T1, GTEST_REMOVE_REFERENCE_(T2)>();
7447 template <typename T1, typename T2>
7449 CompileAssertTypesEqual<T1, GTEST_REMOVE_CONST_(T2)>();
7460 template <typename T1, typename T2>
7462 CompileAssertTypesEqual<T1, GTEST_REMOVE_REFERENCE_AND_CONST
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsRegisterInfo.cpp229 Reserved.set(Mips::T1);
H A DMips16ISelLowering.cpp340 #define T1 P "1", P "2", 0, 0, P "5", P "6", 0, 0, P "9", P "10" macro
341 #define T P "0" , T1
344 {nullptr, T1 };
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp4032 QualType T1 = SCS1.getToType(2);
4034 T1 = S.Context.getCanonicalType(T1);
4037 QualType UnqualT1 = S.Context.getUnqualifiedArrayType(T1, T1Quals);
4051 if (isa<ArrayType>(T1) && T1Quals)
4052 T1 = S.Context.getQualifiedType(UnqualT1, T1Quals);
4055 if (T2.isMoreQualifiedThan(T1))
4057 if (T1.isMoreQualifiedThan(T2))
4117 // yield similar types T1 and T2 (C++ 4.4), respectively, and the
4118 // cv-qualification signature of type T1 i
[all...]
H A DSemaCast.cpp547 /// the resulting T1 is unwrapped sufficiently that it is never an array type,
550 /// as (effectively) required by [expr.const.cast]p7 replacing T1's qualifiers
553 unwrapCastAwayConstnessLevel(ASTContext &Context, QualType &T1, QualType &T2) { argument
576 // case, so there is no corresponding "reference to" in T1 to remove.) This
580 } else if (Context.UnwrapSimilarTypes(T1, T2)) {
584 int T1Class = Classify(T1);
592 T1 = Unwrap(T1);
598 // We've unwrapped at least one level. If the resulting T1 is a (possibly
600 // T2 is considered to correspond to T1
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DIRBuilder.cpp598 template<typename T1, typename T2, typename T3>
600 getStatepointBundles(Optional<ArrayRef<T1>> TransitionArgs,
623 template <typename T0, typename T1, typename T2, typename T3>
627 Optional<ArrayRef<T1>> TransitionArgs,
680 template <typename T0, typename T1, typename T2, typename T3>
685 Optional<ArrayRef<T1>> TransitionArgs, Optional<ArrayRef<T2>> DeoptArgs,
/freebsd-13-stable/sys/mips/mips/
H A Dexception.S280 SAVE_REG(t1, T1, sp) ;\
341 RESTORE_REG(t1, T1, sp) ;\
441 SAVE_U_PCB_REG(t1, T1, k1)
535 RESTORE_U_PCB_REG(t1, T1, k1)
704 SAVE_U_PCB_REG(t1, T1, k1)
823 RESTORE_U_PCB_REG(t1, T1, k1)
H A Dswtch.S109 RESTORE_U_PCB_REG(t1, T1, k1)
/freebsd-13-stable/crypto/openssl/crypto/chacha/asm/
H A Dchacha-ppc.pl416 my ($twelve,$seven,$T0,$T1) = @D;
513 ?lvsr $T1,0,$ctr # prepare unaligned load
524 ?vperm @K[3],@D[1],@K[3],$T1 # align counter
541 be?vspltisb $T1,3 # 0x03..03
542 be?vxor $T0,$T0,$T1 # swap bytes within words
543 be?vxor $outperm,$outperm,$T1
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1185 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, argument
1187 tok::TokenKind TokArray[] = {T1, T2};
1190 bool SkipUntil(tok::TokenKind T1, tok::TokenKind T2, tok::TokenKind T3, argument
1192 tok::TokenKind TokArray[] = {T1, T2, T3};
1543 bool ConsumeAndStoreUntil(tok::TokenKind T1, argument
1547 return ConsumeAndStoreUntil(T1, T1, Toks, StopAtSemi, ConsumeFinalToken);
1549 bool ConsumeAndStoreUntil(tok::TokenKind T1, tok::TokenKind T2,
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExternalASTMerger.cpp361 if (auto *T1 = dyn_cast<TagDecl>(D1))
363 if (T1->getFirstDecl() == T2->getFirstDecl())
H A DASTContext.cpp5634 bool ASTContext::UnwrapSimilarArrayTypes(QualType &T1, QualType &T2) { argument
5637 auto *AT1 = getAsArrayType(T1);
5654 T1 = AT1->getElementType();
5662 /// If T1 and T2 are both pointer types of the same kind, or both array types
5663 /// with the same bound, unwraps layers from T1 and T2 until a pointer type is
5664 /// unwrapped. Top-level qualifiers on T1 and T2 are ignored.
5672 bool ASTContext::UnwrapSimilarTypes(QualType &T1, QualType &T2) { argument
5673 UnwrapSimilarArrayTypes(T1, T2);
5675 const auto *T1PtrType = T1->getAs<PointerType>();
5678 T1
5708 hasSimilarType(QualType T1, QualType T2) argument
5720 hasCvrSimilarType(QualType T1, QualType T2) argument
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc1275 template <typename T1, typename T2>
1276 bool AllOf(const T1& t1, const T2& t2) { return true; }
1283 template <typename T1, typename T2> bool
1284 AnyOf(const T1& t1, const T2& t2) { return true; }
/freebsd-13-stable/crypto/openssl/crypto/
H A Dsparccpuid.S260 ! UltraSPARC T1 24
269 ! It would be possible to detect specifically US-T1 by instrumenting
270 ! fmul8ulx16, which is emulated on T1 and as such accounts for quite
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DTokens.cpp264 auto T1 = Spelled.back().location();
266 assert(T1 == T2 || sourceManager().isBeforeInTranslationUnit(T1, T2));
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DScaledNumber.h746 #define SCALED_NUMBER_COMPARE_TO_TYPE(op, T1, T2) \
748 bool operator op(const ScaledNumber<DigitsT> &L, T1 R) { \
752 bool operator op(T1 L, const ScaledNumber<DigitsT> &R) { \
H A DVirtualFileSystem.h508 template <typename T1, typename T2>
509 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false)
510 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp242 static RecordRecTy *resolveRecordTypes(RecordRecTy *T1, RecordRecTy *T2) {
246 Stack.insert(Stack.end(), T1->classes_begin(), T1->classes_end());
262 RecTy *llvm::resolveTypes(RecTy *T1, RecTy *T2) {
263 if (T1 == T2)
264 return T1;
266 if (RecordRecTy *RecTy1 = dyn_cast<RecordRecTy>(T1)) {
271 if (T1->typeIsConvertibleTo(T2))
273 if (T2->typeIsConvertibleTo(T1))
274 return T1;
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h1617 template <typename T1, typename T2>
1618 operator Matcher< ::testing::tuple<T1, T2> >() const {
1619 return MakeMatcher(new Impl< ::testing::tuple<T1, T2> >);
1621 template <typename T1, typename T2>
1622 operator Matcher<const ::testing::tuple<T1, T2>&>() const {
1623 return MakeMatcher(new Impl<const ::testing::tuple<T1, T2>&>);
2262 template <typename T1, typename T2>
2263 operator Matcher< ::testing::tuple<T1, T2> >() const {
2265 new Impl< ::testing::tuple<T1, T2> >(max_abs_error_, nan_eq_nan_));
2267 template <typename T1, typenam
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp2173 SDValue T1 = DAG.getNode(ISD::BSWAP, dl, MVT::i32, T0); local
2174 return DAG.getBitcast(VecTy, T1);
2200 SDValue T1 = DAG.getNode(ISD::BSWAP, dl, MVT::i64, T0); local
2201 return DAG.getBitcast(VecTy, T1);
2387 SDValue T1 = DAG.getNode(ISD::SHL, dl, MVT::i32, {Vs[3], S8}); local
2389 SDValue B1 = DAG.getNode(ISD::OR, dl, MVT::i32, {Vs[2], T1});
2510 SDValue T1 = DAG.getNode(ISD::SRL, dl, MVT::i64, T0, S0); local
2514 T1 = DAG.getTargetExtractSubreg(Hexagon::isub_lo, dl, MVT::i32, T1);
2515 T1
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h374 // type_equals<T1, T2>::value is non-zero iff T1 and T2 are the same type.
375 template <typename T1, typename T2> struct type_equals : public false_type {};
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLint.cpp174 template <typename T1, typename... Ts>
175 void CheckFailed(const Twine &Message, const T1 &V1, const Ts &...Vs) {

Completed in 418 milliseconds

123456