| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | BinaryItemStream.h | 46 const auto &Item = Items[*ExpectedIndex]; in readBytes() 60 Buffer = Traits::bytes(Items[*ExpectedIndex]); in readLongestContiguousChunk() 65 Items = ItemArray; in setItems() 76 ItemEndOffsets.reserve(Items.size()); in computeItemOffsets() 78 for (const auto &Item : Items) { in computeItemOffsets() 93 assert(Idx < Items.size() && "binary search for offset failed"); in translateOffsetIndex() 98 ArrayRef<T> Items; variable
|
| H A D | OnDiskHashTable.h | 363 const unsigned char *Items = Base + Offset; variable 367 unsigned Len = endian::readNext<uint16_t, little, unaligned>(Items); 372 endian::readNext<hash_value_type, little, unaligned>(Items); 376 Info::ReadKeyDataLength(Items); 381 Items += ItemLen; 387 InfoPtr->ReadKey((const unsigned char *const)Items, L.first); 391 Items += ItemLen; 396 return iterator(X, Items + L.first, L.second, InfoPtr);
|
| H A D | FormatVariadic.h | 146 operator()(Ts &... Items) { in operator() 147 return {{&Items...}}; in operator()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | CodeViewRecordIO.h | 143 Error mapVectorN(T &Items, const ElementMapper &Mapper, 147 Size = static_cast<SizeType>(Items.size()); 152 for (auto &X : Items) { 157 Size = static_cast<SizeType>(Items.size()); 161 for (auto &X : Items) { 172 Items.push_back(Item); 180 Error mapVectorTail(T &Items, const ElementMapper &Mapper, 184 for (auto &Item : Items) { 194 Items.push_back(Field);
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | OSLog.h | 113 SmallVector<OSLogBufferItem, 4> Items; 120 for (auto &item : Items) { in size() 129 Items, [](const OSLogBufferItem &Item) { return Item.getIsPrivate(); }); in hasPrivateItems() 133 return llvm::any_of(Items, [](const OSLogBufferItem &Item) { in hasNonScalarOrMask() 148 unsigned char getNumArgsByte() const { return Items.size(); } in getNumArgsByte()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | OSLog.cpp | 137 Layout.Items.clear(); in computeLayout() 141 Layout.Items.emplace_back(OSLogBufferItem::MaskKind, nullptr, in computeLayout() 147 Layout.Items.emplace_back(OSLogBufferItem::ScalarKind, *Data.FieldWidth, in computeLayout() 152 Layout.Items.emplace_back(OSLogBufferItem::ScalarKind, *Data.Precision, in computeLayout() 158 Layout.Items.emplace_back(OSLogBufferItem::CountKind, *Data.Count, Size, in computeLayout() 162 Layout.Items.emplace_back(Ctx, CharUnits::fromQuantity(*Data.Size), in computeLayout() 170 Layout.Items.emplace_back(*Data.Kind, Data.E, Size, Data.Flags); in computeLayout() 173 Layout.Items.emplace_back(OSLogBufferItem::ScalarKind, Data.E, Size, in computeLayout()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/ |
| H A D | list_test.cpp | 18 static ListItem Items[6]; variable 19 static ListItem *X = &Items[0]; 20 static ListItem *Y = &Items[1]; 21 static ListItem *Z = &Items[2]; 22 static ListItem *A = &Items[3]; 23 static ListItem *B = &Items[4]; 24 static ListItem *C = &Items[5];
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/FuzzMutate/ |
| H A D | Random.h | 53 template <typename RangeT> ReservoirSampler &sample(RangeT &&Items) { in sample() argument 54 for (auto &I : Items) in sample() 75 ReservoirSampler<ElT, GenT> makeSampler(GenT &RandGen, RangeT &&Items) { in makeSampler() argument 77 RS.sample(Items); in makeSampler()
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | Hash.cpp | 61 ArrayRef<ulittle32_t> Items( in hashStringV2() 64 for (ulittle32_t Item : Items) { in hashStringV2() 69 Buffer = Buffer.slice(Items.size() * sizeof(ulittle32_t)); in hashStringV2()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | StringExtras.h | 441 Args &&... Items) { in join_items_impl() 444 join_items_impl(Result, Separator, std::forward<Args>(Items)...); in join_items_impl() 454 template <typename... Args> inline size_t join_items_size(Args &&...Items) { in join_items_size() argument 455 return (0 + ... + join_one_item_size(std::forward<Args>(Items))); in join_items_size() 480 inline std::string join_items(Sep Separator, Args &&... Items) { in join_items() argument 482 if (sizeof...(Items) == 0) in join_items() 486 size_t NI = detail::join_items_size(std::forward<Args>(Items)...); in join_items() 487 Result.reserve(NI + (sizeof...(Items) - 1) * NS + 1); in join_items() 488 detail::join_items_impl(Result, Separator, std::forward<Args>(Items)...); in join_items()
|
| /openbsd-src/gnu/llvm/llvm/lib/ProfileData/ |
| H A D | RawMemProfReader.cpp | 83 llvm::SmallVector<SegmentEntry> Items; in readSegmentEntries() local 85 Items.push_back(*reinterpret_cast<const SegmentEntry *>( in readSegmentEntries() 88 return Items; in readSegmentEntries() 97 llvm::SmallVector<std::pair<uint64_t, MemInfoBlock>> Items; in readMemInfoBlocks() local 101 Items.push_back({Id, MIB}); in readMemInfoBlocks() 105 return Items; in readMemInfoBlocks() 113 CallStackMap Items; in readStackInfo() local 124 Items[StackId] = CallStack; in readStackInfo() 126 return Items; in readStackInfo()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | LinePrinter.h | 63 template <typename... Ts> void formatLine(const char *Fmt, Ts &&...Items) { in formatLine() argument 64 printLine(formatv(Fmt, std::forward<Ts>(Items)...)); in formatLine() 66 template <typename... Ts> void format(const char *Fmt, Ts &&...Items) { in format() argument 67 print(formatv(Fmt, std::forward<Ts>(Items)...)); in format()
|
| /openbsd-src/gnu/llvm/lldb/tools/lldb-test/ |
| H A D | FormatUtil.h | 48 template <typename... Ts> void formatLine(const char *Fmt, Ts &&... Items) { in formatLine() argument 49 printLine(llvm::formatv(Fmt, std::forward<Ts>(Items)...)); in formatLine()
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | SearchableTableEmitter.cpp | 198 const std::vector<Record *> &Items); 200 const std::vector<Record *> &Items); 576 const std::vector<Record *> &Items) { in collectEnumEntries() argument 577 for (auto *EntryRec : Items) { in collectEnumEntries() 605 GenericTable &Table, const std::vector<Record *> &Items) { in collectTableEntries() argument 606 if (Items.empty()) in collectTableEntries() 610 for (auto *EntryRec : Items) { in collectTableEntries() 763 std::vector<Record *> Items = Records.getAllDerivedDefinitions(TableName); in run() local 775 collectEnumEntries(*Enum, NameField, ValueField, Items); in run() 799 collectTableEntries(*Table, Items); in run()
|
| H A D | CodeGenHwModes.cpp | 42 Items.push_back(std::make_pair(ModeId, Objects[i])); in HwModeSelect() 49 for (const PairType &P : Items) in dump()
|
| H A D | InfoByHwMode.cpp | 33 for (const HwModeSelect::PairType &P : MS.Items) { in ValueTypeByHwMode() 143 for (const HwModeSelect::PairType &P : MS.Items) { in RegSizeInfoByHwMode() 190 for (const HwModeSelect::PairType &P : MS.Items) { in EncodingInfoByHwMode()
|
| H A D | CodeGenHwModes.h | 38 std::vector<PairType> Items; member
|
| /openbsd-src/gnu/llvm/libcxx/docs/Status/ |
| H A D | Format.rst | 36 Misc. Items and TODOs
|
| H A D | Spaceship.rst | 40 Misc. Items and TODOs
|
| /openbsd-src/lib/libcurses/ |
| H A D | manhtml.externs | 2 # Items in this list will not be linked by man2html
|
| H A D | manhtml.aliases | 30 # Items in this list will be linked to the corresponding manpages by man2html
|
| /openbsd-src/gnu/llvm/clang/lib/APINotes/ |
| H A D | APINotesYAMLCompiler.cpp | 526 TopLevelItems Items; member 539 mapTopLevelItems(IO, V.Items); in mapping()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-rc/ |
| H A D | ResourceScriptParser.cpp | 620 ASSIGN_OR_RETURN(Items, parseMenuItemsList()); in parseMenuResource() 622 std::move(*Items), MemoryFlags); in parseMenuResource()
|
| H A D | ResourceScriptStmt.h | 567 MenuResource(OptionalStmtList &&OptStmts, MenuDefinitionList &&Items, in MenuResource() argument 570 Elements(std::move(Items)) {} in MenuResource()
|
| /openbsd-src/gnu/llvm/clang/utils/TableGen/ |
| H A D | ClangAttrEmitter.cpp | 3225 std::vector<StringRef> Items = R->getValueAsListOfStrings(ListName); in GenerateTargetSpecificAttrCheck() local 3226 for (auto I = Items.begin(), E = Items.end(); I != E; ++I) { in GenerateTargetSpecificAttrCheck()
|