Home
last modified time | relevance | path

Searched refs:GCD (Results 1 – 15 of 15) sorted by relevance

/freebsd/crypto/openssl/test/recipes/10-test_bn_data/
H A Dbngcd.txt8 # GCD tests.
10 # These test vectors satisfy gcd(A, B) = GCD.
15 GCD = 0
20 GCD = 1
25 GCD = 1
30 GCD = 70030ffeeea3deaea19387f4f1d0f460a6954a2a9cb98290602ac09036143ef8eb9692f3eac22961811083e073ee0…
35 GCD = 231f16458c487346cf50a17beec83632f25d19abeea1097c746533cd3e35207b7efd75dc3e9c663a64b6861e88579…
42 GCD = 3
46 GCD = 5
50 GCD = 7
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DConstraintSystem.h58 uint32_t GCD = 1; global() variable
/freebsd/contrib/llvm-project/llvm/lib/MCA/
H A DSupport.cpp29 // common multiple from the GCD. in operator +=()
30 unsigned GCD = std::gcd(Denominator, RHS.Denominator); in operator +=() local
31 unsigned LCM = (Denominator * RHS.Denominator) / GCD; in operator +=()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp1244 APInt GCD; in aliasGEP() local
1255 GCD = ScaleForGCD.abs(); in aliasGEP()
1257 GCD = APIntOps::GreatestCommonDivisor(GCD, ScaleForGCD.abs()); in aliasGEP()
1287 APInt ModOffset = DecompGEP1.Offset.srem(GCD); in aliasGEP()
1289 ModOffset += GCD; // We want mod, not rem. in aliasGEP()
1291 (GCD - ModOffset).uge(V1Size.getValue())) in aliasGEP()
H A DScalarEvolution.cpp7815 unsigned GCD = std::min(MulZeros, TZ); in createSCEV() local
7816 APInt DivAmt = APInt::getOneBitSet(BitWidth, TZ - GCD); in createSCEV()
7818 MulOps.push_back(getConstant(OpC->getAPInt().lshr(GCD))); in createSCEV()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DUtils.cpp1270 unsigned GCD = std::gcd(OrigTy.getSizeInBits().getKnownMinValue(), in getGCDType() local
1272 if (GCD == OrigElt.getSizeInBits()) in getGCDType()
1277 if (GCD < OrigElt.getSizeInBits()) in getGCDType()
1279 GCD); in getGCDType()
1282 ElementCount::get(GCD / OrigElt.getSizeInBits().getFixedValue(), in getGCDType()
1302 unsigned GCD = std::gcd(OrigScalar.getSizeInBits().getFixedValue(), in getGCDType() local
1304 return LLT::scalar(GCD); in getGCDType()
H A DLegalizerHelper.cpp1915 const int GCD = std::gcd(SrcSize, WideSize); in widenScalarMergeValues() local
1916 LLT GCDTy = LLT::scalar(GCD); in widenScalarMergeValues()
1926 if (GCD == SrcSize) { in widenScalarMergeValues()
1942 const int PartsPerGCD = WideSize / GCD; in widenScalarMergeValues()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp5599 unsigned GCD = std::gcd(VTNumElts, WidenNumElts); in WidenVecRes_EXTRACT_SUBVECTOR() local
5600 assert((IdxVal % GCD) == 0 && "Expected Idx to be a multiple of the broken " in WidenVecRes_EXTRACT_SUBVECTOR()
5603 ElementCount::getScalable(GCD)); in WidenVecRes_EXTRACT_SUBVECTOR()
5608 for (; I < VTNumElts / GCD; ++I) in WidenVecRes_EXTRACT_SUBVECTOR()
5611 DAG.getVectorIdxConstant(IdxVal + I * GCD, dl))); in WidenVecRes_EXTRACT_SUBVECTOR()
5612 for (; I < WidenNumElts / GCD; ++I) in WidenVecRes_EXTRACT_SUBVECTOR()
6225 unsigned GCD = std::gcd(VTNumElts, WidenNumElts); in WidenVecRes_VECTOR_REVERSE() local
6227 ElementCount::getScalable(GCD)); in WidenVecRes_VECTOR_REVERSE()
6228 assert((IdxVal % GCD) == 0 && "Expected Idx to be a multiple of the broken " in WidenVecRes_VECTOR_REVERSE()
6232 for (; i < VTNumElts / GCD; ++i) in WidenVecRes_VECTOR_REVERSE()
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dmap380 … 78~ZIP, RGN or SRF bitmap; 148~ZIP or JAR; 249~display firmware; 251~WiFi or GCD firmware; 255~ZIP
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp3618 const UnnamedGlobalConstantDecl *GCD) { in GetAddrOfUnnamedGlobalConstantDecl() argument
3619 CharUnits Alignment = getContext().getTypeAlignInChars(GCD->getType()); in GetAddrOfUnnamedGlobalConstantDecl()
3622 Entry = &UnnamedGlobalConstantDeclMap[GCD]; in GetAddrOfUnnamedGlobalConstantDecl()
3629 const APValue &V = GCD->getValue(); in GetAddrOfUnnamedGlobalConstantDecl()
3632 Init = Emitter.emitForInitializer(V, GCD->getType().getAddressSpace(), in GetAddrOfUnnamedGlobalConstantDecl()
3633 GCD->getType()); in GetAddrOfUnnamedGlobalConstantDecl()
H A DCGExprConstant.cpp2148 if (const auto *GCD = dyn_cast<UnnamedGlobalConstantDecl>(D)) in tryEmitBase() local
2149 return CGM.GetAddrOfUnnamedGlobalConstantDecl(GCD); in tryEmitBase()
H A DCodeGenModule.h1033 GetAddrOfUnnamedGlobalConstantDecl(const UnnamedGlobalConstantDecl *GCD);
/freebsd/contrib/llvm-project/lldb/docs/
H A Dpython_api_enums.rst1223 libdispatch aka Grand Central Dispatch (GCD) queues can be either
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp4121 if (auto *GCD = dyn_cast<UnnamedGlobalConstantDecl>(D)) { in findCompleteObject() local
4126 return CompleteObject(LVal.Base, const_cast<APValue *>(&GCD->getValue()), in findCompleteObject()
4127 GCD->getType()); in findCompleteObject()
/freebsd/contrib/one-true-awk/testdir/
H A Dfunstack.in9852 @Article{Ragland:1973:GCD,