Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPostOrderIterator.h58 template<class SetType, bool External>
60 SetType Visited;
74 template<class SetType>
75 class po_iterator_storage<SetType, true> {
76 SetType &Visited;
79 po_iterator_storage(SetType &VSet) : Visited(VSet) {} in po_iterator_storage()
95 class SetType = SmallPtrSet<typename GraphTraits<GraphT>::NodeRef, 8>,
97 class po_iterator : public po_iterator_storage<SetType, ExtStorage> {
125 po_iterator(NodeRef BB, SetType &S) in po_iterator()
126 : po_iterator_storage<SetType, ExtStorage>(S) { in po_iterator()
[all …]
H A DDepthFirstIterator.h50 template<class SetType, bool External> // Non-external set
53 SetType Visited;
56 template<class SetType>
57 class df_iterator_storage<SetType, true> {
59 df_iterator_storage(SetType &VSet) : Visited(VSet) {} in df_iterator_storage()
62 SetType &Visited;
83 class SetType =
86 class df_iterator : public df_iterator_storage<SetType, ExtStorage> {
116 inline df_iterator(NodeRef Node, SetType &S) in df_iterator()
117 : df_iterator_storage<SetType, ExtStorage>(S) { in df_iterator()
[all …]
H A 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/contrib/opencsd/decoder/source/etmv3/
H A 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/contrib/ncurses/ncurses/tinfo/
H A Dmake_hash.c211 #define SetType(n,t) \ macro
331 SetType(nn, BOOLEAN); in main()
334 SetType(nn, NUMBER); in main()
337 SetType(nn, STRING); in main()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp942 SetType(type_sp); in TypeImpl()
947 SetType(compiler_type); in TypeImpl()
952 SetType(type_sp, dynamic); in TypeImpl()
958 SetType(static_type, dynamic_type); in TypeImpl()
961 void TypeImpl::SetType(const lldb::TypeSP &type_sp) { in SetType() function in TypeImpl
972 void TypeImpl::SetType(const CompilerType &compiler_type) { in SetType() function in TypeImpl
977 void TypeImpl::SetType(const lldb::TypeSP &type_sp, in SetType() function in TypeImpl
979 SetType(type_sp); in SetType()
983 void TypeImpl::SetType(const CompilerType &compiler_type, in SetType() function in TypeImpl
/freebsd/contrib/opencsd/decoder/include/opencsd/ptm/
H A 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/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.cpp157 SetType &S = I.second; in constrain()
179 SetType &S = getOrCreate(I.first); in assign_if()
262 bool TypeSetByHwMode::intersect(SetType &Out, const SetType &In) { in intersect()
298 auto Leftovers = [&](const SetType &A, const SetType &B) { in intersect()
299 SetType Diff = A; in intersect()
305 SetType OutLeftovers = Leftovers(Out, In); in intersect()
317 SetType InLeftovers = Leftovers(In, Out); in intersect()
387 TypeSetByHwMode::SetType &S = I.second; in forceArbitrary()
501 TypeSetByHwMode::SetType &S = Small.get(M); in EnforceSmallerThan()
502 TypeSetByHwMode::SetType &B = Big.get(M); in EnforceSmallerThan()
[all …]
H A DCodeGenDAGPatterns.h188 using SetType = MachineValueTypeSet; member
198 SetType &getOrCreate(unsigned Mode) { return Map[Mode]; } in getOrCreate()
240 bool intersect(SetType &Out, const SetType &In);
320 void expandOverloads(TypeSetByHwMode::SetType &Out,
321 const TypeSetByHwMode::SetType &Legal) const;
/freebsd/contrib/opencsd/decoder/include/opencsd/etmv3/
H A 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/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h638 void SetType(const lldb::TypeSP &type_sp);
640 void SetType(const CompilerType &compiler_type);
642 void SetType(const lldb::TypeSP &type_sp, const CompilerType &dynamic);
644 void SetType(const CompilerType &compiler_type, const CompilerType &dynamic);
H A DSymbol.h170 void SetType(lldb::SymbolType type) { m_type = (lldb::SymbolType)type; } in SetType() function
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRegisterValue.h95 void SetType(RegisterValue::Type type) { m_type = type; }
97 RegisterValue::Type SetType(const RegisterInfo &reg_info);
93 void SetType(RegisterValue::Type type) { m_type = type; } SetType() function
H A DEvent.h207 void SetType(uint32_t new_type) { m_type = new_type; } in SetType() function
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointResource.h39 void SetType(bool read, bool write);
H A DBreakpointSite.h204 void SetType(BreakpointSite::Type type) { m_type = type; } in SetType() function
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.cpp282 symbol.SetType(eSymbolTypeAbsolute); in ParseSymtab()
286 symbol.SetType(SymbolType(COFFSymRef)); in ParseSymtab()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/PECOFF/
H A DSymbolVendorPECOFF.cpp102 dsym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/
H A DSymbolVendorWasm.cpp102 sym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointResource.cpp39 void WatchpointResource::SetType(bool read, bool write) { in SetType() function in WatchpointResource
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp133 dsym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DTypeSanitizer.cpp596 auto SetType = [&]() { in instrumentWithShadowUpdate() local
620 SetType(); in instrumentWithShadowUpdate()
638 SetType(); in instrumentWithShadowUpdate()
735 SetType(); in instrumentWithShadowUpdate()
/freebsd/crypto/heimdal/lib/asn1/
H A Dasn1parse.y201 %type <type> SetType
345 | SetType
519 SetType : kw_SET '{' /* ComponentTypeLists */ ComponentTypeList '}'
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBFunction.cpp212 sb_type.ref().SetType(function_type->shared_from_this()); in GetType()
/freebsd/contrib/opencsd/decoder/source/ptm/
H A Dtrc_pkt_proc_ptm.cpp220 m_curr_packet.SetType(PTM_PKT_NOTSYNC); in InitProcessorState()
371 m_curr_packet.SetType(PTM_PKT_A_SYNC); in waitASync()

12