#include <ndb_global.h>#include "NdbApiSignal.hpp"#include "NdbImpl.hpp"#include <NdbOperation.hpp>#include <NdbTransaction.hpp>#include <NdbEventOperation.hpp>#include <NdbEventOperationImpl.hpp>#include <NdbRecAttr.hpp>#include <md5_hash.hpp>#include <NdbSleep.h>#include <NdbOut.hpp>#include <ndb_limits.h>#include "API.hpp"#include <NdbEnv.h>#include <BaseString.hpp>Include dependency graph for Ndb.cpp:

Go to the source code of this file.
Functions | |
| Uint32 | convertEndian (Uint32 Data) |
Definition at line 1157 of file Ndb.cpp.
Referenced by NdbOperation::setValue().
01158 { 01159 #ifdef WORDS_BIGENDIAN 01160 Uint32 t1, t2, t3, t4; 01161 t4 = (Data >> 24) & 255; 01162 t3 = (Data >> 16) & 255; 01163 t4 = t4 + (t3 << 8); 01164 t2 = (Data >> 8) & 255; 01165 t4 = t4 + (t2 << 16); 01166 t1 = Data & 255; 01167 t4 = t4 + (t1 << 24); 01168 return t4; 01169 #else 01170 return Data; 01171 #endif 01172 }
Here is the caller graph for this function:

1.4.7

