| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | AssignmentTrackingAnalysis.h | 80 auto Span = VarLocsBeforeInst.lookup(Before); in locs_end() local 82 std::advance(It, Span.first); in locs_end() 88 auto Span = VarLocsBeforeInst.lookup(Before); 90 std::advance(It, Span.second); 72 auto Span = VarLocsBeforeInst.lookup(Before); locs_begin() local
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64CompressJumpTables.cpp | 139 int Span = MaxOffset - MinOffset; in compressJumpTable() local 141 if (isUInt<8>(Span / 4)) { in compressJumpTable() 147 if (isUInt<16>(Span / 4)) { in compressJumpTable()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemoryBuiltins.cpp | 756 OffsetSpan Span = computeImpl(V); in compute() local 760 if (Span.knownAfter() && !Span.knownBefore() && in compute() 762 Span.Before = APInt::getZero(Span.After.getBitWidth()); in compute() 764 if (!Span.bothKnown()) in compute() 767 return {Span.Before + Span.After, Span.Before}; in compute()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | UnsafeBufferUsage.h | 55 Span, // We recommend replacing the variable with std::span. enumerator
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfDebug.cpp | 3473 ArangeSpan Span; in emitDebugARanges() local 3474 Span.Start = Cur.Sym; in emitDebugARanges() 3475 Span.End = nullptr; in emitDebugARanges() 3477 Spans[Cur.CU].push_back(Span); in emitDebugARanges() 3493 ArangeSpan Span; in emitDebugARanges() local 3494 Span.Start = StartSym; in emitDebugARanges() 3495 Span.End = Cur.Sym; in emitDebugARanges() 3497 Spans[Prev.CU].push_back(Span); in emitDebugARanges() 3559 for (const ArangeSpan &Span : List) { in emitDebugARanges() local 3560 Asm->emitLabelReference(Span.Start, PtrSize); in emitDebugARanges() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | UnsafeBufferUsage.cpp | 2690 case FixitStrategy::Kind::Span: in getFixits() 2691 if (S.lookup(RightVD) == FixitStrategy::Kind::Span) in getFixits() 2729 if (S.lookup(LeftVD) == FixitStrategy::Kind::Span) { in getFixits() 2746 case FixitStrategy::Kind::Span: in getFixits() 2747 if (S.lookup(RightVD) == FixitStrategy::Kind::Span) in getFixits() 2777 case FixitStrategy::Kind::Span: { in getFixits() 2808 case FixitStrategy::Kind::Span: in getFixits() 2922 if (VD && s.lookup(VD) == FixitStrategy::Kind::Span) { in getFixits() 2985 case FixitStrategy::Kind::Span: { in getFixits() 3032 case FixitStrategy::Kind::Span: { in getFixits() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CommentHTMLTags.td | 21 def Span : Tag<"span">;
|
| /freebsd/share/misc/ |
| H A D | scsi_modes | 307 {Correction Span} i1 341 {Verify Correction Span} i1
|
| H A D | usb_vendors | 14578 0c7a Wing-Span Enterprise Co., Ltd
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPURegisterBankInfo.cpp | 1419 MachineInstrSpan Span(MII, &B.getMBB()); in applyMappingSBufferLoad() local 1451 B.setInstr(*Span.begin()); in applyMappingSBufferLoad() 1457 executeInWaterfallLoop(B, make_range(Span.begin(), Span.end()), in applyMappingSBufferLoad() 2922 MachineInstrSpan Span(MII, &B.getMBB()); in applyMappingImpl() local 2945 B.setInstr(*Span.begin()); in applyMappingImpl() 2947 executeInWaterfallLoop(B, make_range(Span.begin(), Span.end()), in applyMappingImpl() 3035 MachineInstrSpan Span(MachineBasicBlock::iterator(&MI), &B.getMBB()); in applyMappingImpl() local 3068 B.setInstr(*Span.begin()); in applyMappingImpl() 3073 executeInWaterfallLoop(B, make_range(Span.begin(), Span.end()), in applyMappingImpl()
|
| /freebsd/lib/libc/net/ |
| H A D | protocols | 80 wsn 74 WSN # Wang Span Network
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyCFG.cpp | 693 ConstantRange Span = in matchInstruction() local 700 Span = Span.subtract(*RHSC); in matchInstruction() 708 Span = Span.inverse(); in matchInstruction() 711 if (Span.isSizeLargerThan(8) || Span.isEmptySet()) { in matchInstruction() 720 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp) in matchInstruction()
|
| /freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.cpp | 4145 Value *Span; in calculateCanonicalLoopTripCount() local 4157 Span = Builder.CreateSub(UB, LB, "", false, true); in calculateCanonicalLoopTripCount() 4161 Span = Builder.CreateSub(Stop, Start, "", true); in calculateCanonicalLoopTripCount() 4168 CountIfLooping = Builder.CreateAdd(Builder.CreateUDiv(Span, Incr), One); in calculateCanonicalLoopTripCount() 4172 Builder.CreateUDiv(Builder.CreateSub(Span, One), Incr), One); in calculateCanonicalLoopTripCount() 4173 Value *OneCmp = Builder.CreateICmp(CmpInst::ICMP_ULE, Span, Incr); in calculateCanonicalLoopTripCount() 4193 Value *Span = Builder.CreateMul(IV, Step); in createCanonicalLoop() local 4194 Value *IndVar = Builder.CreateAdd(Span, Start); in createCanonicalLoop()
|
| /freebsd/sys/contrib/dev/acpica/include/ |
| H A D | actbl2.h | 1017 UINT64 Span; /* Length of memory range */ member
|
| /freebsd/sys/contrib/dev/acpica/common/ |
| H A D | dmtbinfo2.c | 371 {ACPI_DMT_UINT64, ACPI_IORT3_OFFSET (Span), "Span", 0},
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | AnalysisBasedWarnings.cpp | 2583 case clang::FixitStrategy::Kind::Span: in handleUnsafeVariableGroup()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.cpp | 5610 static bool isLocalRepeatingShuffle(ArrayRef<int> Mask, int Span) { in isLocalRepeatingShuffle() argument 5616 if ((M / Span) != (int)(I / Span)) in isLocalRepeatingShuffle() 5618 int SpanIdx = I % Span; in isLocalRepeatingShuffle() 5619 int Expected = M % Span; in isLocalRepeatingShuffle() 5627 static bool isLowSourceShuffle(ArrayRef<int> Mask, int Span) { in isLowSourceShuffle() argument 5628 return all_of(Mask, [&](const auto &Idx) { return Idx == -1 || Idx < Span; }); in isLowSourceShuffle() 5634 static bool isSpanSplatShuffle(ArrayRef<int> Mask, int Span) { in isSpanSplatShuffle() argument 5640 int SpanIdx = I % Span; in isSpanSplatShuffle()
|
| /freebsd/contrib/one-true-awk/testdir/ |
| H A D | funstack.ok | 2992 Span-Dependent Instructions . . . . . . 300--308
|
| H A D | funstack.in | 22783 title = "Assembling Code for machines with Span-Dependent Instructions",
|