Phasor  01.00.10.059
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Namespaces | Macros | Functions | Variables
tags.cpp File Reference
#include "tags.h"
#include <map>
#include "Addresses.h"

Namespaces

namespace  halo
 

Macros

#define ENDIAN_SWAP32(tmp)
 

Functions

s_tag_entry * halo::LookupTag (ident tagId)
 
std::string halo::GetTagCacheKey (s_tag_type type, const std::string &tag_name)
 
s_tag_entry * halo::LookupTag (s_tag_type type, const std::string &tag_name)
 
void halo::BuildTagCache ()
 

Variables

std::map< std::string,
s_tag_entry * > 
halo::tag_cache
 

Macro Definition Documentation

#define ENDIAN_SWAP32 (   tmp)
Value:
(tmp >> 24) |\
((tmp >> 8) & 0x0000ff00) |\
((tmp << 8) & 0x00ff0000) | \
(tmp << 24)