Searched refs:C1 (Results 76 - 85 of 85) sorted by relevance

1234

/freebsd-11.0-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp1743 auto *C1 = dyn_cast<ConstantFPSDNode>(C.Op1); local
1744 if (C1 && C1->isZero()) {
1768 auto *C1 = dyn_cast<ConstantSDNode>(C.Op0.getOperand(1)); local
1769 if (C1 && C1->getZExtValue() == 32) {
4683 // Convert (sext (ashr (shl X, C1), C2)) to
4684 // (ashr (shl (anyext X), C1'), C2')), since wider shifts are as
/freebsd-11.0-release/sys/dev/usb/quirk/
H A Dusb_quirk.c305 USB_QUIRK(OLYMPUS, C1, 0x0000, 0xffff, UQ_MSC_FORCE_WIRE_BBB,
/freebsd-11.0-release/crypto/openssl/crypto/modes/
H A Dgcm128.c1742 static const u8 K1[16], *P1 = NULL, *A1 = NULL, IV1[12], *C1 = NULL; local
2199 # define C19 C1
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOverload.cpp8129 // For every quintuple (C1, C2, T, CV1, CV2), where C2 is a class type,
8130 // C1 is the same type as C2 or is a derived class of C2, T is an object
8134 // CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
8143 QualType C1; local
8145 C1 = QualType(Q1.strip(C1Ty->getPointeeType()), 0);
8146 if (!isa<RecordType>(C1))
8162 if (C1 != C2 && !S.IsDerivedFrom(CandidateSet.getLocation(), C1, C2))
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp2028 SDValue C1 = DAG.getConstantFP(C1Val, SL, MVT::f64); local
2029 SDValue CopySign = DAG.getNode(ISD::FCOPYSIGN, SL, MVT::f64, C1, Src);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp621 /// Return true if there are any keys in C1 that exist in C2 as well.
623 ValuesOverlap(std::vector<ValueEqualityComparisonCase> &C1, argument
625 std::vector<ValueEqualityComparisonCase> *V1 = &C1, *V2 = &C2;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp3741 Value *C1 = llvm::ConstantInt::get(Int64Ty, 32); local
3743 Value *Arg1b = Builder.CreateLShr(Arg1, C1);
/freebsd-11.0-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp5789 // BUILD_VECTORs with constant element C1, C2 is a constant, and C1 == ~C2.
5819 uint64_t C1;
5820 if (!isAllConstantBuildVector(And.getOperand(1), C1))
5823 // Is C1 == ~C2, taking into account how much one can shift elements of a
5830 if ((C1 & ElemMask) != (~C2 & ElemMask))
5854 // Attempt to form a vector S[LR]I from (or (and X, C1), (lsl Y, C2))
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp8506 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(ExtVec1->getOperand(1)); local
8509 if (!C0 || !C1 || C0->getZExtValue() != nextIndex
8510 || C1->getZExtValue() != nextIndex+1)
/freebsd-11.0-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp12831 Constant *C1 = ConstantVector::get(CV1);
12832 SDValue CPIdx1 = DAG.getConstantPool(C1, PtrVT, 16);
25329 // The transform is not safe if the result of C1 << C2 exceeds the bitwidth
[all...]

Completed in 647 milliseconds

1234