Home
last modified time | relevance | path

Searched refs:PY_SSIZE_T_MIN (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Modules/_multiprocessing/
Dmultiprocessing.h70 #if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
73 # define PY_SSIZE_T_MIN INT_MIN macro
Dconnection.h100 Py_ssize_t length, offset=0, size=PY_SSIZE_T_MIN; in connection_sendbytes()
118 if (size == PY_SSIZE_T_MIN) { in connection_sendbytes()
/external/libmojo/third_party/markupsafe/
D_speedups.c17 #if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
20 #define PY_SSIZE_T_MIN INT_MIN macro
/external/python/cpython2/Modules/_io/
D_iomodule.h118 # define PY_OFF_T_MIN PY_SSIZE_T_MIN
/external/python/cpython2/Lib/test/
Dtest_getargs2.py46 INT_MIN, LONG_MIN, LONG_MAX, PY_SSIZE_T_MIN, PY_SSIZE_T_MAX, \
271 self.assertRaises(OverflowError, getargs_n, PY_SSIZE_T_MIN-1)
272 self.assertEqual(PY_SSIZE_T_MIN, getargs_n(PY_SSIZE_T_MIN))
/external/python/cpython2/Include/
Dpyport.h204 #define PY_SSIZE_T_MIN (-PY_SSIZE_T_MAX-1) macro
/external/python/cpython2/Modules/
D_json.c6 #if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
9 #define PY_SSIZE_T_MIN INT_MIN macro
D_testcapimodule.c2789 PyModule_AddObject(m, "PY_SSIZE_T_MIN", PyInt_FromSsize_t(PY_SSIZE_T_MIN)); in init_testcapi()
/external/python/cpython2/Doc/c-api/
Dnumber.rst311 exception is cleared and the value is clipped to *PY_SSIZE_T_MIN* for a negative
/external/python/cpython2/Objects/
Dlongobject.c221 #define PY_ABS_SSIZE_T_MIN (0-(size_t)PY_SSIZE_T_MIN)
395 return PY_SSIZE_T_MIN; in PyLong_AsSsize_t()
Dabstract.c1549 result = PY_SSIZE_T_MIN;