EvEmu
0.8.4
11 September 2021
|
#include "eve-common.h"
#include "marshal/EVEMarshal.h"
#include "marshal/EVEUnmarshal.h"
#include "marshal/EVEMarshalOpcodes.h"
#include "python/classes/PyDatabase.h"
#include "python/PyDumpVisitor.h"
#include "python/PyVisitor.h"
#include "python/PyRep.h"
#include "utils/EVEUtils.h"
Go to the source code of this file.
Macros | |
#define | PyLong_SHIFT 15 |
#define | PyLong_BASE (1 << PyLong_SHIFT) |
#define | PyLong_MASK ((int)(PyLong_BASE - 1)) |
#define | LONG_BIT_PyLong_SHIFT (8*sizeof(long) - PyLong_SHIFT) |
#define | INT32_MAX 2147483647L |
#define | Py_IS_INFINITY(X) ( !finite( X ) && !isnan( X ) ) |
Functions | |
PyTuple * | new_tuple (int64 arg1) |
PyTuple * | new_tuple (int64 arg1, int64 arg2) |
PyTuple * | new_tuple (const char *arg1) |
PyTuple * | new_tuple (const char *arg1, const char *arg2) |
PyTuple * | new_tuple (const char *arg1, const char *arg2, const char *arg3) |
PyTuple * | new_tuple (const char *arg1, const char *arg2, PyTuple *arg3) |
PyTuple * | new_tuple (const char *arg1, PyRep *arg2, PyRep *arg3) |
PyTuple * | new_tuple (PyRep *arg1, PyRep *arg2, PyRep *arg3) |
PyTuple * | new_tuple (PyRep *arg1, PyRep *arg2) |
PyTuple * | new_tuple (PyRep *arg1) |
Variables | |
const char *const | s_mTypeString [] |
#define INT32_MAX 2147483647L |
Definition at line 253 of file PyRep.cpp.
Referenced by PyFloat::hash().
#define LONG_BIT_PyLong_SHIFT (8*sizeof(long) - PyLong_SHIFT) |
Referenced by PyLong::hash().
#define Py_IS_INFINITY | ( | X | ) | ( !finite( X ) && !isnan( X ) ) |
Referenced by PyFloat::hash().
#define PyLong_BASE (1 << PyLong_SHIFT) |
#define PyLong_MASK ((int)(PyLong_BASE - 1)) |
Referenced by PyLong::hash().
#define PyLong_SHIFT 15 |
Definition at line 1160 of file PyRep.cpp.
References PyTuple::SetItem().
Referenced by Client::_SendPingRequest(), ClientSession::_Set(), ClientSession::ClientSession(), StaticDataMgr::CreateHeader(), PyAddress::Encode(), PyCachedObject::Encode(), ClientSession::EncodeChanges(), and ShipSE::MakeSlimItem().
Definition at line 1167 of file PyRep.cpp.
References PyTuple::SetItem().
PyTuple* new_tuple | ( | const char * | arg1 | ) |
Definition at line 1178 of file PyRep.cpp.
References PyTuple::SetItem().
PyTuple* new_tuple | ( | const char * | arg1, |
const char * | arg2 | ||
) |
Definition at line 1185 of file PyRep.cpp.
References PyTuple::SetItem().
PyTuple* new_tuple | ( | const char * | arg1, |
const char * | arg2, | ||
const char * | arg3 | ||
) |
Definition at line 1193 of file PyRep.cpp.
References PyTuple::SetItem().
Definition at line 1205 of file PyRep.cpp.
References PyTuple::SetItem().
Definition at line 1214 of file PyRep.cpp.
References PyTuple::SetItem().
Definition at line 1223 of file PyRep.cpp.
References PyTuple::SetItem().
Definition at line 1232 of file PyRep.cpp.
References PyTuple::SetItem().
Definition at line 1240 of file PyRep.cpp.
References PyTuple::SetItem().
const char* const s_mTypeString[] |
Lookup table for PyRep type object type names.
Definition at line 39 of file PyRep.cpp.
Referenced by PyRep::TypeString().