Searched refs:Item (Results 1 - 25 of 82) sorted by relevance

1234

/freebsd-11-stable/crypto/openssl/engines/vendor_defns/
H A Datalla.h16 } Item; typedef in typeref:struct:ItemStr
20 Item version;
21 Item modulus;
22 Item publicExponent;
23 Item privateExponent;
24 Item prime[2];
25 Item exponent[2];
26 Item coefficient;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DRecordSerialization.h58 Error consume(BinaryStreamReader &Reader, uint32_t &Item);
59 Error consume(BinaryStreamReader &Reader, int32_t &Item);
62 Error consume(BinaryStreamReader &Reader, StringRef &Item);
65 Error consume(StringRef &Data, uint32_t &Item);
69 template <typename T> Error consume(BinaryStreamReader &Reader, T *&Item) { argument
70 return Reader.readObject(Item);
74 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {} argument
79 return consume(Reader, Item);
82 T &Item; member in struct:llvm::codeview::serialize_conditional_impl
87 serialize_conditional(T &Item, U Func) argument
92 serialize_array_impl(ArrayRef<T> &Item, U Func) argument
98 ArrayRef<T> &Item; member in struct:llvm::codeview::serialize_array_impl
103 serialize_vector_tail_impl(std::vector<T> &Item) argument
116 std::vector<T> &Item; member in struct:llvm::codeview::serialize_vector_tail_impl
120 serialize_null_term_string_array_impl(std::vector<StringRef> &Item) argument
137 std::vector<StringRef> &Item; member in struct:llvm::codeview::serialize_null_term_string_array_impl
141 serialize_arrayref_tail_impl(ArrayRef<T> &Item) argument
148 ArrayRef<T> &Item; member in struct:llvm::codeview::serialize_arrayref_tail_impl
152 serialize_numeric_impl(T &Item) argument
158 T &Item; member in struct:llvm::codeview::serialize_numeric_impl
162 serialize_array(ArrayRef<T> &Item, U Func) argument
167 serialize_null_term_string_array(std::vector<StringRef> &Item) argument
172 serialize_array_tail(std::vector<T> &Item) argument
177 serialize_array_tail(ArrayRef<T> &Item) argument
181 serialize_numeric(T &Item) argument
186 consume(BinaryStreamReader &Reader, const serialize_conditional_impl<T, U> &Item) argument
192 consume(BinaryStreamReader &Reader, const serialize_array_impl<T, U> &Item) argument
197 consume(BinaryStreamReader &Reader, const serialize_null_term_string_array_impl &Item) argument
203 consume(BinaryStreamReader &Reader, const serialize_vector_tail_impl<T> &Item) argument
209 consume(BinaryStreamReader &Reader, const serialize_arrayref_tail_impl<T> &Item) argument
215 consume(BinaryStreamReader &Reader, const serialize_numeric_impl<T> &Item) argument
[all...]
H A DFormatters.h39 inline detail::GuidAdapter fmt_guid(StringRef Item) { argument
40 return detail::GuidAdapter(Item);
43 inline detail::GuidAdapter fmt_guid(ArrayRef<uint8_t> Item) { argument
44 return detail::GuidAdapter(Item);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIAEnumDebugStreams.cpp27 CComPtr<IDiaEnumDebugStreamData> Item; local
31 if (S_OK != Enumerator->Item(VarIndex, &Item))
34 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item));
38 CComPtr<IDiaEnumDebugStreamData> Item; local
40 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
43 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item));
H A DDIAEnumFrameData.cpp25 CComPtr<IDiaFrameData> Item; local
26 if (S_OK != Enumerator->Item(Index, &Item))
29 return std::unique_ptr<IPDBFrameData>(new DIAFrameData(Item));
33 CComPtr<IDiaFrameData> Item; local
35 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
38 return std::unique_ptr<IPDBFrameData>(new DIAFrameData(Item));
H A DDIAEnumInjectedSources.cpp27 CComPtr<IDiaInjectedSource> Item; local
28 if (S_OK != Enumerator->Item(Index, &Item))
31 return std::unique_ptr<IPDBInjectedSource>(new DIAInjectedSource(Item));
35 CComPtr<IDiaInjectedSource> Item; local
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
40 return std::unique_ptr<IPDBInjectedSource>(new DIAInjectedSource(Item));
H A DDIAEnumLineNumbers.cpp27 CComPtr<IDiaLineNumber> Item; local
28 if (S_OK != Enumerator->Item(Index, &Item))
31 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item));
35 CComPtr<IDiaLineNumber> Item; local
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
40 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item));
H A DDIAEnumSectionContribs.cpp28 CComPtr<IDiaSectionContrib> Item; local
29 if (S_OK != Enumerator->Item(Index, &Item))
33 new DIASectionContrib(Session, Item));
37 CComPtr<IDiaSectionContrib> Item; local
39 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
43 new DIASectionContrib(Session, Item));
H A DDIAEnumSourceFiles.cpp27 CComPtr<IDiaSourceFile> Item; local
28 if (S_OK != Enumerator->Item(Index, &Item))
31 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
35 CComPtr<IDiaSourceFile> Item; local
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
40 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
H A DDIAEnumTables.cpp25 CComPtr<IDiaTable> Item; local
29 if (S_OK != Enumerator->Item(Var, &Item))
32 return std::unique_ptr<IPDBTable>(new DIATable(Item));
36 CComPtr<IDiaTable> Item; local
38 if (S_OK != Enumerator->Next(1, &Item, &CeltFetched))
41 return std::unique_ptr<IPDBTable>(new DIATable(Item));
H A DDIAEnumSymbols.cpp28 CComPtr<IDiaSymbol> Item; local
29 if (S_OK != Enumerator->Item(Index, &Item))
32 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
37 CComPtr<IDiaSymbol> Item; local
39 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
42 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatAdapters.h22 explicit FormatAdapter(T &&Item) : Item(std::forward<T>(Item)) {} argument
24 T Item; member in class:llvm::FormatAdapter
34 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill) argument
35 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount),
39 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item));
49 PadAdapter(T &&Item, size_t Left, size_t Right) argument
50 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {}
53 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item));
64 RepeatAdapter(T &&Item, size_t Count) argument
77 ErrorAdapter(Error &&Item) argument
80 void format(llvm::raw_ostream &Stream, StringRef Style) { Stream << Item; } local
85 fmt_align(T &&Item, AlignStyle Where, size_t Amount, char Fill = �) argument
91 fmt_pad(T &&Item, size_t Left, size_t Right) argument
96 fmt_repeat(T &&Item, size_t Count) argument
103 fmt_consume(Error &&Item) argument
[all...]
H A DFormatCommon.h39 SmallString<64> Item; local
40 raw_svector_ostream Stream(Item);
43 if (Amount <= Item.size()) {
44 S << Item; local
48 size_t PadAmount = Amount - Item.size();
51 S << Item; local
57 S << Item; local
63 S << Item; local
H A DFormatVariadicDetails.h33 T Item; member in class:llvm::detail::provider_format_adapter
36 explicit provider_format_adapter(T &&Item) : Item(std::forward<T>(Item)) {} argument
39 format_provider<typename std::decay<T>::type>::format(Item, S, Options);
45 T Item; member in class:llvm::detail::stream_operator_format_adapter
48 explicit stream_operator_format_adapter(T &&Item) argument
49 : Item(std::forward<T>(Item)) {}
51 void format(llvm::raw_ostream &S, StringRef Options) override { S << Item; } variable
131 build_format_adapter(T &&Item) argument
138 build_format_adapter(T &&Item) argument
145 build_format_adapter(T &&Item) argument
158 build_format_adapter(T &&Item) argument
[all...]
H A DBinaryItemStream.h22 static size_t length(const T &Item) = delete; member in struct:llvm::BinaryItemTraits
23 static ArrayRef<uint8_t> bytes(const T &Item) = delete; member in struct:llvm::BinaryItemTraits
46 const auto &Item = Items[*ExpectedIndex]; variable
49 if (Size > Traits::length(Item))
51 Buffer = Traits::bytes(Item).take_front(Size);
78 for (const auto &Item : Items) {
79 uint32_t Len = Traits::length(Item);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DBaton.h64 explicit TypedBaton(std::unique_ptr<T> Item) : Item(std::move(Item)) {} argument
66 T *getItem() { return Item.get(); }
67 const T *getItem() const { return Item.get(); }
69 void *data() override { return Item.get(); }
74 std::unique_ptr<T> Item; member in class:lldb_private::TypedBaton
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_list.h27 template<class Item>
39 void push_back(Item *x) {
52 void push_front(Item *x) {
72 void extract(Item *prev, Item *x) {
83 Item *front() { return first_; }
84 const Item *front() const { return first_; }
85 Item *back() { return last_; }
86 const Item *back() const { return last_; }
88 void append_front(IntrusiveList<Item> *
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossImpSubsection.cpp27 codeview::CrossModuleImportItem &Item) {
33 if (auto EC = Reader.readObject(Item.Header))
35 if (Reader.bytesRemaining() < Item.Header->Count * sizeof(uint32_t))
39 if (auto EC = Reader.readArray(Item.Imports, Item.Header->Count))
65 for (const auto &Item : Mappings) {
67 Size += sizeof(support::ulittle32_t) * Item.second.size();
86 for (const auto &Item : Ids) {
88 Imp.ModuleNameOffset = Strings.getIdForString(Item->getKey());
89 Imp.Count = Item
26 operator ()(BinaryStreamRef Stream, uint32_t &Len, codeview::CrossModuleImportItem &Item) argument
[all...]
H A DFormatters.cpp29 assert(Item.size() == 16 && "Expected 16-byte GUID");
32 uint8_t Byte = Item[i];
H A DRecordSerialization.cpp126 Error llvm::codeview::consume(BinaryStreamReader &Reader, uint32_t &Item) { argument
127 return Reader.readInteger(Item);
130 Error llvm::codeview::consume(StringRef &Data, uint32_t &Item) { argument
134 auto EC = consume(SR, Item);
139 Error llvm::codeview::consume(BinaryStreamReader &Reader, int32_t &Item) { argument
140 return Reader.readInteger(Item);
143 Error llvm::codeview::consume(BinaryStreamReader &Reader, StringRef &Item) { argument
148 return Reader.readCString(Item);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.h26 static size_t length(const codeview::CVSymbol &Item) { argument
27 return Item.RecordData.size();
29 static ArrayRef<uint8_t> bytes(const codeview::CVSymbol &Item) { argument
30 return Item.RecordData;
H A DTpiStreamBuilder.h29 static size_t length(const codeview::CVType &Item) { return Item.length(); } argument
30 static ArrayRef<uint8_t> bytes(const codeview::CVType &Item) { argument
31 return Item.data();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DHash.cpp64 for (ulittle32_t Item : Items) {
65 Hash += Item;
70 for (uint8_t Item : Buffer) {
71 Hash += Item;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOSLog.h129 Items, [](const OSLogBufferItem &Item) { return Item.getIsPrivate(); });
133 return llvm::any_of(Items, [](const OSLogBufferItem &Item) {
134 return Item.getKind() != OSLogBufferItem::ScalarKind ||
135 !Item.getMaskType().empty();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Testing/Support/
H A DSupportHelpers.h51 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) { argument
52 if (Item.Success()) {
53 *Out << "succeeded with value " << ::testing::PrintToString(*Item.Exp);
55 PrintTo(static_cast<const ErrorHolder &>(Item), Out);

Completed in 187 milliseconds

1234