Searched refs:GCD (Results 1 – 12 of 12) sorted by relevance
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/MCA/ |
| HD | Support.cpp | 30 unsigned GCD = std::gcd(Denominator, RHS.Denominator); in operator +=() local 31 unsigned LCM = (Denominator * RHS.Denominator) / GCD; in operator +=()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| HD | BasicAliasAnalysis.cpp | 1244 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()
|
| HD | ScalarEvolution.cpp | 7817 unsigned GCD = std::min(MulZeros, TZ); in createSCEV() local 7818 APInt DivAmt = APInt::getOneBitSet(BitWidth, TZ - GCD); in createSCEV() 7820 MulOps.push_back(getConstant(OpC->getAPInt().lshr(GCD))); in createSCEV()
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| HD | Utils.cpp | 1270 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()
|
| HD | LegalizerHelper.cpp | 1915 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-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| HD | LegalizeVectorTypes.cpp | 5603 unsigned GCD = std::gcd(VTNumElts, WidenNumElts); in WidenVecRes_EXTRACT_SUBVECTOR() local 5604 assert((IdxVal % GCD) == 0 && "Expected Idx to be a multiple of the broken " in WidenVecRes_EXTRACT_SUBVECTOR() 5607 ElementCount::getScalable(GCD)); in WidenVecRes_EXTRACT_SUBVECTOR() 5612 for (; I < VTNumElts / GCD; ++I) in WidenVecRes_EXTRACT_SUBVECTOR() 5615 DAG.getVectorIdxConstant(IdxVal + I * GCD, dl))); in WidenVecRes_EXTRACT_SUBVECTOR() 5616 for (; I < WidenNumElts / GCD; ++I) in WidenVecRes_EXTRACT_SUBVECTOR() 6229 unsigned GCD = std::gcd(VTNumElts, WidenNumElts); in WidenVecRes_VECTOR_REVERSE() local 6231 ElementCount::getScalable(GCD)); in WidenVecRes_VECTOR_REVERSE() 6232 assert((IdxVal % GCD) == 0 && "Expected Idx to be a multiple of the broken " in WidenVecRes_VECTOR_REVERSE() 6236 for (; i < VTNumElts / GCD; ++i) in WidenVecRes_VECTOR_REVERSE() [all …]
|
| /freebsd-13-stable/contrib/file/magic/Magdir/ |
| HD | map | 379 … 78~ZIP, RGN or SRF bitmap; 148~ZIP or JAR; 249~display firmware; 251~WiFi or GCD firmware; 255~ZIP
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| HD | CodeGenModule.cpp | 3618 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()
|
| HD | CGExprConstant.cpp | 2148 if (const auto *GCD = dyn_cast<UnnamedGlobalConstantDecl>(D)) in tryEmitBase() local 2149 return CGM.GetAddrOfUnnamedGlobalConstantDecl(GCD); in tryEmitBase()
|
| HD | CodeGenModule.h | 1033 GetAddrOfUnnamedGlobalConstantDecl(const UnnamedGlobalConstantDecl *GCD);
|
| /freebsd-13-stable/contrib/llvm-project/lldb/docs/ |
| HD | python_api_enums.rst | 1223 libdispatch aka Grand Central Dispatch (GCD) queues can be either
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/AST/ |
| HD | ExprConstant.cpp | 4121 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()
|