Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dintobject.h47 PyAPI_FUNC(unsigned long) PyInt_AsUnsignedLongMask(PyObject *);
/external/python/cpython2/Python/
Dgetargs.c657 ival = PyInt_AsUnsignedLongMask(arg); in convertsimple()
694 ival = PyInt_AsUnsignedLongMask(arg); in convertsimple()
731 ival = (unsigned int)PyInt_AsUnsignedLongMask(arg); in convertsimple()
771 ival = PyInt_AsUnsignedLongMask(arg); in convertsimple()
799 ival = PyInt_AsUnsignedLongMask(arg); in convertsimple()
/external/python/cpython2/Modules/_ctypes/
Dcfield.c371 x = PyInt_AsUnsignedLongMask(v); in get_long()
389 x = PyInt_AsUnsignedLongMask(v); in get_ulong()
1368 *(char **)ptr = (char *)PyInt_AsUnsignedLongMask(value); in z_set()
1417 *(wchar_t **)ptr = (wchar_t *)PyInt_AsUnsignedLongMask(value); in Z_set()
1575 v = (void *)PyInt_AsUnsignedLongMask(value); in P_set()
D_ctypes.c3426 *pname = MAKEINTRESOURCEA(PyInt_AsUnsignedLongMask(obj) & 0xFFFF); in _get_name()
/external/python/cpython2/Modules/_multiprocessing/
Dwin32_functions.c185 dwArgs[i] = PyInt_AsUnsignedLongMask(oArgs[i]); in win32_SetNamedPipeHandleState()
/external/python/cpython2/Doc/c-api/
Dint.rst99 .. c:function:: unsigned long PyInt_AsUnsignedLongMask(PyObject *io)
/external/python/cpython2/PC/os2emx/
Dpython27.def356 "PyInt_AsUnsignedLongMask"
/external/python/cpython2/Modules/
D_testcapimodule.c1202 value = PyInt_AsUnsignedLongMask(num); in test_k_code()
1222 value = PyInt_AsUnsignedLongMask(num); in test_k_code()
Dselectmodule.c1353 self->e.ident = PyInt_AsUnsignedLongMask(pfd); in kqueue_event_init()
/external/python/cpython2/Objects/
Dintobject.c262 PyInt_AsUnsignedLongMask(register PyObject *op) in PyInt_AsUnsignedLongMask() function
Dlongobject.c462 return PyInt_AsUnsignedLongMask(vv); in PyLong_AsUnsignedLongMask()