Home
last modified time | relevance | path

Searched refs:EType (Results 1 – 25 of 1344) sorted by relevance

12345678910>>...54

/dports/x11-toolkits/fox17/fox-1.7.77/include/
H A DFXElement.h33 inline EType* construct(EType* ptr){ in construct()
40 inline EType* construct(EType* ptr,Arg arg){ in construct()
48 ptr->~EType(); in destruct()
82 inline void bitcopyElms(EType* dst,const EType* src,FXuval n){ in bitcopyElms()
89 inline void moveElms(EType* dst,const EType* src,FXuval n){ in moveElms()
103 inline void bitmoveElms(EType* dst,const EType* src,FXuval n){ in bitmoveElms()
110 inline EType& swap(EType& dst,EType& src){ in swap()
118 inline void swapElms(EType* dst,const EType* src,FXuval n){ in swapElms()
125 inline FXbool equalElms(const EType* dst,const EType* src,FXuval n){ in equalElms()
161 inline FXbool dupElms(EType*& ptr,const EType* src,FXuval n){ in dupElms()
[all …]
H A DFXRefPtr.h28 template<typename EType>
31 EType* ptr;
39 FXRefPtr(EType* p):ptr(p){ in FXRefPtr()
54 FXRefPtr<EType>& swap(FXRefPtr<EType>& other){ in swap()
60 FXRefPtr<EType>& operator=(EType* src){
61 FXRefPtr<EType> tmp(src);
67 FXRefPtr<EType>& operator=(const FXRefPtr<EType>& src){
68 FXRefPtr<EType> tmp(src);
75 FXRefPtr<EType> tmp(src);
106 FXRefPtr<EType> tmp; in clear()
[all …]
H A DFXAutoPtr.h30 template<typename EType>
32 EType* ptr;
33 explicit FXAutoPtrRef(EType* src):ptr(src){ } in FXAutoPtrRef()
39 template<typename EType>
42 EType* ptr;
70 operator EType*() const { return ptr; }
79 EType& operator*() const { return *ptr; }
82 EType* operator->() const { return ptr; }
88 EType* release(){ EType* tmp=ptr; ptr=NULL; return tmp; } in release()
99 template <typename EType> FXStream& operator<<(FXStream& store,const FXAutoPtr<EType>& obj){
[all …]
H A DFXArray.h43 template<typename EType>
54 FXArray(const FXArray<EType>& src){ in FXArray()
86 FXArray<EType>& operator=(const FXArray<EType>& src){
92 EType* data(){ return reinterpret_cast<EType*>(ptr); } in data()
93 const EType* data() const { return reinterpret_cast<const EType*>(ptr); } in data()
104 EType& head(){ return data()[0]; } in head()
112 FXArray<EType>& adopt(FXArray<EType>& src){ in adopt()
118 FXbool assign(const EType& src){ in assign()
164 FXbool prepend(const EType& src){ in prepend()
187 FXbool append(const EType& src){ in append()
[all …]
H A DFXAtomic.h144 template <typename EType>
145 inline EType* atomicSet(EType *volatile *ptr,EType* v){ in atomicSet()
151 template <typename EType>
152 inline EType* atomicAdd(EType *volatile *ptr,FXival v){ in atomicAdd()
153 return (EType*)atomicAdd((volatile FXptr*)ptr,v*((FXival)sizeof(EType))); in atomicAdd()
158 template <typename EType>
159 inline EType* atomicCas(EType *volatile *ptr,EType* expect,EType* v){ in atomicCas()
165 template <typename EType>
166 inline FXbool atomicBoolCas(EType *volatile *ptr,EType* expect,EType* v){ in atomicBoolCas()
172 template <typename EType>
[all …]
/dports/audio/gogglesmm/gogglesmm-1.2.2/cfox/include/
H A DFXElement.h33 inline EType* construct(EType* ptr){ in construct()
40 inline EType* construct(EType* ptr,Arg arg){ in construct()
48 ptr->~EType(); in destruct()
82 inline void bitcopyElms(EType* dst,const EType* src,FXuval n){ in bitcopyElms()
89 inline void moveElms(EType* dst,const EType* src,FXuval n){ in moveElms()
103 inline void bitmoveElms(EType* dst,const EType* src,FXuval n){ in bitmoveElms()
110 inline EType& swap(EType& dst,EType& src){ in swap()
118 inline void swapElms(EType* dst,const EType* src,FXuval n){ in swapElms()
125 inline FXbool equalElms(const EType* dst,const EType* src,FXuval n){ in equalElms()
161 inline FXbool dupElms(EType*& ptr,const EType* src,FXuval n){ in dupElms()
[all …]
H A DFXRefPtr.h28 template<typename EType>
31 EType* ptr;
39 FXRefPtr(EType* p):ptr(p){ in FXRefPtr()
54 FXRefPtr<EType>& swap(FXRefPtr<EType>& other){ in swap()
60 FXRefPtr<EType>& operator=(EType* src){
61 FXRefPtr<EType> tmp(src);
67 FXRefPtr<EType>& operator=(const FXRefPtr<EType>& src){
68 FXRefPtr<EType> tmp(src);
75 FXRefPtr<EType> tmp(src);
106 FXRefPtr<EType> tmp; in clear()
[all …]
H A DFXAutoPtr.h30 template<typename EType>
32 EType* ptr;
33 explicit FXAutoPtrRef(EType* src):ptr(src){ } in FXAutoPtrRef()
39 template<typename EType>
42 EType* ptr;
70 operator EType*() const { return ptr; }
79 EType& operator*() const { return *ptr; }
82 EType* operator->() const { return ptr; }
88 EType* release(){ EType* tmp=ptr; ptr=NULL; return tmp; } in release()
99 template <typename EType> FXStream& operator<<(FXStream& store,const FXAutoPtr<EType>& obj){
[all …]
H A DFXArray.h43 template<typename EType>
54 FXArray(const FXArray<EType>& src){ in FXArray()
86 FXArray<EType>& operator=(const FXArray<EType>& src){
92 EType* data(){ return reinterpret_cast<EType*>(ptr); } in data()
93 const EType* data() const { return reinterpret_cast<const EType*>(ptr); } in data()
104 EType& head(){ return data()[0]; } in head()
112 FXArray<EType>& adopt(FXArray<EType>& src){ in adopt()
118 FXbool assign(const EType& src){ in assign()
164 FXbool prepend(const EType& src){ in prepend()
187 FXbool append(const EType& src){ in append()
[all …]
H A DFXAtomic.h144 template <typename EType>
145 inline EType* atomicSet(EType *volatile *ptr,EType* v){ in atomicSet()
151 template <typename EType>
152 inline EType* atomicAdd(EType *volatile *ptr,FXival v){ in atomicAdd()
153 return (EType*)atomicAdd((volatile FXptr*)ptr,v*((FXival)sizeof(EType))); in atomicAdd()
158 template <typename EType>
159 inline EType* atomicCas(EType *volatile *ptr,EType* expect,EType* v){ in atomicCas()
165 template <typename EType>
166 inline FXbool atomicBoolCas(EType *volatile *ptr,EType* expect,EType* v){ in atomicBoolCas()
172 template <typename EType>
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/include/util/image/
H A Dimage_io.hpp60 enum EType { enum in CImageIO
85 static EType GetTypeFromMagic(CNcbiIstream& istr);
86 static EType GetTypeFromMagic(const string& file);
91 static EType GetTypeFromFileName(const string& file);
101 EType* type);
104 EType* type);
117 EType type,
120 EType type = eUnknown,
126 EType type,
130 EType type = eUnknown,
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/serial/datatool/
H A Ddtdaux.hpp70 enum EType { enum in DTDEntity
89 void SetType(EType type);
90 EType GetType(void) const;
102 EType m_Type;
119 enum EType { enum in DTDAttribute
158 void SetType(EType type);
160 EType GetType(void) const;
199 EType m_Type;
220 enum EType { enum in DTDElement
269 void SetType( EType type);
[all …]
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/src/serial/datatool/
H A Ddtdaux.hpp70 enum EType { enum in DTDEntity
89 void SetType(EType type);
90 EType GetType(void) const;
102 EType m_Type;
119 enum EType { enum in DTDAttribute
158 void SetType(EType type);
160 EType GetType(void) const;
199 EType m_Type;
220 enum EType { enum in DTDElement
269 void SetType( EType type);
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/util/image/
H A Dimage_io.cpp61 CImageIO::EType m_Type;
101 EType type = eUnknown; in GetTypeFromMagic()
120 CImageIO::EType m_Type;
166 EType* type) in ReadImageInfo()
175 EType* type) in ReadImageInfo()
182 EType image_type = GetTypeFromMagic(istr); in ReadImageInfo()
235 EType type) in ReadSubImage()
244 EType type) in ReadSubImage()
266 EType type, ECompress compress) in WriteImage()
288 EType type, ECompress compress) in WriteImage()
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/pubseq_gateway/client/
H A Dperformance.hpp45 enum EType : size_t enum
66 static const char* Name(EType t);
76 void Set(EType t) in Set()
91 duration::rep Get(EType t) const { return duration(m_Data[t].time_since_epoch()).count(); } in Get()
119 SMetricType::EType type = SMetricType::eError;
128 template <SMetricType::EType type>
148 message.type = static_cast<SMetricType::EType>(type); in operator >>()
174 SMetricType::EType type;
177 SPoint(SMetricType::EType t, EIndex i) : type(t), index(i) {} in SPoint()
196 void Add(double milliseconds, SMetricType::EType type);
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/include/util/diff/
H A Ddiff.hpp72 enum EType { enum in CDiffOperation
92 CDiffOperation(EType operation, CTempString str);
95 EType GetOperation() const { return m_Operation; } in GetOperation()
157 void SetOperation(EType operation);
168 EType m_Operation; ///< Type of the current diff operation
255 void Prepend(CDiffOperation::EType operation, CTempString str);
259 void Append(CDiffOperation::EType operation, CTempString str);
522 void CDiffOperation::SetOperation(EType operation) in SetOperation()
564 void CDiffList::Prepend(CDiffOperation::EType operation, CTempString str) in Prepend()
578 void CDiffList::Append(CDiffOperation::EType operation, CTempString str) in Append()
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/include/objtools/data_loaders/genbank/impl/
H A Dprocessors.hpp58 EType GetType(void) const;
91 EType GetType(void) const;
107 EType GetType(void) const;
129 EType GetType(void) const;
145 EType GetType(void) const;
201 EType GetType(void) const;
225 EType GetType(void) const;
271 EType GetType(void) const;
299 EType GetType(void) const;
329 EType GetType(void) const;
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/include/objtools/data_loaders/genbank/impl/
H A Dprocessors.hpp58 EType GetType(void) const;
91 EType GetType(void) const;
107 EType GetType(void) const;
129 EType GetType(void) const;
145 EType GetType(void) const;
201 EType GetType(void) const;
225 EType GetType(void) const;
271 EType GetType(void) const;
299 EType GetType(void) const;
329 EType GetType(void) const;
[all …]
/dports/net/rclone/rclone-1.57.0/vendor/github.com/jcmturner/gokrb5/crypto/
H A Dcrypto.go16 func GetEtype(id int32) (etype.EType, error) {
42 func GetChksumEtype(id int32) (etype.EType, error) {
71 … realm string, etypeID int32, pas types.PADataSequence) (types.EncryptionKey, etype.EType, error) {
96 if etypeID != eti[0].EType {
97 et, err = GetEtype(eti[0].EType)
112 if etypeID != et2[0].EType {
113 et, err = GetEtype(et2[0].EType)
152 EType: key.KeyType,
/dports/net/rclone/rclone-1.57.0/vendor/github.com/jcmturner/gokrb5/v8/crypto/
H A Dcrypto.go16 func GetEtype(id int32) (etype.EType, error) {
42 func GetChksumEtype(id int32) (etype.EType, error) {
71 … realm string, etypeID int32, pas types.PADataSequence) (types.EncryptionKey, etype.EType, error) {
96 if etypeID != eti[0].EType {
97 et, err = GetEtype(eti[0].EType)
112 if etypeID != et2[0].EType {
113 et, err = GetEtype(et2[0].EType)
152 EType: key.KeyType,
/dports/devel/git-lfs/git-lfs-3.0.2/vendor/github.com/jcmturner/gokrb5/v8/crypto/
H A Dcrypto.go16 func GetEtype(id int32) (etype.EType, error) {
42 func GetChksumEtype(id int32) (etype.EType, error) {
71 … realm string, etypeID int32, pas types.PADataSequence) (types.EncryptionKey, etype.EType, error) {
96 if etypeID != eti[0].EType {
97 et, err = GetEtype(eti[0].EType)
112 if etypeID != et2[0].EType {
113 et, err = GetEtype(et2[0].EType)
152 EType: key.KeyType,
/dports/security/vault/vault-1.8.2/vendor/github.com/jcmturner/gokrb5/v8/crypto/
H A Dcrypto.go16 func GetEtype(id int32) (etype.EType, error) {
42 func GetChksumEtype(id int32) (etype.EType, error) {
71 … realm string, etypeID int32, pas types.PADataSequence) (types.EncryptionKey, etype.EType, error) {
96 if etypeID != eti[0].EType {
97 et, err = GetEtype(eti[0].EType)
112 if etypeID != et2[0].EType {
113 et, err = GetEtype(et2[0].EType)
152 EType: key.KeyType,
/dports/security/vault/vault-1.8.2/vendor/github.com/jcmturner/gokrb5/crypto/
H A Dcrypto.go16 func GetEtype(id int32) (etype.EType, error) {
42 func GetChksumEtype(id int32) (etype.EType, error) {
71 … realm string, etypeID int32, pas types.PADataSequence) (types.EncryptionKey, etype.EType, error) {
96 if etypeID != eti[0].EType {
97 et, err = GetEtype(eti[0].EType)
112 if etypeID != et2[0].EType {
113 et, err = GetEtype(et2[0].EType)
152 EType: key.KeyType,
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vault-plugin-auth-kerberos/vendor/github.com/jcmturner/gokrb5/v8/crypto/
H A Dcrypto.go16 func GetEtype(id int32) (etype.EType, error) {
42 func GetChksumEtype(id int32) (etype.EType, error) {
71 … realm string, etypeID int32, pas types.PADataSequence) (types.EncryptionKey, etype.EType, error) {
96 if etypeID != eti[0].EType {
97 et, err = GetEtype(eti[0].EType)
112 if etypeID != et2[0].EType {
113 et, err = GetEtype(et2[0].EType)
152 EType: key.KeyType,
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/jcmturner/gokrb5/v8/crypto/
H A Dcrypto.go16 func GetEtype(id int32) (etype.EType, error) {
42 func GetChksumEtype(id int32) (etype.EType, error) {
71 … realm string, etypeID int32, pas types.PADataSequence) (types.EncryptionKey, etype.EType, error) {
96 if etypeID != eti[0].EType {
97 et, err = GetEtype(eti[0].EType)
112 if etypeID != et2[0].EType {
113 et, err = GetEtype(et2[0].EType)
152 EType: key.KeyType,

12345678910>>...54