|
libTriton version 1.0 build 1599
|
#include <triton/pythonBindings.hpp>#include <triton/pythonUtils.hpp>#include <triton/exceptions.hpp>#include <triton/tritonTypes.hpp>#include <limits>Go to the source code of this file.
Namespaces | |
| namespace | triton |
| The Triton namespace. | |
| namespace | triton::bindings |
| The Bindings namespace. | |
| namespace | triton::bindings::python |
| The Python namespace. | |
Macros | |
| #define | tt_GET_OB_DIGIT(obj) obj->ob_digit |
| #define | tt_SET_OB_DIGIT(obj, n) Py_SIZE(obj) = n |
| #define | tt_PyLong_IsNegative(obj) (Py_SIZE(obj) < 0) |
| #define | tt_PyLong_DigitCount(obj) (tt_PyLong_IsNegative(obj) ? -Py_SIZE(obj) : Py_SIZE(obj)) |
| #define tt_PyLong_DigitCount | ( | obj | ) | (tt_PyLong_IsNegative(obj) ? -Py_SIZE(obj) : Py_SIZE(obj)) |