Hackfut Security File Manager
Current Path:
/usr/include/python2.6
usr
/
include
/
python2.6
/
📁
..
📄
Python-ast.h
(19.61 KB)
📄
Python.h
(4.19 KB)
📄
abstract.h
(43.58 KB)
📄
asdl.h
(1.07 KB)
📄
ast.h
(230 B)
📄
bitset.h
(792 B)
📄
boolobject.h
(912 B)
📄
bufferobject.h
(922 B)
📄
bytearrayobject.h
(1.9 KB)
📄
bytes_methods.h
(3.19 KB)
📄
bytesobject.h
(1.42 KB)
📄
cStringIO.h
(1.95 KB)
📄
cellobject.h
(651 B)
📄
ceval.h
(5 KB)
📄
classobject.h
(2.87 KB)
📄
cobject.h
(1.83 KB)
📄
code.h
(3.44 KB)
📄
codecs.h
(4.9 KB)
📄
compile.h
(1.13 KB)
📄
complexobject.h
(1.5 KB)
📄
datetime.h
(8.42 KB)
📄
descrobject.h
(2.42 KB)
📄
dictobject.h
(5.83 KB)
📄
enumobject.h
(253 B)
📄
errcode.h
(1.33 KB)
📄
eval.h
(557 B)
📄
fileobject.h
(2.85 KB)
📄
floatobject.h
(4.94 KB)
📄
frameobject.h
(2.85 KB)
📄
funcobject.h
(2.92 KB)
📄
genobject.h
(891 B)
📄
graminit.h
(1.86 KB)
📄
grammar.h
(1.97 KB)
📄
import.h
(2.16 KB)
📄
intobject.h
(2.67 KB)
📄
intrcheck.h
(274 B)
📄
iterobject.h
(522 B)
📄
listobject.h
(2.45 KB)
📄
longintrepr.h
(2.26 KB)
📄
longobject.h
(5.45 KB)
📄
marshal.h
(713 B)
📄
metagrammar.h
(253 B)
📄
methodobject.h
(3.16 KB)
📄
modsupport.h
(5.24 KB)
📄
moduleobject.h
(609 B)
📄
node.h
(890 B)
📄
object.h
(36.52 KB)
📄
objimpl.h
(12.78 KB)
📄
opcode.h
(4.24 KB)
📄
osdefs.h
(942 B)
📄
parsetok.h
(1.74 KB)
📄
patchlevel.h
(1.4 KB)
📄
pgen.h
(253 B)
📄
pgenheaders.h
(1.12 KB)
📄
py_curses.h
(4.29 KB)
📄
pyarena.h
(2.63 KB)
📄
pyconfig-64.h
(30.5 KB)
📄
pyconfig.h
(162 B)
📄
pyctype.h
(1.05 KB)
📄
pydebug.h
(1.29 KB)
📄
pydtrace.h
(1.32 KB)
📄
pyerrors.h
(11.44 KB)
📄
pyexpat.h
(1.91 KB)
📄
pyfpe.h
(8.3 KB)
📄
pygetopt.h
(348 B)
📄
pymacconfig.h
(2.43 KB)
📄
pymactoolbox.h
(7.76 KB)
📄
pymath.h
(6.46 KB)
📄
pymem.h
(4.57 KB)
📄
pyport.h
(24.2 KB)
📄
pystate.h
(6.18 KB)
📄
pystrcmp.h
(463 B)
📄
pystrtod.h
(359 B)
📄
pythonrun.h
(6.94 KB)
📄
pythread.h
(1.41 KB)
📄
rangeobject.h
(646 B)
📄
setobject.h
(3 KB)
📄
sliceobject.h
(1.3 KB)
📄
stringobject.h
(7.69 KB)
📄
structmember.h
(2.83 KB)
📄
structseq.h
(862 B)
📄
symtable.h
(3.96 KB)
📄
sysmodule.h
(916 B)
📄
timefuncs.h
(442 B)
📄
token.h
(1.67 KB)
📄
traceback.h
(697 B)
📄
tupleobject.h
(2.07 KB)
📄
ucnhash.h
(861 B)
📄
unicodeobject.h
(51.08 KB)
📄
warnings.h
(635 B)
📄
weakrefobject.h
(2.37 KB)
Editing: longintrepr.h
#ifndef Py_LONGINTREPR_H #define Py_LONGINTREPR_H #ifdef __cplusplus extern "C" { #endif /* This is published for the benefit of "friend" marshal.c only. */ /* Parameters of the long integer representation. These shouldn't have to be changed as C should guarantee that a short contains at least 16 bits, but it's made changeable anyway. Note: 'digit' should be able to hold 2*MASK+1, and 'twodigits' should be able to hold the intermediate results in 'mul' (at most (BASE-1)*(2*BASE+1) == MASK*(2*MASK+3)). Also, x_sub assumes that 'digit' is an unsigned type, and overflow is handled by taking the result mod 2**N for some N > SHIFT. And, at some places it is assumed that MASK fits in an int, as well. long_pow() requires that SHIFT be divisible by 5. */ typedef unsigned short digit; typedef unsigned int wdigit; /* digit widened to parameter size */ #define BASE_TWODIGITS_TYPE long typedef unsigned BASE_TWODIGITS_TYPE twodigits; typedef BASE_TWODIGITS_TYPE stwodigits; /* signed variant of twodigits */ #define PyLong_SHIFT 15 #define PyLong_BASE ((digit)1 << PyLong_SHIFT) #define PyLong_MASK ((int)(PyLong_BASE - 1)) /* b/w compatibility with Python 2.5 */ #define SHIFT PyLong_SHIFT #define BASE PyLong_BASE #define MASK PyLong_MASK #if PyLong_SHIFT % 5 != 0 #error "longobject.c requires that PyLong_SHIFT be divisible by 5" #endif /* Long integer representation. The absolute value of a number is equal to SUM(for i=0 through abs(ob_size)-1) ob_digit[i] * 2**(SHIFT*i) Negative numbers are represented with ob_size < 0; zero is represented by ob_size == 0. In a normalized number, ob_digit[abs(ob_size)-1] (the most significant digit) is never zero. Also, in all cases, for all valid i, 0 <= ob_digit[i] <= MASK. The allocation function takes care of allocating extra memory so that ob_digit[0] ... ob_digit[abs(ob_size)-1] are actually available. CAUTION: Generic code manipulating subtypes of PyVarObject has to aware that longs abuse ob_size's sign bit. */ struct _longobject { PyObject_VAR_HEAD digit ob_digit[1]; }; PyAPI_FUNC(PyLongObject *) _PyLong_New(Py_ssize_t); /* Return a copy of src. */ PyAPI_FUNC(PyObject *) _PyLong_Copy(PyLongObject *src); #ifdef __cplusplus } #endif #endif /* !Py_LONGINTREPR_H */
Upload File
Create Folder