| /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 | 142 operator()(Ts &...Items) { in operator() 143 return {{&Items...}}; in operator()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | CodeViewRecordIO.h | 144 Error mapVectorN(T &Items, const ElementMapper &Mapper, 148 Size = static_cast<SizeType>(Items.size()); 153 for (auto &X : Items) { 158 Size = static_cast<SizeType>(Items.size()); 162 for (auto &X : Items) { 173 Items.push_back(Item); 181 Error mapVectorTail(T &Items, const ElementMapper &Mapper, 185 for (auto &Item : Items) { 195 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 | 136 Layout.Items.clear(); in computeLayout() 140 Layout.Items.emplace_back(OSLogBufferItem::MaskKind, nullptr, in computeLayout() 146 Layout.Items.emplace_back(OSLogBufferItem::ScalarKind, *Data.FieldWidth, in computeLayout() 151 Layout.Items.emplace_back(OSLogBufferItem::ScalarKind, *Data.Precision, in computeLayout() 157 Layout.Items.emplace_back(OSLogBufferItem::CountKind, *Data.Count, Size, in computeLayout() 161 Layout.Items.emplace_back(Ctx, CharUnits::fromQuantity(*Data.Size), in computeLayout() 169 Layout.Items.emplace_back(*Data.Kind, Data.E, Size, Data.Flags); in computeLayout() 172 Layout.Items.emplace_back(OSLogBufferItem::ScalarKind, Data.E, Size, in computeLayout()
|
| H A D | ParentMapContext.cpp | 69 Items.reserve(N); in ParentVector() 81 Items.push_back(Value); in push_back() 84 ArrayRef<DynTypedNode> view() const { return Items; } in view() 87 llvm::SmallVector<DynTypedNode, 1> Items; member in ParentMapContext::ParentMap::ParentVector
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | ArrayList.h | 56 CurGroup->Items[CurItemsCount] = Item; in add() 57 return CurGroup->Items[CurItemsCount]; in add() 108 ArrayTy Items; member 123 typename ArrayTy::iterator begin() { return Items.begin(); } in begin() 124 typename ArrayTy::iterator end() { return Items.begin() + getItemsCount(); } in end()
|
| /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 | 99 llvm::SmallVector<SegmentEntry> Items; in readSegmentEntries() local 101 Items.push_back(*reinterpret_cast<const SegmentEntry *>( in readSegmentEntries() 104 return Items; in readSegmentEntries() 114 llvm::SmallVector<std::pair<uint64_t, MemInfoBlock>> Items; in readMemInfoBlocksV3() local 130 Items.push_back({Id, MIB}); in readMemInfoBlocksV3() 134 return Items; in readMemInfoBlocksV3() 144 llvm::SmallVector<std::pair<uint64_t, MemInfoBlock>> Items; in readMemInfoBlocksV4() local 164 Items.push_back({Id, MIB}); in readMemInfoBlocksV4() 166 return Items; in readMemInfoBlocksV4() 174 CallStackMap Items; in readStackInfo() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | LinePrinter.h | 64 template <typename... Ts> void formatLine(const char *Fmt, Ts &&...Items) { in formatLine() argument 65 printLine(formatv(Fmt, std::forward<Ts>(Items)...)); in formatLine() 67 template <typename... Ts> void format(const char *Fmt, Ts &&...Items) { in format() argument 68 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 | 34 for (const HwModeSelect::PairType &P : MS.Items) { in ValueTypeByHwMode() 144 for (const HwModeSelect::PairType &P : MS.Items) { in RegSizeInfoByHwMode() 197 for (const HwModeSelect::PairType &P : MS.Items) { in SubRegRangeByHwMode() 207 for (const HwModeSelect::PairType &P : MS.Items) { in EncodingInfoByHwMode()
|
| H A D | CodeGenHwModes.cpp | 46 Items.emplace_back(ModeId, Object); in HwModeSelect() 53 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 | 217 StringRef ValueField, ArrayRef<const Record *> Items); 218 void collectTableEntries(GenericTable &Table, ArrayRef<const Record *> Items); 656 ArrayRef<const Record *> Items) { in collectEnumEntries() argument 657 Enum.Entries.reserve(Items.size()); in collectEnumEntries() 658 for (const Record *EntryRec : Items) { in collectEnumEntries() 683 GenericTable &Table, ArrayRef<const Record *> Items) { in collectTableEntries() argument 684 if (Items.empty()) in collectTableEntries() 688 for (auto *EntryRec : Items) { in collectTableEntries() 868 ArrayRef<const Record *> Items = in run() local 881 collectEnumEntries(*Enum, NameField, ValueField, Items); in run() [all …]
|
| /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/llvm-project/clang/lib/APINotes/ |
| H A D | APINotesYAMLCompiler.cpp | 598 TopLevelItems Items; member 614 mapTopLevelItems(IO, T.Items); in mapping() 623 TopLevelItems Items; member 636 mapTopLevelItems(IO, V.Items); in mapping() 944 TheNamespace.Items, SwiftVersion); in convertNamespaceContext() 1192 convertTopLevelItems(/* context */ std::nullopt, Versioned.Items, in convertModule()
|
| /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 ------------
|