A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
int64x64.cc File Reference
#include "int64x64.h"
#include <stdint.h>
#include <iostream>
#include <iomanip>
#include <sstream>
#include "assert.h"
#include "log.h"
+ Include dependency graph for int64x64.cc:

Go to the source code of this file.

Namespaces

 ns3
 Every class exported by the ns3 library is enclosed in the ns3 namespace.
 

Macros

#define HEXHILOW(hi, lo)
 

Functions

std::ostream & ns3::operator<< (std::ostream &os, const int64x64_t &val)
 Output streamer for int64x64_t. More...
 
std::istream & ns3::operator>> (std::istream &is, int64x64_t &val)
 Input streamer for int64x64_t. More...
 
static uint64_t ns3::ReadHiDigits (std::string str)
 
static uint64_t ns3::ReadLoDigits (std::string str)
 

Macro Definition Documentation

#define HEXHILOW (   hi,
  lo 
)
Value:
std::hex << std::setfill ('0') << std::right << " (0x" \
<< std::setw (16) << hi << " " \
<< std::setw (16) << lo \
<< std::dec << std::setfill (' ') << std::left << ")"

Referenced by ns3::operator<<().