SNAP Library 2.3, User Reference  2014-06-16 11:58:46
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TUInt64 Class Reference

#include <dt.h>

Public Member Functions

 TUInt64 ()
 
 TUInt64 (const TUInt64 &Int)
 
 TUInt64 (const uint64 &Int)
 
 TUInt64 (const uint &MsVal, const uint &LsVal)
 
 TUInt64 (void *Pt)
 
 operator uint64 () const
 
 TUInt64 (TSIn &SIn)
 
void Load (TSIn &SIn)
 
void Save (TSOut &SOut) const
 
void LoadXml (const PXmlTok &XmlTok, const TStr &Nm)
 
void SaveXml (TSOut &SOut, const TStr &Nm) const
 
TUInt64operator= (const TUInt64 &Int)
 
TUInt64operator+= (const TUInt64 &Int)
 
TUInt64operator-= (const TUInt64 &Int)
 
TUInt64 operator++ (int)
 
TUInt64 operator-- (int)
 
int GetMemUsed () const
 
int GetPrimHashCd () const
 
int GetSecHashCd () const
 
uint GetMsVal () const
 
uint GetLsVal () const
 
TStr GetStr () const
 

Static Public Member Functions

static TStr GetStr (const TUInt64 &Int)
 
static TStr GetHexStr (const TUInt64 &Int)
 
static TStr GetKiloStr (const uint64 &Val)
 
static TStr GetMegaStr (const uint64 &Val)
 

Public Attributes

uint64 Val
 

Static Public Attributes

static const TUInt64 Mn
 
static const TUInt64 Mx
 

Detailed Description

Definition at line 1222 of file dt.h.

Constructor & Destructor Documentation

TUInt64::TUInt64 ( )
inline

Definition at line 1229 of file dt.h.

1229 : Val(0){}
uint64 Val
Definition: dt.h:1224
TUInt64::TUInt64 ( const TUInt64 Int)
inline

Definition at line 1230 of file dt.h.

1230 : Val(Int.Val){}
uint64 Val
Definition: dt.h:1224
TUInt64::TUInt64 ( const uint64 Int)
inline

Definition at line 1231 of file dt.h.

1231 : Val(Int){}
uint64 Val
Definition: dt.h:1224
TUInt64::TUInt64 ( const uint MsVal,
const uint LsVal 
)
inline

Definition at line 1232 of file dt.h.

1232  : Val(0){
1233  Val=(((uint64)MsVal) << 32) | ((uint64)LsVal);}
unsigned long long uint64
Definition: bd.h:38
uint64 Val
Definition: dt.h:1224
TUInt64::TUInt64 ( void *  Pt)
inlineexplicit

Definition at line 1234 of file dt.h.

1234  : Val(0){
1235  TConv_Pt64Ints32 Conv(Pt); Val=Conv.GetUInt64();}
uint64 Val
Definition: dt.h:1224
TUInt64::TUInt64 ( TSIn SIn)
inlineexplicit

Definition at line 1237 of file dt.h.

1237 {SIn.Load(Val);}
void Load(bool &Bool)
Definition: fl.h:84
uint64 Val
Definition: dt.h:1224

Member Function Documentation

static TStr TUInt64::GetHexStr ( const TUInt64 Int)
inlinestatic

Definition at line 1268 of file dt.h.

1268 {return TStr::Fmt("%llX", Int.Val);}
uint64 Val
Definition: dt.h:1224
static TStr Fmt(const char *FmtStr,...)
Definition: dt.cpp:1599
static TStr TUInt64::GetKiloStr ( const uint64 Val)
inlinestatic

Definition at line 1271 of file dt.h.

1271  {
1272  if (Val>100*1000){return GetStr(Val/1000)+"K";}
1273  else if (Val>1000){return GetStr(Val/1000)+"."+GetStr((Val%1000)/100)+"K";}
1274  else {return GetStr(Val);}}
TStr GetStr() const
Definition: dt.h:1266
uint64 Val
Definition: dt.h:1224
uint TUInt64::GetLsVal ( ) const
inline

Definition at line 1255 of file dt.h.

1255  {
1256  return (uint)(Val & 0xffffffff);}
unsigned int uint
Definition: bd.h:11
uint64 Val
Definition: dt.h:1224
static TStr TUInt64::GetMegaStr ( const uint64 Val)
inlinestatic

Definition at line 1275 of file dt.h.

1275  {
1276  if (Val>100*1000000){return GetStr(Val/1000000)+"M";}
1277  else if (Val>1000000){
1278  return GetStr(Val/1000000)+"."+GetStr((Val%1000000)/100000)+"M";}
1279  else {return GetKiloStr(Val);}}
static TStr GetKiloStr(const uint64 &Val)
Definition: dt.h:1271
TStr GetStr() const
Definition: dt.h:1266
uint64 Val
Definition: dt.h:1224
int TUInt64::GetMemUsed ( ) const
inline

Definition at line 1248 of file dt.h.

1248 {return sizeof(TUInt64);}
TUInt64()
Definition: dt.h:1229
uint TUInt64::GetMsVal ( ) const
inline

Definition at line 1253 of file dt.h.

1253  {
1254  return (uint)(Val >> 32);}
unsigned int uint
Definition: bd.h:11
uint64 Val
Definition: dt.h:1224
int TUInt64::GetPrimHashCd ( ) const
inline

Definition at line 1250 of file dt.h.

1250 { return (int)GetMsVal() + (int)GetLsVal(); } //TODO: to check
uint GetLsVal() const
Definition: dt.h:1255
uint GetMsVal() const
Definition: dt.h:1253
int TUInt64::GetSecHashCd ( ) const
inline

Definition at line 1251 of file dt.h.

1251 { return ((int)GetMsVal() + (int)GetLsVal()) / 0x10; } //TODO: to check
uint GetLsVal() const
Definition: dt.h:1255
uint GetMsVal() const
Definition: dt.h:1253
TStr TUInt64::GetStr ( ) const
inline

Definition at line 1266 of file dt.h.

1266 {return TStr::Fmt("%llu", Val);}
uint64 Val
Definition: dt.h:1224
static TStr Fmt(const char *FmtStr,...)
Definition: dt.cpp:1599
static TStr TUInt64::GetStr ( const TUInt64 Int)
inlinestatic

Definition at line 1267 of file dt.h.

1267 {return TStr::Fmt("%llu", Int.Val);}
uint64 Val
Definition: dt.h:1224
static TStr Fmt(const char *FmtStr,...)
Definition: dt.cpp:1599
void TUInt64::Load ( TSIn SIn)
inline

Definition at line 1238 of file dt.h.

1238 {SIn.Load(Val);}
void Load(bool &Bool)
Definition: fl.h:84
uint64 Val
Definition: dt.h:1224
void TUInt64::LoadXml ( const PXmlTok XmlTok,
const TStr Nm 
)

Definition at line 2151 of file dt.cpp.

2151  {
2152  XLoadHd(Nm);
2153  Val=TXmlObjSer::GetInt64Arg(XmlTok, "Val");
2154 }
#define XLoadHd(Nm)
Definition: bd.h:312
static int64 GetInt64Arg(const PXmlTok &XmlTok, const TStr &Nm)
Definition: xml.cpp:89
uint64 Val
Definition: dt.h:1224
TUInt64::operator uint64 ( ) const
inline

Definition at line 1236 of file dt.h.

1236 {return Val;}
uint64 Val
Definition: dt.h:1224
TUInt64 TUInt64::operator++ ( int  )
inline

Definition at line 1246 of file dt.h.

1246 {Val++; return *this;}
uint64 Val
Definition: dt.h:1224
TUInt64& TUInt64::operator+= ( const TUInt64 Int)
inline

Definition at line 1244 of file dt.h.

1244 {Val+=Int.Val; return *this;}
uint64 Val
Definition: dt.h:1224
TUInt64 TUInt64::operator-- ( int  )
inline

Definition at line 1247 of file dt.h.

1247 {Val--; return *this;}
uint64 Val
Definition: dt.h:1224
TUInt64& TUInt64::operator-= ( const TUInt64 Int)
inline

Definition at line 1245 of file dt.h.

1245 {Val-=Int.Val; return *this;}
uint64 Val
Definition: dt.h:1224
TUInt64& TUInt64::operator= ( const TUInt64 Int)
inline

Definition at line 1243 of file dt.h.

1243 {Val=Int.Val; return *this;}
uint64 Val
Definition: dt.h:1224
void TUInt64::Save ( TSOut SOut) const
inline

Definition at line 1239 of file dt.h.

1239 {SOut.Save(Val);}
void Save(const bool &Bool)
Definition: fl.h:173
uint64 Val
Definition: dt.h:1224
void TUInt64::SaveXml ( TSOut SOut,
const TStr Nm 
) const

Definition at line 2156 of file dt.cpp.

2156  {
2157  XSaveBETagArg(Nm, "Val", TUInt64::GetStr(Val));
2158 }
#define XSaveBETagArg(Nm, ArgNm, ArgVal)
Definition: bd.h:327
TStr GetStr() const
Definition: dt.h:1266
uint64 Val
Definition: dt.h:1224

Member Data Documentation

const TUInt64 TUInt64::Mn
static

Definition at line 1226 of file dt.h.

const TUInt64 TUInt64::Mx
static

Definition at line 1227 of file dt.h.

uint64 TUInt64::Val

Definition at line 1224 of file dt.h.


The documentation for this class was generated from the following files: