Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPostOrderIterator.h59 SetType Visited;
73 template<class SetType>
75 SetType &Visited;
129 po_iterator(SetType &S) in po_iterator()
204 template<class T, class SetType>
205 po_ext_iterator<T, SetType> po_ext_begin(T G, SetType &S) { in po_ext_begin()
209 template<class T, class SetType>
210 po_ext_iterator<T, SetType> po_ext_end(T G, SetType &S) { in po_ext_end()
215 iterator_range<po_ext_iterator<T, SetType>> post_order_ext(const T &G, SetType &S) { in post_order_ext()
252 ipo_ext_iterator<T, SetType> ipo_ext_begin(const T &G, SetType &S) { in ipo_ext_begin()
[all …]
H A DDepthFirstIterator.h52 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 =
112 inline df_iterator(NodeRef Node, SetType &S) in df_iterator()
113 : df_iterator_storage<SetType, ExtStorage>(S) { in df_iterator()
118 inline df_iterator(SetType &S) in df_iterator()
119 : 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.cpp341 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()
366 m_curr_packet.SetType(ETM3_PKT_TRIGGER); in processHeaderByte()
379 m_curr_packet.SetType(ETM3_PKT_OOO_DATA); in processHeaderByte()
394 m_curr_packet.SetType(ETM3_PKT_I_SYNC_CYCLE); in processHeaderByte()
441 m_curr_packet.SetType(ETM3_PKT_NORM_DATA); in processHeaderByte()
479 m_curr_packet.SetType(ETM3_PKT_IGNORE); in processHeaderByte()
484 m_curr_packet.SetType(ETM3_PKT_CONTEXT_ID); in processHeaderByte()
[all …]
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dmake_hash.c211 #define SetType(n,t) \ macro
326 SetType(nn, BOOLEAN); in main()
329 SetType(nn, NUMBER); in main()
332 SetType(nn, STRING); in main()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp915 SetType(type_sp); in TypeImpl()
920 SetType(compiler_type); in TypeImpl()
925 SetType(type_sp, dynamic); in TypeImpl()
931 SetType(static_type, dynamic_type); in TypeImpl()
934 void TypeImpl::SetType(const lldb::TypeSP &type_sp) { in SetType() function in TypeImpl
945 void TypeImpl::SetType(const CompilerType &compiler_type) { in SetType() function in TypeImpl
950 void TypeImpl::SetType(const lldb::TypeSP &type_sp, in SetType() function in TypeImpl
952 SetType(type_sp); in SetType()
956 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/lldb/include/lldb/Symbol/
H A DType.h571 void SetType(const lldb::TypeSP &type_sp);
573 void SetType(const CompilerType &compiler_type);
575 void SetType(const lldb::TypeSP &type_sp, const CompilerType &dynamic);
577 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/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp165 SetType &S = I.second; in constrain()
188 SetType &S = getOrCreate(I.first); in assign_if()
275 bool TypeSetByHwMode::intersect(SetType &Out, const SetType &In) { in intersect()
307 auto subtract = [](const SetType &A, const SetType &B) { in intersect()
308 SetType Diff = A; in intersect()
314 SetType OutOnly = subtract(Out, In); in intersect()
336 SetType InOnly = subtract(In, Out); in intersect()
394 TypeSetByHwMode::SetType &S = I.second; in forceArbitrary()
747 TypeSetByHwMode::SetType &VS = V.get(M); in EnforceSameNumElts()
748 TypeSetByHwMode::SetType &WS = W.get(M); in EnforceSameNumElts()
[all …]
H A DCodeGenDAGPatterns.h196 using SetType = MachineValueTypeSet; member
208 SetType &getOrCreate(unsigned Mode) { in getOrCreate()
254 bool intersect(SetType &Out, const SetType &In);
334 void expandOverloads(TypeSetByHwMode::SetType &Out,
335 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/Utility/
H A DRegisterValue.h95 void SetType(RegisterValue::Type type) { m_type = type; } in SetType() function
97 RegisterValue::Type SetType(const RegisterInfo &reg_info);
H A DEvent.h207 void SetType(uint32_t new_type) { m_type = new_type; } in SetType() function
H A DStructuredData.h91 void SetType(lldb::StructuredDataType t) { m_type = t; } in SetType() function
390 SetType(lldb::eStructuredDataTypeInvalid); in Dictionary()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointResource.h39 void SetType(bool read, bool write);
H A DBreakpointSite.h199 void SetType(BreakpointSite::Type type) { m_type = type; } in SetType() function
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.cpp286 symbol.SetType(eSymbolTypeAbsolute); in ParseSymtab()
290 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/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp104 dsym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointResource.cpp38 void WatchpointResource::SetType(bool read, bool write) { in SetType() function in WatchpointResource
/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.cpp199 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