| /NextBSD/contrib/ntp/lib/isc/win32/ |
| HD | libisc.dsp | 99 # End Source File 103 # End Source File 107 # End Source File 111 # End Source File 115 # End Source File 119 # End Source File 123 # End Source File 127 # End Source File 131 # End Source File 135 # End Source File [all …]
|
| /NextBSD/contrib/apr-util/test/ |
| HD | testall.dsw | 28 End Project Dependency 43 End Project Dependency 46 End Project Dependency 61 End Project Dependency 64 End Project Dependency 79 End Project Dependency 82 End Project Dependency 97 End Project Dependency 100 End Project Dependency 115 End Project Dependency [all …]
|
| /NextBSD/contrib/apr-util/ |
| HD | aprutil.dsw | 28 End Project Dependency 31 End Project Dependency 46 End Project Dependency 49 End Project Dependency 64 End Project Dependency 67 End Project Dependency 82 End Project Dependency 85 End Project Dependency 100 End Project Dependency 103 End Project Dependency [all …]
|
| /NextBSD/contrib/apr/ |
| HD | apr.dsp | 195 # End Source File 196 # End Group 203 # End Source File 204 # End Group 212 # End Source File 213 # End Group 220 # End Source File 224 # End Source File 228 # End Source File 232 # End Source File [all …]
|
| HD | libapr.dsp | 66 # End Special Build Tool 98 # End Special Build Tool 130 # End Special Build Tool 162 # End Special Build Tool 194 # End Special Build Tool 226 # End Special Build Tool 247 # End Source File 248 # End Group 255 # End Source File 256 # End Group [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Analysis/Support/ |
| HD | BumpVector.h | 54 T *Begin, *End, *Capacity; variable 58 : Begin(nullptr), End(nullptr), Capacity(nullptr) { in BumpVector() 65 destroy_range(Begin, End); in ~BumpVector() 86 iterator end() { return End; } in end() 87 const_iterator end() const { return End; } in end() 95 bool empty() const { return Begin == End; } in empty() 96 size_type size() const { return End-Begin; } in size() 99 assert(Begin + idx < End); 103 assert(Begin + idx < End); 122 --End; in pop_back() [all …]
|
| /NextBSD/sys/contrib/dev/acpica/components/utilities/ |
| HD | utprint.c | 70 const char *End, 76 char *End, 146 const char *End, in AcpiUtBoundStringOutput() argument 150 if (String < End) in AcpiUtBoundStringOutput() 298 char *End, in AcpiUtFormatNumber() argument 381 String = AcpiUtBoundStringOutput (String, End, ' '); in AcpiUtFormatNumber() 386 String = AcpiUtBoundStringOutput (String, End, Sign); in AcpiUtFormatNumber() 390 String = AcpiUtBoundStringOutput (String, End, '0'); in AcpiUtFormatNumber() 393 String = AcpiUtBoundStringOutput (String, End, in AcpiUtFormatNumber() 401 String = AcpiUtBoundStringOutput (String, End, Zero); in AcpiUtFormatNumber() [all …]
|
| /NextBSD/contrib/llvm/lib/Support/ |
| HD | StreamingMemoryObject.cpp | 20 RawMemoryObject(const unsigned char *Start, const unsigned char *End) : in RawMemoryObject() argument 21 FirstChar(Start), LastChar(End) { in RawMemoryObject() 55 uint64_t End = Address + Size; in readBytes() local 56 if (End > BufferSize) in readBytes() 57 End = BufferSize; in readBytes() 59 assert(static_cast<int64_t>(End - Address) >= 0); in readBytes() 60 Size = End - Address; in readBytes() 98 uint64_t End = Address + Size; in readBytes() local 99 if (End > MaxAddress) in readBytes() 100 End = MaxAddress; in readBytes() [all …]
|
| /NextBSD/sys/contrib/dev/acpica/compiler/ |
| HD | dtio.c | 125 char *End; in DtTrim() local 141 End = String + strlen (String) - 1; in DtTrim() 145 while ((Start <= End) && ((*Start == ' ') || (*Start == '\t'))) in DtTrim() 152 while (End >= Start) in DtTrim() 154 if (*End == '\r' || *End == '\n') in DtTrim() 156 End--; in DtTrim() 160 if (*End != ' ') in DtTrim() 165 End--; in DtTrim() 174 if (*End == '\"') in DtTrim() 176 End--; in DtTrim() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | ASTVector.h | 35 T *Begin, *End; 38 void setEnd(T *P) { this->End = P; } in setEnd() 48 ASTVector() : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {} in ASTVector() 50 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) { in ASTVector() 51 O.Begin = O.End = nullptr; in ASTVector() 57 : Begin(nullptr), End(nullptr), Capacity(nullptr, false) { in ASTVector() 65 swap(End, O.End); 73 destroy_range(Begin, End); in ~ASTVector() 94 iterator end() { return End; } in end() 95 const_iterator end() const { return End; } in end() [all …]
|
| /NextBSD/contrib/llvm/include/llvm/ADT/ |
| HD | StringExtras.h | 169 inline std::string join_impl(IteratorT Begin, IteratorT End, in join_impl() argument 172 if (Begin == End) in join_impl() 176 while (++Begin != End) { in join_impl() 184 inline std::string join_impl(IteratorT Begin, IteratorT End, in join_impl() argument 187 if (Begin == End) in join_impl() 190 size_t Len = (std::distance(Begin, End) - 1) * Separator.size(); in join_impl() 191 for (IteratorT I = Begin; I != End; ++I) in join_impl() 195 while (++Begin != End) { in join_impl() 205 inline std::string join(IteratorT Begin, IteratorT End, StringRef Separator) { in join() argument 207 return join_impl(Begin, End, Separator, tag()); in join()
|
| /NextBSD/contrib/llvm/include/llvm/Support/ |
| HD | Allocator.h | 145 : CurPtr(nullptr), End(nullptr), BytesAllocated(0), Allocator() {} in BumpPtrAllocatorImpl() 148 : CurPtr(nullptr), End(nullptr), BytesAllocated(0), in BumpPtrAllocatorImpl() 154 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), in BumpPtrAllocatorImpl() 158 Old.CurPtr = Old.End = nullptr; in BumpPtrAllocatorImpl() 174 End = RHS.End; 180 RHS.CurPtr = RHS.End = nullptr; 199 End = CurPtr + SlabSize; in Reset() 218 if (Adjustment + Size <= size_t(End - CurPtr)) { in Allocate() 244 assert(AlignedAddr + Size <= (uintptr_t)End && in Allocate() 283 char *End; variable [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Rewrite/Core/ |
| HD | RewriteRope.h | 67 unsigned End) in RopePiece() 68 : StrData(std::move(Str)), StartOffs(Start), EndOffs(End) {} in RopePiece() 190 void assign(const char *Start, const char *End) { in assign() argument 192 if (Start != End) in assign() 193 Chunks.insert(0, MakeRopeString(Start, End)); in assign() 196 void insert(unsigned Offset, const char *Start, const char *End) { in insert() argument 198 if (Start == End) return; in insert() 199 Chunks.insert(Offset, MakeRopeString(Start, End)); in insert() 209 RopePiece MakeRopeString(const char *Start, const char *End);
|
| /NextBSD/contrib/compiler-rt/lib/msan/ |
| HD | msan_report.cc | 36 const char *End() { return Default(); } in End() function in __msan::Decorator 50 d.End()); in DescribeStackOrigin() 69 d.End()); in DescribeOrigin() 81 d.Origin(), d.End()); in DescribeOrigin() 85 d.Origin(), d.End()); in DescribeOrigin() 89 d.End()); in DescribeOrigin() 92 Printf(" %sUninitialized value was created%s\n", d.Origin(), d.End()); in DescribeOrigin() 107 Printf("%s", d.End()); in ReportUMR() 147 Printf("%s", d.End()); in ReportAtExitStatistics() 206 Printf("%s", d.End()); in DescribeMemoryRange() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/ |
| HD | DiagnosticRenderer.cpp | 333 SourceLocation Begin = I->getBegin(), End = I->getEnd(); in mapDiagnosticRanges() local 337 FileID EndFileID = SM->getFileID(End); in mapDiagnosticRanges() 351 while (End.isMacroID() && !BeginLocsMap.count(EndFileID)) { in mapDiagnosticRanges() 352 End = SM->getImmediateExpansionRange(End).second; in mapDiagnosticRanges() 353 EndFileID = SM->getFileID(End); in mapDiagnosticRanges() 355 if (End.isMacroID()) { in mapDiagnosticRanges() 364 End = SM->getImmediateSpellingLoc(End); in mapDiagnosticRanges() 367 End = SM->getImmediateExpansionRange(End).second; in mapDiagnosticRanges() 370 if (BeginFileID != SM->getFileID(End)) { in mapDiagnosticRanges() 374 Begin = End = SourceLocation(); in mapDiagnosticRanges() [all …]
|
| /NextBSD/contrib/llvm/lib/CodeGen/ |
| HD | LiveRangeCalc.cpp | 203 SlotIndex Start, End; in updateFromLiveIns() local 204 std::tie(Start, End) = Indexes->getMBBRange(MBB); in updateFromLiveIns() 208 End = I.Kill; in updateFromLiveIns() 216 Updater.add(Start, End, I.Value); in updateFromLiveIns() 307 SlotIndex Start, End; in findReachingDefs() local 308 std::tie(Start, End) = Indexes->getMBBRange(Pred); in findReachingDefs() 312 VNInfo *VNI = LR.extendInBlock(Start, End); in findReachingDefs() 342 SlotIndex Start, End; in findReachingDefs() local 343 std::tie(Start, End) = Indexes->getMBBRange(*I); in findReachingDefs() 346 End = Use; in findReachingDefs() [all …]
|
| HD | SlotIndexes.cpp | 148 MachineBasicBlock::iterator End) { in repairIndexesInRange() argument 155 while (End != MBB->end() && !hasIndex(End)) in repairIndexesInRange() 156 ++End; in repairIndexesInRange() 166 if (End == MBB->end()) in repairIndexesInRange() 169 endIdx = getInstructionIndex(End); in repairIndexesInRange() 177 MachineBasicBlock::iterator MBBI = End; in repairIndexesInRange() 208 for (MachineBasicBlock::iterator I = End; I != Begin;) { in repairIndexesInRange()
|
| HD | SplitKit.cpp | 503 SlotIndex End = LIS.getMBBEndIdx(&MBB); in enterIntvAtEnd() local 504 SlotIndex Last = End.getPrevSlot(); in enterIntvAtEnd() 509 return End; in enterIntvAtEnd() 514 RegAssign.insert(VNI->def, End, OpenIdx); in enterIntvAtEnd() 524 void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) { in useIntv() argument 526 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):"); in useIntv() 527 RegAssign.insert(Start, End, OpenIdx); in useIntv() 599 void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) { in overlapIntv() argument 602 assert(ParentVNI == Edit->getParent().getVNInfoBefore(End) && in overlapIntv() 604 assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) && in overlapIntv() [all …]
|
| /NextBSD/contrib/llvm/lib/CodeGen/AsmPrinter/ |
| HD | DebugLocEntry.h | 27 const MCSymbol *End; variable 87 : Begin(B), End(E) { in DebugLocEntry() 101 End = Next.End; in MergeValues() 114 if ((End == Next.Begin && Values == Next.Values)) { in MergeRanges() 115 End = Next.End; in MergeRanges() 122 const MCSymbol *getEndSym() const { return End; } in getEndSym()
|
| /NextBSD/contrib/llvm/tools/clang/lib/ARCMigrate/ |
| HD | TransformActions.cpp | 66 FullSourceLoc Begin, End; member 73 End = FullSourceLoc(getLocForEndOfToken(endLoc, srcMgr, PP), srcMgr); in CharRange() 76 End = FullSourceLoc(srcMgr.getExpansionLoc(endLoc), srcMgr); in CharRange() 78 assert(Begin.isValid() && End.isValid()); in CharRange() 82 if (End.isBeforeInTranslationUnitThan(RHS.Begin)) in compareWith() 84 if (RHS.End.isBeforeInTranslationUnitThan(Begin)) in compareWith() 87 !RHS.End.isBeforeInTranslationUnitThan(End)) in compareWith() 90 RHS.End.isBeforeInTranslationUnitThan(End)) in compareWith() 510 if (!SM.isBeforeInTranslationUnit(loc, I->End)) in addInsertion() 521 if (newRange.Begin == newRange.End) in addRemoval() [all …]
|
| HD | TransAutoreleasePool.cpp | 100 clearRefsIn(*scope.End, info.Refs); in ~AutoreleasePoolRewriter() 124 clearUnavailableDiags(*scope.End); in ~AutoreleasePoolRewriter() 128 Pass.TA.removeStmt(*scope.End); in ~AutoreleasePoolRewriter() 129 Stmt::child_iterator retI = scope.End; in ~AutoreleasePoolRewriter() 143 Pass.TA.replaceStmt(*scope.End, "}"); in ~AutoreleasePoolRewriter() 209 scope.End = I; in VisitCompoundStmt() 229 Stmt::child_iterator End; member 233 PoolScope() : PoolVar(nullptr), CompoundParent(nullptr), Begin(), End(), in PoolScope() 239 if (rangeS == End) in getIndentedRange() 242 for (Stmt::child_iterator I = rangeS; I != End; ++I) in getIndentedRange() [all …]
|
| /NextBSD/contrib/llvm/lib/Target/X86/AsmParser/ |
| HD | X86AsmParser.cpp | 697 std::unique_ptr<X86Operand> ParseRoundingModeOp(SMLoc Start, SMLoc End); 698 bool ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End); 705 bool IsUnevaluatedOperand, SMLoc &End); 712 SMLoc End, unsigned Size, StringRef Identifier, 1057 unsigned Scale, SMLoc Start, SMLoc End, unsigned Size, StringRef Identifier, in CreateMemForInlineAsm() argument 1071 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End, Size, in CreateMemForInlineAsm() 1095 IndexReg, Scale, Start, End, Size, Identifier, in CreateMemForInlineAsm() 1103 SMLoc &StartInBrac, SMLoc &End) { in RewriteIntelBracExpression() argument 1106 AsmRewrites->push_back(AsmRewrite(AOK_Skip, End, 1)); in RewriteIntelBracExpression() 1154 if (unsigned Len = End.getPointer() - (SymLocPtr + SymName.size())) { in RewriteIntelBracExpression() [all …]
|
| /NextBSD/contrib/llvm/lib/IR/ |
| HD | User.cpp | 58 Use *End = Begin + N; in allocHungoffUses() local 59 (void) new(End) Use::UserRef(const_cast<User*>(this), 1); in allocHungoffUses() 60 setOperandList(Use::initTags(Begin, End)); in allocHungoffUses() 98 Use *End = Start + Us; in operator new() local 99 User *Obj = reinterpret_cast<User*>(End); in operator new() 102 Use::initTags(Start, End); in operator new()
|
| /NextBSD/sys/contrib/dev/acpica/components/parser/ |
| HD | psargs.c | 175 UINT8 *End = ParserState->Aml; in AcpiPsGetNextNamestring() local 183 while (ACPI_IS_ROOT_PREFIX (*End) || in AcpiPsGetNextNamestring() 184 ACPI_IS_PARENT_PREFIX (*End)) in AcpiPsGetNextNamestring() 186 End++; in AcpiPsGetNextNamestring() 191 switch (*End) in AcpiPsGetNextNamestring() 197 if (End == Start) in AcpiPsGetNextNamestring() 201 End++; in AcpiPsGetNextNamestring() 208 End += 1 + (2 * ACPI_NAME_SIZE); in AcpiPsGetNextNamestring() 215 End += 2 + (*(End + 1) * ACPI_NAME_SIZE); in AcpiPsGetNextNamestring() 222 End += ACPI_NAME_SIZE; in AcpiPsGetNextNamestring() [all …]
|
| /NextBSD/contrib/llvm/lib/MC/ |
| HD | MCSection.cpp | 27 if (!End) in getEndSymbol() 28 End = Ctx.createTempSymbol("sec_end", true); in getEndSymbol() 29 return End; in getEndSymbol() 32 bool MCSection::hasEnded() const { return End && End->isInSection(); } in hasEnded()
|