/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | BinaryItemStream.h | 45 const auto &Item = Items[*ExpectedIndex]; in readBytes() 59 Buffer = Traits::bytes(Items[*ExpectedIndex]); in readLongestContiguousChunk() 64 Items = ItemArray; in setItems() 75 ItemEndOffsets.reserve(Items.size()); in computeItemOffsets() 77 for (const auto &Item : Items) { in computeItemOffsets() 92 assert(Idx < Items.size() && "binary search for offset failed"); in translateOffsetIndex() 97 ArrayRef<T> Items; 98 ArrayRef<T> Items; global() variable
|
H A D | OnDiskHashTable.h | 367 const unsigned char *Items = Base + Offset; variable 371 unsigned Len = endian::readNext<uint16_t, llvm::endianness::little>(Items); 376 endian::readNext<hash_value_type, llvm::endianness::little>(Items); 380 Info::ReadKeyDataLength(Items); 385 Items += ItemLen; 391 InfoPtr->ReadKey((const unsigned char *const)Items, L.first); 395 Items += ItemLen; 400 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()
|
/freebsd/contrib/llvm-project/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);
|
/freebsd/contrib/llvm-project/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()
|
/freebsd/contrib/llvm-project/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()
|
H A D | ParentMapContext.cpp | 68 Items.reserve(N); in ParentVector() 77 Items.push_back(Value); in push_back() 79 llvm::ArrayRef<DynTypedNode> view() const { return Items; } in view() 81 llvm::SmallVector<DynTypedNode, 2> Items; member in ParentMapContext::ParentMap::ParentVector
|
/freebsd/contrib/llvm-project/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()
|
/freebsd/contrib/llvm-project/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()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | MemProfReader.cpp | 96 llvm::SmallVector<SegmentEntry> Items; in readSegmentEntries() local 98 Items.push_back(*reinterpret_cast<const SegmentEntry *>( in readSegmentEntries() 101 return Items; in readSegmentEntries() 111 llvm::SmallVector<std::pair<uint64_t, MemInfoBlock>> Items; in readMemInfoBlocksV3() local 127 Items.push_back({Id, MIB}); in readMemInfoBlocksV3() 131 return Items; in readMemInfoBlocksV3() 141 llvm::SmallVector<std::pair<uint64_t, MemInfoBlock>> Items; in readMemInfoBlocksV4() local 161 Items.push_back({Id, MIB}); in readMemInfoBlocksV4() 163 return Items; in readMemInfoBlocksV4() 171 CallStackMap Items; in readStackInfo() local [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 456 Args &&... Items) { in join_items_impl() 459 join_items_impl(Result, Separator, std::forward<Args>(Items)...); in join_items_impl() 469 template <typename... Args> inline size_t join_items_size(Args &&...Items) { in join_items_size() argument 470 return (0 + ... + join_one_item_size(std::forward<Args>(Items))); in join_items_size() 495 inline std::string join_items(Sep Separator, Args &&... Items) { in join_items() argument 497 if (sizeof...(Items) == 0) in join_items() 501 size_t NI = detail::join_items_size(std::forward<Args>(Items)...); in join_items() 502 Result.reserve(NI + (sizeof...(Items) - 1) * NS + 1); in join_items() 503 detail::join_items_impl(Result, Separator, std::forward<Args>(Items)...); in join_items()
|
/freebsd/contrib/llvm-project/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()
|
/freebsd/contrib/tnftp/ |
H A D | todo | 3 Current Items 12 Old Items
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | InfoByHwMode.cpp | 33 for (const HwModeSelect::PairType &P : MS.Items) { in ValueTypeByHwMode() 141 for (const HwModeSelect::PairType &P : MS.Items) { in RegSizeInfoByHwMode() 193 for (const HwModeSelect::PairType &P : MS.Items) { in SubRegRangeByHwMode() 203 for (const HwModeSelect::PairType &P : MS.Items) { in EncodingInfoByHwMode()
|
H A D | CodeGenHwModes.cpp | 55 Items.push_back(std::pair(ModeId, Objects[i])); in HwModeSelect() 62 for (const PairType &P : Items) in dump()
|
H A D | CodeGenHwModes.h | 41 std::vector<PairType> Items; member
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | SearchableTableEmitter.cpp | 206 const std::vector<Record *> &Items); 208 const std::vector<Record *> &Items); 630 const std::vector<Record *> &Items) { in collectEnumEntries() argument 631 for (auto *EntryRec : Items) { in collectEnumEntries() 659 GenericTable &Table, const std::vector<Record *> &Items) { in collectTableEntries() argument 660 if (Items.empty()) in collectTableEntries() 664 for (auto *EntryRec : Items) { in collectTableEntries() 838 std::vector<Record *> Items = Records.getAllDerivedDefinitions(TableName); in run() local 850 collectEnumEntries(*Enum, NameField, ValueField, Items); in run() 874 collectTableEntries(*Table, Items); in run()
|
/freebsd/contrib/llvm-project/clang/lib/APINotes/ |
H A D | APINotesYAMLCompiler.cpp | 543 TopLevelItems Items; member 559 mapTopLevelItems(IO, T.Items); in mapping() 568 TopLevelItems Items; member 581 mapTopLevelItems(IO, V.Items); in mapping() 876 TheNamespace.Items, SwiftVersion); in convertNamespaceContext() 1104 convertTopLevelItems(/* context */ std::nullopt, Versioned.Items, in convertModule()
|
/freebsd/contrib/libcbor/doc/source/api/ |
H A D | item_reference_counting.rst | 28 Items containing nested items will be destroyed recursively - the refcount of every nested item wil…
|
/freebsd/contrib/ncurses/man/ |
H A D | manhtml.externs | 2 # Items in this list will not be linked by man2html
|
/freebsd/usr.sbin/bsdconfig/ttys/ |
H A D | INDEX | 50 # ------------ Items below this line do NOT need i18n translation ------------
|
/freebsd/usr.sbin/bsdconfig/docsinstall/ |
H A D | INDEX | 50 # ------------ Items below this line do NOT need i18n translation ------------
|
/freebsd/usr.sbin/bsdconfig/mouse/ |
H A D | INDEX | 55 # ------------ Items below this line do NOT need i18n translation ------------
|
/freebsd/usr.sbin/bsdconfig/packages/ |
H A D | INDEX | 49 # ------------ Items below this line do NOT need i18n translation ------------
|
/freebsd/usr.sbin/bsdconfig/password/ |
H A D | INDEX | 50 # ------------ Items below this line do NOT need i18n translation ------------
|