Home
last modified time | relevance | path

Searched refs:SetType (Results 1 – 25 of 29) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
DPostOrderIterator.h57 template<class SetType, bool External>
59 SetType Visited;
73 template<class SetType>
74 class po_iterator_storage<SetType, true> {
75 SetType &Visited;
78 po_iterator_storage(SetType &VSet) : Visited(VSet) {} in po_iterator_storage()
93 class SetType = SmallPtrSet<typename GraphTraits<GraphT>::NodeRef, 8>,
95 class po_iterator : public po_iterator_storage<SetType, ExtStorage> {
119 po_iterator(NodeRef BB, SetType &S) in po_iterator()
120 : po_iterator_storage<SetType, ExtStorage>(S) { in po_iterator()
[all …]
DDepthFirstIterator.h49 template<class SetType, bool External> // Non-external set
52 SetType Visited;
55 template<class SetType>
56 class df_iterator_storage<SetType, true> {
58 df_iterator_storage(SetType &VSet) : Visited(VSet) {} in df_iterator_storage()
61 SetType &Visited;
82 class SetType =
85 class df_iterator : public df_iterator_storage<SetType, ExtStorage> {
112 inline df_iterator(NodeRef Node, SetType &S) in df_iterator()
113 : df_iterator_storage<SetType, ExtStorage>(S) { in df_iterator()
[all …]
DBreadthFirstIterator.h33 template <class SetType> class bf_iterator_storage {
35 SetType Visited;
44 class SetType =
47 class bf_iterator : public bf_iterator_storage<SetType> {
/freebsd-12-stable/contrib/opencsd/decoder/source/etmv3/
Dtrc_pkt_proc_etmv3_impl.cpp213 m_curr_packet.SetType(m_post_part_pkt_type); in outputPacket()
262 m_curr_packet.SetType(ETM3_PKT_A_SYNC); in waitForSync()
288 m_curr_packet.SetType(ETM3_PKT_NOTSYNC); // send unsynced data packet. in waitForSync()
300 m_curr_packet.SetType(ETM3_PKT_NOTSYNC); // send unsynced data packet. in waitForSync()
321 m_curr_packet.SetType(ETM3_PKT_BRANCH_ADDRESS); in processHeaderByte()
330 m_curr_packet.SetType(ETM3_PKT_BRANCH_OR_BYPASS_EOT); in processHeaderByte()
341 m_curr_packet.SetType(ETM3_PKT_P_HDR); in processHeaderByte()
352 m_curr_packet.SetType(ETM3_PKT_A_SYNC); in processHeaderByte()
356 m_curr_packet.SetType(ETM3_PKT_CYCLE_COUNT); in processHeaderByte()
360 m_curr_packet.SetType(ETM3_PKT_I_SYNC); in processHeaderByte()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
DType.cpp809 SetType(type_sp); in TypeImpl()
814 SetType(compiler_type); in TypeImpl()
819 SetType(type_sp, dynamic); in TypeImpl()
825 SetType(static_type, dynamic_type); in TypeImpl()
828 void TypeImpl::SetType(const lldb::TypeSP &type_sp) { in SetType() function in TypeImpl
839 void TypeImpl::SetType(const CompilerType &compiler_type) { in SetType() function in TypeImpl
844 void TypeImpl::SetType(const lldb::TypeSP &type_sp, in SetType() function in TypeImpl
846 SetType(type_sp); in SetType()
850 void TypeImpl::SetType(const CompilerType &compiler_type, in SetType() function in TypeImpl
DSymbol.cpp152 SetType(eSymbolTypeReExported); in SetReExportedSymbolName()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
DType.h252 void SetType(const lldb::TypeSP &type_sp);
254 void SetType(const CompilerType &compiler_type);
256 void SetType(const lldb::TypeSP &type_sp, const CompilerType &dynamic);
258 void SetType(const CompilerType &compiler_type, const CompilerType &dynamic);
DSymbol.h145 void SetType(lldb::SymbolType type) { m_type = (lldb::SymbolType)type; } in SetType() function
DObjectFile.h556 virtual void SetType(Type type) { m_type = type; } in SetType() function
/freebsd-12-stable/contrib/opencsd/decoder/include/opencsd/ptm/
Dtrc_pkt_elem_ptm.h63 void SetType(const ocsd_ptm_pkt_type p_type);
137 inline void PtmTrcPacket::SetType(const ocsd_ptm_pkt_type p_type) in SetType() function
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
DCodeGenDAGPatterns.h190 using SetType = MachineValueTypeSet; member
202 SetType &getOrCreate(unsigned Mode) { in getOrCreate()
243 static void writeToStream(const SetType &S, raw_ostream &OS);
254 bool intersect(SetType &Out, const SetType &In);
331 void expandOverloads(TypeSetByHwMode::SetType &Out,
332 const TypeSetByHwMode::SetType &Legal);
DCodeGenDAGPatterns.cpp149 SetType &S = I.second; in constrain()
172 SetType &S = getOrCreate(I.first); in assign_if()
200 void TypeSetByHwMode::writeToStream(const SetType &S, raw_ostream &OS) { in writeToStream()
266 bool TypeSetByHwMode::intersect(SetType &Out, const SetType &In) { in intersect()
293 SetType Diff; in intersect()
365 TypeSetByHwMode::SetType &S = I.second; in forceArbitrary()
476 TypeSetByHwMode::SetType &S = Small.get(M); in EnforceSmallerThan()
477 TypeSetByHwMode::SetType &B = Big.get(M); in EnforceSmallerThan()
526 TypeSetByHwMode::SetType &S = Small.get(M); in EnforceSmallerThan()
527 TypeSetByHwMode::SetType &B = Big.get(M); in EnforceSmallerThan()
[all …]
/freebsd-12-stable/contrib/opencsd/decoder/include/opencsd/etmv3/
Dtrc_pkt_elem_etmv3.h74 void SetType(const ocsd_etmv3_pkt_type p_type);
181 inline void EtmV3TrcPacket::SetType(const ocsd_etmv3_pkt_type p_type) in SetType() function
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/
DRegisterValue.h85 void SetType(RegisterValue::Type type) { m_type = type; } in SetType() function
87 RegisterValue::Type SetType(const RegisterInfo *reg_info);
DEvent.h208 void SetType(uint32_t new_type) { m_type = new_type; } in SetType() function
DStructuredData.h83 void SetType(lldb::StructuredDataType t) { m_type = t; } in SetType() function
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointSite.h194 void SetType(BreakpointSite::Type type) { m_type = type; } in SetType() function
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/
DSymbolVendorWasm.cpp107 sym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/
DSymbolVendorELF.cpp110 dsym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
/freebsd-12-stable/crypto/heimdal/lib/asn1/
Dasn1parse.y201 %type <type> SetType
345 | SetType
519 SetType : kw_SET '{' /* ComponentTypeLists */ ComponentTypeList '}'
/freebsd-12-stable/contrib/opencsd/decoder/source/ptm/
Dtrc_pkt_proc_ptm.cpp220 m_curr_packet.SetType(PTM_PKT_NOTSYNC); in InitProcessorState()
370 m_curr_packet.SetType(PTM_PKT_A_SYNC); in waitASync()
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
DSBFunction.cpp205 sb_type.ref().SetType(function_type->shared_from_this()); in GetType()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
DObjCLanguageRuntime.h125 void SetType(const lldb::TypeSP &type_sp) { m_type_wp = type_sp; } in SetType() function
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
DJITLoaderGDB.cpp337 module_sp->GetObjectFile()->SetType(ObjectFile::eTypeJIT); in ReadJITDescriptorImpl()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
DRegisterValue.cpp162 RegisterValue::Type RegisterValue::SetType(const RegisterInfo *reg_info) { in SetType() function in RegisterValue

12