Searched refs:Items (Results 1 - 17 of 17) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryItemStream.h46 const auto &Item = Items[*ExpectedIndex];
60 Buffer = Traits::bytes(Items[*ExpectedIndex]);
65 Items = ItemArray;
76 ItemEndOffsets.reserve(Items.size());
78 for (const auto &Item : Items) {
94 assert(Idx < Items.size() && "binary search for offset failed");
99 ArrayRef<T> Items;
H A DFormatVariadic.h145 operator()(Ts &... Items) { argument
146 return {{&Items...}};
H A DOnDiskHashTable.h364 const unsigned char *Items = Base + Offset; local
366 // 'Items' starts with a 16-bit unsigned integer representing the
368 unsigned Len = endian::readNext<uint16_t, little, unaligned>(Items);
373 endian::readNext<hash_value_type, little, unaligned>(Items);
377 Info::ReadKeyDataLength(Items);
382 Items += ItemLen;
388 InfoPtr->ReadKey((const unsigned char *const)Items, L.first);
392 Items += ItemLen;
397 return iterator(X, Items + L.first, L.second, InfoPtr);
468 // 'Items' start
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DHash.cpp61 ArrayRef<ulittle32_t> Items(
64 for (ulittle32_t Item : Items) {
69 Buffer = Buffer.slice(Items.size() * sizeof(ulittle32_t));
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOSLog.h113 SmallVector<OSLogBufferItem, 4> Items; member in class:clang::analyze_os_log::OSLogBufferLayout
120 for (auto &item : Items) {
129 Items, [](const OSLogBufferItem &Item) { return Item.getIsPrivate(); });
133 return llvm::any_of(Items, [](const OSLogBufferItem &Item) {
148 unsigned char getNumArgsByte() const { return Items.size(); }
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewRecordIO.h142 Error mapVectorN(T &Items, const ElementMapper &Mapper, argument
146 Size = static_cast<SizeType>(Items.size());
151 for (auto &X : Items) {
156 Size = static_cast<SizeType>(Items.size());
160 for (auto &X : Items) {
171 Items.push_back(Item);
179 Error mapVectorTail(T &Items, const ElementMapper &Mapper, argument
183 for (auto &Item : Items) {
193 Items.push_back(Field);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
H A DRandom.h52 /// Sample each item in \c Items with unit weight
53 template <typename RangeT> ReservoirSampler &sample(RangeT &&Items) { argument
54 for (auto &I : Items)
75 ReservoirSampler<ElT, GenT> makeSampler(GenT &RandGen, RangeT &&Items) { argument
77 RS.sample(Items);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DOSLog.cpp136 Layout.Items.clear();
140 Layout.Items.emplace_back(OSLogBufferItem::MaskKind, nullptr,
146 Layout.Items.emplace_back(OSLogBufferItem::ScalarKind, *Data.FieldWidth,
151 Layout.Items.emplace_back(OSLogBufferItem::ScalarKind, *Data.Precision,
157 Layout.Items.emplace_back(OSLogBufferItem::CountKind, *Data.Count, Size,
161 Layout.Items.emplace_back(Ctx, CharUnits::fromQuantity(*Data.Size),
169 Layout.Items.emplace_back(*Data.Kind, Data.E, Size, Data.Flags);
172 Layout.Items.emplace_back(OSLogBufferItem::ScalarKind, Data.E, Size,
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DLinePrinter.h44 template <typename... Ts> void formatLine(const char *Fmt, Ts &&... Items) { argument
45 printLine(formatv(Fmt, std::forward<Ts>(Items)...));
47 template <typename... Ts> void format(const char *Fmt, Ts &&... Items) { argument
48 print(formatv(Fmt, std::forward<Ts>(Items)...));
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenHwModes.h38 std::vector<PairType> Items; member in struct:llvm::HwModeSelect
H A DCodeGenHwModes.cpp42 Items.push_back(std::make_pair(ModeId, Objects[i]));
49 for (const PairType &P : Items)
H A DInfoByHwMode.cpp34 for (const HwModeSelect::PairType &P : MS.Items) {
147 for (const HwModeSelect::PairType &P : MS.Items) {
197 for (const HwModeSelect::PairType &P : MS.Items) {
H A DSearchableTableEmitter.cpp190 const std::vector<Record *> &Items);
192 const std::vector<Record *> &Items);
572 const std::vector<Record *> &Items) {
573 for (auto EntryRec : Items) {
601 GenericTable &Table, const std::vector<Record *> &Items) {
602 if (Items.empty())
605 for (auto EntryRec : Items) {
740 std::vector<Record *> Items = Records.getAllDerivedDefinitions(TableName); local
752 collectEnumEntries(*Enum, NameField, ValueField, Items);
775 collectTableEntries(*Table, Items);
570 collectEnumEntries( GenericEnum &Enum, StringRef NameField, StringRef ValueField, const std::vector<Record *> &Items) argument
600 collectTableEntries( GenericTable &Table, const std::vector<Record *> &Items) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h362 Args &&... Items) {
365 join_items_impl(Result, Separator, std::forward<Args>(Items)...);
381 inline size_t join_items_size(const A1 &A, Args &&... Items) { argument
382 return join_one_item_size(A) + join_items_size(std::forward<Args>(Items)...);
402 /// Joins the strings in the parameter pack \p Items, adding \p Separator
407 inline std::string join_items(Sep Separator, Args &&... Items) { argument
409 if (sizeof...(Items) == 0)
413 size_t NI = detail::join_items_size(std::forward<Args>(Items)...);
414 Result.reserve(NI + (sizeof...(Items) - 1) * NS + 1);
415 detail::join_items_impl(Result, Separator, std::forward<Args>(Items)
361 join_items_impl(std::string &Result, Sep Separator, const Arg1 &A1, Args &&... Items) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp2984 std::vector<StringRef> Items = R->getValueAsListOfStrings(ListName);
2985 for (auto I = Items.begin(), E = Items.end(); I != E; ++I) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp1227 for (const auto &Item : Layout.Items)
1242 for (unsigned int I = 0, E = Layout.Items.size(); I < E; ++I) {
1243 char Size = Layout.Items[I].getSizeByte();
1297 for (const auto &Item : Layout.Items) {
1336 for (const auto &Item : Layout.Items) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3912 const int Items = Op.getOperand(0).getValueSizeInBits() / BitWidth;
3916 const int rIndex = Items - 1 - Op.getConstantOperandVal(1);

Completed in 322 milliseconds