Searched refs:Start (Results 76 - 100 of 331) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSourceMgr.h251 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
252 return Range.Start.getPointer() < Other.Range.Start.getPointer();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp88 // [Start, End].
90 unsigned Start, unsigned End) {
91 auto StartPos = Code.rfind('\n', Start);
119 int Start = R.getOffset() + Offset; local
120 int End = Start + R.getReplacementText().size();
131 violatesColumnLimit(Code, ColumnLimit, Start, End))
132 Ranges.emplace_back(Start, End - Start);
89 violatesColumnLimit(llvm::StringRef Code, unsigned ColumnLimit, unsigned Start, unsigned End) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DRangeSelector.cpp65 static SourceLocation findPreviousTokenStart(SourceLocation Start, argument
68 if (Start.isInvalid() || Start.isMacroID())
71 SourceLocation BeforeStart = Start.getLocWithOffset(-1);
80 static SourceLocation findPreviousTokenKind(SourceLocation Start, argument
85 SourceLocation L = findPreviousTokenStart(Start, SM, LangOpts);
96 Start = L;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp344 const Info *Start = OptionInfos.data() + FirstSearchableIndex; local
349 Start = std::lower_bound(Start, End, Name.data());
359 for (; Start != End; ++Start) {
362 for (; Start != End; ++Start)
363 if ((ArgSize = matchOption(Start, Str, IgnoreCase)))
365 if (Start == End)
368 Option Opt(Start, thi
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp205 CountValue *computeCount(MachineLoop *Loop, const MachineOperand *Start,
726 const MachineOperand *Start,
737 if (Start->isReg()) {
738 const MachineInstr *StartValInstr = MRI->getVRegDef(Start->getReg());
741 Start = &StartValInstr->getOperand(1);
750 if (!Start->isReg() && !Start->isImm())
774 if (loopCountMayWrapOrUnderFlow(Start, End, Loop->getLoopPreheader(), Loop,
778 if (Start->isImm() && End->isImm()) {
780 int64_t StartV = Start
725 computeCount(MachineLoop *Loop, const MachineOperand *Start, const MachineOperand *End, unsigned IVReg, int64_t IVBump, Comparison::Kind Cmp) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DNestedNameSpecifier.cpp474 static void Append(char *Start, char *End, char *&Buffer, unsigned &BufferSize, argument
476 if (Start == End)
479 if (BufferSize + (End - Start) > BufferCapacity) {
483 (unsigned)(BufferSize + (End - Start)));
492 assert(Buffer && Start && End && End > Start && "Illegal memory buffer copy");
493 memcpy(Buffer + BufferSize, Start, End - Start);
494 BufferSize += End - Start;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Core/
H A DReplacement.cpp52 Replacement::Replacement(const SourceManager &Sources, SourceLocation Start, argument
54 setFromSourceLocation(Sources, Start, Length, ReplacementText);
75 const SourceLocation Start = local
82 Start, ReplacementRange.getLength(), ReplacementText);
121 SourceLocation Start, unsigned Length,
124 Sources.getDecomposedLoc(Start);
139 std::pair<FileID, unsigned> Start = Sources.getDecomposedLoc(SpellingBegin); local
141 if (Start.first != End.first) return -1;
144 return End.second - Start.second;
120 setFromSourceLocation(const SourceManager &Sources, SourceLocation Start, unsigned Length, StringRef ReplacementText) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp86 // Start/End - A semi range that describes the span that this range covers.
87 // The range is closed at the start and open at the end: [Start, End).
88 int64_t Start, End; member in struct:__anon2732::MemsetRange
107 if (TheStores.size() >= 4 || End-Start >= 16) return true;
132 unsigned Bytes = unsigned(End-Start);
185 void addRange(int64_t Start, int64_t Size, Value *Ptr,
194 void MemsetRanges::addRange(int64_t Start, int64_t Size, Value *Ptr, argument
196 int64_t End = Start+Size;
199 Ranges, [=](const MemsetRange &O) { return O.End < Start; });
202 // with, or that Start <
[all...]
H A DMergedLoadStoreMotion.cpp120 bool isStoreSinkBarrierInRange(const Instruction &Start,
172 bool MergedLoadStoreMotion::isStoreSinkBarrierInRange(const Instruction &Start, argument
176 make_range(Start.getIterator(), End.getIterator()))
179 return AA->canInstructionRangeModRef(Start, End, Loc, ModRefInfo::ModRef);
/freebsd-11-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbinput.c625 char *Start; local
659 Start = String;
675 Start = String;
692 Start = String;
734 Start = String;
756 return (Start);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp515 return error(VReg.ID.SourceRange.Start,
532 VReg.Class.SourceRange.Start,
542 return error(VReg.Class.SourceRange.Start,
683 return error(Object.ID.SourceRange.Start,
690 return error(Object.ID.SourceRange.Start,
709 return error(Name.SourceRange.Start,
715 return error(Object.ID.SourceRange.Start,
728 return error(Object.ID.SourceRange.Start,
779 return Parser.error(Source.SourceRange.Start,
827 return error(YamlConstant.Value.SourceRange.Start,
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/hardware/
H A Dhwvalid.c301 if ((Address <= PortInfo->End) && (LastAddress >= PortInfo->Start))
310 PortInfo->Start, PortInfo->End));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBStringTable.cpp117 uint32_t Start = Hash % Count; local
122 uint32_t Index = (Start + I) % Count;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DRewriter.h141 bool RemoveText(SourceLocation Start, unsigned Length,
158 bool ReplaceText(SourceLocation Start, unsigned OrigLength,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyMCCodeEmitter.cpp62 uint64_t Start = OS.tell(); local
164 Fixups.push_back(MCFixup::create(OS.tell() - Start, MO.getExpr(),
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h191 uint8_t Start = ((Opcode1 & 0xf0) >> 4); local
193 PrintRegisters((((1 << (Count + 1)) - 1) << Start), "d");
213 uint8_t Start = ((Opcode1 & 0xf0) >> 4); local
215 PrintRegisters((((1 << (Count + 1)) - 1) << Start), "wR");
234 uint8_t Start = 16 + ((Opcode1 & 0xf0) >> 4); local
236 PrintRegisters((((1 << (Count + 1)) - 1) << Start), "d");
244 uint8_t Start = ((Opcode1 & 0xf0) >> 4); local
246 PrintRegisters((((1 << (Count + 1)) - 1) << Start), "d");
/freebsd-11-stable/contrib/wpa/wpa_supplicant/examples/
H A Dwpas-dbus-new-wps.py74 wps.Start({'Role': 'enrollee', 'Type': 'pbc'})
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLegacyDivergenceAnalysis.cpp109 // Computes the influence region from Start to End. This region includes all
110 // basic blocks on any simple path from Start to End.
111 void computeInfluenceRegion(BasicBlock *Start, BasicBlock *End,
242 BasicBlock *Start, BasicBlock *End,
244 assert(PDT.properlyDominates(End, Start) &&
245 "End does not properly dominate Start");
247 // The influence region starts from the end of "Start" to the beginning of
248 // "End". Therefore, "Start" should not be in the region unless "Start" is in
251 addSuccessorsToInfluenceRegion(Start, En
241 computeInfluenceRegion( BasicBlock *Start, BasicBlock *End, DenseSet<BasicBlock *> &InfluenceRegion) argument
[all...]
/freebsd-11-stable/lib/libefivar/
H A Duefi-dputil.c105 CONST EFI_DEVICE_PATH_PROTOCOL *Start; local
118 Start = DevicePath;
126 return ((UINTN) DevicePath - (UINTN) Start) + DevicePathNodeLength (DevicePath);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIVDescriptors.h91 RecurrenceDescriptor(Value *Start, Instruction *Exit, RecurrenceKind K, argument
95 : StartValue(Start), LoopExitInstr(Exit), Kind(K), FMF(FMF),
348 InductionDescriptor(Value *Start, InductionKind K, const SCEV *Step,
352 /// Start value.
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DWhitespaceManager.cpp80 SourceLocation Start = Tok.getStartOfNonWhitespace().getLocWithOffset(Offset);
83 SourceRange(Start, Start.getLocWithOffset(ReplaceChars)), Spaces,
234 AlignTokenSequence(unsigned Start, unsigned End, unsigned Column, F &&Matches, argument
252 for (unsigned i = Start; i != End; ++i) {
261 while (PreviousNonComment > Start &&
264 if (i != Start && Changes[i].indentAndNestingLevel() >
289 (ScopeStart > Start + 1 &&
513 // Start and end of the token sequence we're processing.
692 void WhitespaceManager::alignTrailingComments(unsigned Start, unsigne argument
734 alignEscapedNewlines(unsigned Start, unsigned End, unsigned Column) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp115 std::error_code visitFixitRecord(const serialized_diags::Location &Start,
119 visitSourceRangeRecord(const serialized_diags::Location &Start,
183 /// Start a DIAG block.
807 SDiagsMerger::visitSourceRangeRecord(const serialized_diags::Location &Start, argument
810 RECORD_SOURCE_RANGE, FileLookup[Start.FileID], Start.Line, Start.Col,
811 Start.Offset, FileLookup[End.FileID], End.Line, End.Col, End.Offset};
831 SDiagsMerger::visitFixitRecord(const serialized_diags::Location &Start, argument
834 RecordData::value_type Record[] = {RECORD_FIXIT, FileLookup[Start
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DInlineInfo.cpp131 const auto ChildBaseAddr = Inline.Ranges[0].Start;
204 const auto ChildBaseAddr = Inline.Ranges[0].Start;
241 const uint64_t ChildBaseAddr = Ranges[0].Start;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveRegMatrix.cpp209 bool LiveRegMatrix::checkInterference(SlotIndex Start, SlotIndex End, argument
211 // Construct artificial live range containing only one segment [Start, End).
212 VNInfo valno(0, Start);
213 LiveRange::Segment Seg(Start, End, &valno);
H A DLiveRangeShrink.cpp99 /// from instruction \p Start.
100 static void BuildInstOrderMap(MachineBasicBlock::iterator Start, argument
104 for (MachineInstr &I : make_range(Start, Start->getParent()->end()))

Completed in 501 milliseconds

1234567891011>>