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

12345

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DMetadata.h1346 template<class T1, class T2>
1384 T1 operator*() const { return Node->getOperand(Idx); }
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp5081 static bool isSameTemplate(TemplateDecl *T1, TemplateDecl *T2) {
5082 if (T1 == T2)
5085 if (!T1 || !T2)
5088 return T1->getCanonicalDecl() == T2->getCanonicalDecl();
5196 /// \param T1 The injected-class-name of P1 (faked for a variable template).
5199 static bool isAtLeastAsSpecializedAs(Sema &S, QualType T1, QualType T2,
5231 T2, T1, Info, Deduced, TDF_None,
5239 auto *TST1 = T1->castAs<TemplateSpecializationType>();
H A DSemaExprCXX.cpp5592 // The process for determining whether an operand expression E1 of type T1
5631 // same type as, or a base class of, the class of T1, and
6267 // The composite pointer type of two operands p1 and p2 having types T1
6269 QualType T1 = E1->getType(), T2 = E2->getType();
6273 bool T1IsPointerLike = T1->isAnyPointerType() || T1->isMemberPointerType() ||
6274 T1->isNullPtrType();
6284 // - if either p1 or p2 is a null pointer constant, T2 or T1, respectively;
6288 E2 = ImpCastExprToType(E2, T1, T1
[all...]
H A DSemaDeclObjC.cpp4440 QualType T1 = Context.getCanonicalType((*ParamI)->getType()); local
4444 if (!Context.typesAreCompatible(T1, T2)) {
4446 << T1 << T2;
H A DSemaLookup.cpp3068 QualType T1, QualType T2,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalMap.h210 // T1 T2 N Waste Used by
219 template <typename T1, typename T2, unsigned N>
224 T1 first[N];
233 void copy(const NodeBase<T1, T2, M> &Other, unsigned i,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp202 template <typename T1, typename... Ts>
203 void WriteTs(const T1 &V1, const Ts &... Vs) {
225 template <typename T1, typename... Ts>
226 void CheckFailed(const Twine &Message, const T1 &V1, const Ts &... Vs) {
241 template <typename T1, typename... Ts>
242 void DebugInfoCheckFailed(const Twine &Message, const T1 &V1,
/freebsd-11-stable/crypto/openssl/crypto/aes/asm/
H A Daesni-sha256-x86_64.pl77 ($T1,$a0,$a1,$a2,$a3)=("%r12d","%r13d","%r14d","%r15d","%esi");
273 my $a4=$T1;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMicroMipsSizeReduction.cpp381 Mips::T0, Mips::T1, Mips::T2, Mips::T3, Mips::T4, Mips::T5, Mips::T6,
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DUnwindRegistersSave.S787 @ T1 does not have a non-cpsr-clobbering register-zeroing instruction.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp1612 // A T1 post-indexed load is just a single register LDM: LDM r0!, {r1}.
4983 SDValue T1 = CurDAG->getCopyToReg(Sub1, dl, Reg1, Sub1, T0.getValue(1)); local
4987 Ops.push_back(T1.getValue(1));
4998 SDValue T1 = CurDAG->getCopyFromReg(Chain, dl, Reg1, MVT::i32, local
5000 SDValue Pair = SDValue(createGPRPairNode(MVT::Untyped, T0, T1), 0);
5006 Chain = CurDAG->getCopyToReg(T1, dl, GPVR, Pair, T1.getValue(1));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3314 static Type *smallestIntegerVectorType(Type *T1, Type *T2) {
3315 auto *I1 = cast<IntegerType>(T1->getVectorElementType());
3317 return I1->getBitWidth() < I2->getBitWidth() ? T1 : T2;
3319 static Type *largestIntegerVectorType(Type *T1, Type *T2) {
3320 auto *I1 = cast<IntegerType>(T1->getVectorElementType());
3322 return I1->getBitWidth() > I2->getBitWidth() ? T1 : T2;
/freebsd-11-stable/contrib/subversion/
H A DMakefile.in710 subversion/tests/libsvn_diff/T1 \
/freebsd-11-stable/sys/dev/mn/
H A Dif_mn.c13 * This card contains a FALC54 E1/T1 framer and a MUNICH32X 32-channel HDLC
237 enum framing {WHOKNOWS, E1, E1U, T1, T1U}; enumerator in enum:framing
1281 device_set_desc_copy(self, "Munich32X E1/T1 HDLC Controller");
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h279 /// Find a common type that T1 and T2 convert to.
281 RecTy *resolveTypes(RecTy *T1, RecTy *T2);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3456 // T1 = T0 DstPred ICmpCst
3457 Value *T1 = Builder.CreateICmp(DstPred, T0, ConstantInt::get(XType, ICmpCst)); local
3459 return T1;
3626 Value *T1 = Builder.CreateAnd(T0, Y); local
3627 return Builder.CreateICmp(I.getPredicate(), T1,
/freebsd-11-stable/contrib/dtc/Documentation/
H A Ddtc-paper.tex8 \usepackage[T1]{fontenc}
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp3207 case Mips::T0: return Mips::T1;
3208 case Mips::T1: return Mips::T2;
5355 return Mips::T1;
5396 case Mips::F9: return Mips::T1;
5435 case Mips::COP09: return Mips::T1;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp2996 SDValue T1 = DAG.getNode(ISD::SRA, DL, XVT, T0, ShiftAmt); local
2997 SDValue T2 = DAG.getSetCC(DL, SCCVT, T1, X, NewCond);
3068 SDValue T1 = DAG.getNode(ISD::AND, DL, VT, T0, C); local
3069 SDValue T2 = DAG.getSetCC(DL, SCCVT, T1, N1C, Cond);
H A DSelectionDAGBuilder.cpp6942 [](const BranchFunnelTarget &T1, const BranchFunnelTarget &T2) {
6943 return T1.Offset < T2.Offset;
/freebsd-11-stable/crypto/openssl/crypto/modes/
H A Dgcm128.c1743 static const u8 T1[] = { local
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h3642 QualType T1, QualType T2,
7315 /// "typename MetaFun::template apply<T1, T2>".
10891 /// types (cv1 T1 and cv2 T2) to determine their compatibility for the
10898 /// that their unqualified forms (T1 and T2) are either the same
10899 /// or T1 is a base class of T2.
10908 /// binding a reference of type T1 to it, as determined when evaluating
10909 /// whether T1 is reference-compatible with T2.
10924 CompareReferenceRelationship(SourceLocation Loc, QualType T1, QualType T2,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp3801 Type *ScalarEvolution::getWiderType(Type *T1, Type *T2) const {
3802 return getTypeSizeInBits(T1) >= getTypeSizeInBits(T2) ? T1 : T2;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp22334 SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
22335 if (T1.getValueType() == T2.getValueType() &&
22337 T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
22338 SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, T1.getValueType(), T2, T1,
[all...]
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/netpgpverify/
H A Dt_netpgpverify.sh6329 olnNmO00S1US79FR0TjijXcsoyNtwnqWtJbtHdYiBqK32VWhrgkeUR5+hc1fh+T1

Completed in 629 milliseconds

12345