Home
last modified time | relevance | path

Searched refs:LShift (Results 1 – 3 of 3) sorted by relevance

/freebsd/crypto/openssl/test/recipes/10-test_bn_data/
H A Dbnshift.txt1216 # These test vectors satisfy A * 2^N = LShift.
1218 Title = LShift tests
1220 LShift = 18c9e860855d594dcb06d00b7d1933608ba906d85fa2d92c9e0
1224 LShift = 3193d0c10abab29b960da016fa3266c117520db0bf45b2593c0
1228 LShift = 6327a182157565372c1b402df464cd822ea41b617e8b64b2780
1232 LShift = c64f43042aeaca6e5836805be8c99b045d4836c2fd16c964f00
1236 LShift = 18c9e860855d594dcb06d00b7d1933608ba906d85fa2d92c9e00
1240 LShift = 3193d0c10abab29b960da016fa3266c117520db0bf45b2593c00
1244 LShift = 6327a182157565372c1b402df464cd822ea41b617e8b64b27800
1248 LShift = c64f43042aeaca6e5836805be8c99b045d4836c2fd16c964f000
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp7956 Operator *LShift = dyn_cast<Operator>(L->getOperand(0)); in createSCEV() local
7958 if (LShift && LShift->getOpcode() == Instruction::Shl) { in createSCEV()
7960 const SCEV *ShlOp0SCEV = getSCEV(LShift->getOperand(0)); in createSCEV()
7961 ShlAmtCI = dyn_cast<ConstantInt>(LShift->getOperand(1)); in createSCEV()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp29138 bool LShift = (VT.is128BitVector() && Subtarget.hasSSE2()) || in supportedVectorShiftWithImm() local
29141 bool AShift = LShift && (Subtarget.hasAVX512() || in supportedVectorShiftWithImm()
29143 return (Opcode == ISD::SRA) ? AShift : LShift; in supportedVectorShiftWithImm()
29178 bool LShift = VT.is128BitVector() || VT.is256BitVector(); in supportedVectorVarShift() local
29179 bool AShift = LShift && VT != MVT::v2i64 && VT != MVT::v4i64; in supportedVectorVarShift()
29180 return (Opcode == ISD::SRA) ? AShift : LShift; in supportedVectorVarShift()