Home
last modified time | relevance | path

Searched refs:El (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/clang/lib/CodeGen/
H A DPatternInit.cpp80 for (unsigned El = 0; El != Struct.size(); ++El) in initializationPatternFor() local
81 Struct[El] = initializationPatternFor(CGM, StructTy->getElementType(El)); in initializationPatternFor()
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DThreading.inc174 GROUP_RELATIONSHIP &El = ProcInfo->Group;
175 for (unsigned J = 0; J < El.ActiveGroupCount; ++J) {
178 G.AllThreads = El.GroupInfo[J].MaximumProcessorCount;
179 G.UsableThreads = El.GroupInfo[J].ActiveProcessorCount;
181 G.Affinity = El.GroupInfo[J].ActiveProcessorMask;
190 PROCESSOR_RELATIONSHIP &El = ProcInfo->Processor;
191 assert(El.GroupCount == 1);
194 if (El.Flags & LTP_PC_SMT)
195 NumHyperThreads = std::bitset<64>(El.GroupMask[0].Mask).count();
196 unsigned I = El.GroupMask[0].Group;
/llvm-project-15.0.7/llvm/lib/Target/SPIRV/
H A DSPIRVGlobalRegistry.cpp526 SPIRVType *El = in createSPIRVType() local
528 return getOpTypeVector(cast<FixedVectorType>(Ty)->getNumElements(), El, in createSPIRVType()
532 SPIRVType *El = findSPIRVType(Ty->getArrayElementType(), MIRBuilder); in createSPIRVType() local
533 return getOpTypeArray(Ty->getArrayNumElements(), El, MIRBuilder, EmitIR); in createSPIRVType()
/llvm-project-15.0.7/llvm/tools/xcode-toolchain/
H A DCMakeLists.txt1 # OS X 10.11 El Capitan has just been released. One of the new features, System
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DEasilySwappableParametersCheck.cpp2022 bool operator()(E El) { return CalledWith.insert(std::move(El)).second; } in operator ()() argument
2024 bool calledWith(const E &El) const { return CalledWith.contains(El); } in calledWith()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp927 for (auto *El : Array->getElements()) { in dependencies() local
928 if (auto *Subrange = dyn_cast<DISubrange>(El)) { in dependencies()
941 } else if (auto *GenericSubrange = dyn_cast<DIGenericSubrange>(El)) { in dependencies()
/llvm-project-15.0.7/llvm/unittests/IR/
H A DIRBuilderTest.cpp205 ConstantInt *El = cast<ConstantInt>(VectorValue->getAggregateElement(i)); in TEST_F() local
206 EXPECT_EQ(El->getValue(), i); in TEST_F()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86InstructionSelector.cpp1564 auto OpEntryIt = llvm::find_if(OpTable, [RegTy](const DivRemEntry &El) { in selectDivRem() argument
1565 return El.SizeInBits == RegTy.getSizeInBits(); in selectDivRem()
/llvm-project-15.0.7/llvm/cmake/
H A Dconfig.guess560 if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
/llvm-project-15.0.7/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILBitcodeWriter.cpp141 for (auto El : PointerMap) in DXILBitcodeWriter() local
142 VE.EnumerateType(El.second); in DXILBitcodeWriter()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaChecking.cpp12147 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth); in GetValueRange() local
12148 R = IntRange::join(R, El); in GetValueRange()