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

/freebsd-11-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 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...]
H A DFormatVariadic.h75 std::vector<detail::format_adapter *> operator()(Ts &... Items) { argument
76 return std::vector<detail::format_adapter *>{&Items...};
/freebsd-11-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-11-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-11-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-11-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-11-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-11-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-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenHwModes.h37 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.cpp186 const std::vector<Record *> &Items);
188 const std::vector<Record *> &Items);
568 const std::vector<Record *> &Items) {
569 for (auto EntryRec : Items) {
597 GenericTable &Table, const std::vector<Record *> &Items) {
598 for (auto EntryRec : Items) {
729 std::vector<Record *> Items = Records.getAllDerivedDefinitions(TableName); local
741 collectEnumEntries(*Enum, NameField, ValueField, Items);
764 collectTableEntries(*Table, Items);
566 collectEnumEntries( GenericEnum &Enum, StringRef NameField, StringRef ValueField, const std::vector<Record *> &Items) argument
596 collectTableEntries( GenericTable &Table, const std::vector<Record *> &Items) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h342 Args &&... Items) {
345 join_items_impl(Result, Separator, std::forward<Args>(Items)...);
361 inline size_t join_items_size(const A1 &A, Args &&... Items) { argument
362 return join_one_item_size(A) + join_items_size(std::forward<Args>(Items)...);
382 /// Joins the strings in the parameter pack \p Items, adding \p Separator
387 inline std::string join_items(Sep Separator, Args &&... Items) { argument
389 if (sizeof...(Items) == 0)
393 size_t NI = detail::join_items_size(std::forward<Args>(Items)...);
394 Result.reserve(NI + (sizeof...(Items) - 1) * NS + 1);
395 detail::join_items_impl(Result, Separator, std::forward<Args>(Items)
341 join_items_impl(std::string &Result, Sep Separator, const Arg1 &A1, Args &&... Items) argument
[all...]
/freebsd-11-stable/crypto/openssl/util/
H A Dpod2man.pl188 The following diagnostics are generated by B<pod2man>. Items
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp2890 std::vector<StringRef> Items = R->getValueAsListOfStrings(ListName);
2891 for (auto I = Items.begin(), E = Items.end(); I != E; ++I) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp1201 for (const auto &Item : Layout.Items)
1216 for (unsigned int I = 0, E = Layout.Items.size(); I < E; ++I) {
1217 char Size = Layout.Items[I].getSizeByte();
1269 for (const auto &Item : Layout.Items) {
1308 for (const auto &Item : Layout.Items) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3845 const int Items = Op.getOperand(0).getValueSizeInBits() / BitWidth;
3849 const int rIndex = Items - 1 - Op.getConstantOperandVal(1);

Completed in 193 milliseconds