Searched refs:Num (Results 76 - 100 of 104) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DItaniumMangle.cpp1593 unsigned Num = Func->getNumParams() - Parm->getFunctionScopeIndex(); local
1594 if (Num > 1)
1595 mangleNumber(Num - 2);
1622 unsigned Num = Func->getNumParams() - Parm->getFunctionScopeIndex(); local
1623 if (Num > 1)
1624 mangleNumber(Num - 2);
H A DStmtProfile.cpp500 if (auto *Num = C->getNumForLoops())
501 Profiler->VisitStmt(Num);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3049 unsigned Num = C.getLimitedValue(BitWidth); local
3050 if (Num != BitWidth && II->hasOneUse()) {
3052 APInt Mask1 = IsTrailing ? APInt::getLowBitsSet(BitWidth, Num + 1)
3053 : APInt::getHighBitsSet(BitWidth, Num + 1);
3055 ? APInt::getOneBitSet(BitWidth, Num)
3056 : APInt::getOneBitSet(BitWidth, BitWidth - Num - 1);
3121 unsigned Num = C.getLimitedValue(); local
3122 APInt Limit = APInt::getOneBitSet(BitWidth, BitWidth - Num - 1);
3130 unsigned Num = C.getLimitedValue(); local
3131 APInt Limit = APInt::getLowBitsSet(BitWidth, BitWidth - Num);
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3528 void setNumPositiveBits(unsigned Num) {
3529 EnumDeclBits.NumPositiveBits = Num;
3530 assert(EnumDeclBits.NumPositiveBits == Num && "can't store this bitcount");
3535 void setNumNegativeBits(unsigned Num) { EnumDeclBits.NumNegativeBits = Num; }
H A DASTContext.h689 template <typename T> T *Allocate(size_t Num = 1) const {
690 return static_cast<T *>(Allocate(Num * sizeof(T), alignof(T)));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h102 SDVTListNode(const FoldingSetNodeIDRef ID, const EVT *VT, unsigned int Num) : argument
103 FastID(ID), VTs(VT), NumVTs(Num) {
1382 unsigned Num);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp189 unsigned Num, unsigned Diag,
191 if (Comp(getNumAttributeArgs(AL), Num)) {
192 S.Diag(AL.getLoc(), Diag) << AL << Num; local
199 /// Check if the attribute has exactly as many args as Num. May
201 static bool checkAttributeNumArgs(Sema &S, const ParsedAttr &AL, unsigned Num) { argument
202 return checkAttributeNumArgsImpl(S, AL, Num,
207 /// Check if the attribute has at least as many args as Num. May
210 unsigned Num) {
211 return checkAttributeNumArgsImpl(S, AL, Num,
216 /// Check if the attribute has at most as many args as Num
188 checkAttributeNumArgsImpl(Sema &S, const ParsedAttr &AL, unsigned Num, unsigned Diag, Compare Comp) argument
209 checkAttributeAtLeastNumArgs(Sema &S, const ParsedAttr &AL, unsigned Num) argument
218 checkAttributeAtMostNumArgs(Sema &S, const ParsedAttr &AL, unsigned Num) argument
5600 unsigned Num = NumParams.getLimitedValue(255); local
[all...]
H A DSemaChecking.cpp6346 /// TheCall is a constant expression is a multiple of Num..
6348 unsigned Num) {
6360 if (Result.getSExtValue() % Num != 0)
6362 << Num << Arg->getSourceRange();
9389 const auto *Num = dyn_cast<IntegerLiteral>(MTE->getSubExpr());
9390 if (!Num) return false;
9391 if (Num->getValue() != 0) return false;
6347 SemaBuiltinConstantArgMultiple(CallExpr *TheCall, int ArgNum, unsigned Num) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp783 unsigned Num = Ty->getVectorNumElements(); local
787 return BaseT::getScalarizationOverhead(Ty, Args) + Num * Cost;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64LoadStoreOptimizer.cpp1143 static int alignTo(int Num, int PowOf2) {
1144 return (Num + PowOf2 - 1) & ~(PowOf2 - 1);
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp1104 int Num = Op->getValueAsInt("num"), Denom = Op->getValueAsInt("denom");
1105 unsigned DesiredSize = STKind->sizeInBits() * Num / Denom;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1939 unsigned Num = I.getNumIndices();
1942 for (unsigned i = 0 ; i < Num; ++i) {
1984 unsigned Num = I.getNumIndices();
1987 for (unsigned i = 0 ; i < Num; ++i) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp4555 const SDValue &Num = N->getOperand(0); local
4558 for (const SDNode *U : Num->uses()) {
4559 if (U->getOpcode() == DivOpc && U->getOperand(0) == Num &&
4561 // Num % Den -> Num - (Num / Den) * Den
4562 return DAG.getNode(ISD::SUB, DL, VT, Num,
4564 DAG.getNode(DivOpc, DL, VT, Num, Den),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp524 unsigned Num = i % Scale; local
526 Mask[BlockLen*Num + Off] = i;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSplitKit.cpp78 unsigned Num = MBB.getNumber(); local
79 std::pair<SlotIndex, SlotIndex> &LIP = LastInsertPoint[Num];
H A DRegisterCoalescer.cpp2425 ConflictResolution getResolution(unsigned Num) const {
2426 return Vals[Num].Resolution;
/freebsd-11-stable/stand/pc98/cdboot/
H A Dcdboot.S98 .set NUM_RETRIES,3 # Num times to retry
421 load_sizeok: movzbw %al,%cx # Num sectors to read
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h4071 StringView Num = parseNumber(); local
4074 return make<FunctionParam>(Num);
4082 StringView Num = parseNumber(); local
4085 return make<FunctionParam>(Num);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp2066 uint32_t Num; local
2069 Num = Sect.nreloc;
2072 Num = Sect.nreloc;
2077 Ret.d.b = Num;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1236 for (unsigned Idx = 0, Num = PN.getNumIncomingValues(); Idx != Num; ++Idx) {
1287 for (unsigned Idx = 0, Num = PN.getNumIncomingValues(); Idx != Num; ++Idx) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp1621 unsigned Num; local
1624 .getAsInteger(10, Num))
1626 EmitNops(*OutStreamer, Num, Subtarget->is64Bit(), getSubtargetInfo());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp1864 SDValue Num = Op.getOperand(0); local
1899 // Quotient = mulhu(Tmp0, Num)
1900 SDValue Quotient = DAG.getNode(ISD::MULHU, DL, VT, Tmp0, Num);
1905 // Remainder = Num - Num_S_Remainder
1906 SDValue Remainder = DAG.getNode(ISD::SUB, DL, VT, Num, Num_S_Remainder);
1913 // Remainder_GE_Zero = (Num >= Num_S_Remainder ? -1 : 0)
1914 SDValue Remainder_GE_Zero = DAG.getSelectCC(DL, Num,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributor.cpp4437 auto *Num = cast<ConstantInt>(MallocCall->getOperand(0)); variable
4439 APInt TotalSize = SizeT->getValue() * Num->getValue();
4594 if (auto *Num = dyn_cast<ConstantInt>(I.getOperand(0)))
4596 if ((Size->getValue().umul_ov(Num->getValue(), Overflow))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp324 VRegInfo &PerFunctionMIParsingState::getVRegInfo(unsigned Num) { argument
325 auto I = VRegInfos.insert(std::make_pair(Num, nullptr));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1518 unsigned Num = VTy->getVectorNumElements(); local
1520 for (unsigned Idx = 0; Idx < Num; ++Idx) {

Completed in 448 milliseconds

12345