Home
last modified time | relevance | path

Searched refs:Items (Results 1 – 25 of 54) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryItemStream.h45 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 DOnDiskHashTable.h367 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 DFormatVariadic.h146 operator()(Ts &...Items) { in operator()
147 return {{&Items...}}; in operator()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewRecordIO.h143 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 DOSLog.h113 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 DOSLog.cpp137 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 DParentMapContext.cpp68 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 DRandom.h53 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 DHash.cpp61 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 DMemProfReader.cpp96 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 DStringExtras.h456 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 DLinePrinter.h63 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 Dtodo3 Current Items
12 Old Items
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DInfoByHwMode.cpp33 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 DCodeGenHwModes.cpp55 Items.push_back(std::pair(ModeId, Objects[i])); in HwModeSelect()
62 for (const PairType &P : Items) in dump()
H A DCodeGenHwModes.h41 std::vector<PairType> Items; member
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp206 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 DAPINotesYAMLCompiler.cpp543 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 Ditem_reference_counting.rst28 Items containing nested items will be destroyed recursively - the refcount of every nested item wil…
/freebsd/contrib/ncurses/man/
H A Dmanhtml.externs2 # Items in this list will not be linked by man2html
/freebsd/usr.sbin/bsdconfig/ttys/
H A DINDEX50 # ------------ Items below this line do NOT need i18n translation ------------
/freebsd/usr.sbin/bsdconfig/docsinstall/
H A DINDEX50 # ------------ Items below this line do NOT need i18n translation ------------
/freebsd/usr.sbin/bsdconfig/mouse/
H A DINDEX55 # ------------ Items below this line do NOT need i18n translation ------------
/freebsd/usr.sbin/bsdconfig/packages/
H A DINDEX49 # ------------ Items below this line do NOT need i18n translation ------------
/freebsd/usr.sbin/bsdconfig/password/
H A DINDEX50 # ------------ Items below this line do NOT need i18n translation ------------

123