Home
last modified time | relevance | path

Searched refs:PyLong_AsUnsignedLongMask (Results 1 – 19 of 19) sorted by relevance

/third_party/python/Modules/clinic/
Dfcntlmodule.c.h121 code = (unsigned int)PyLong_AsUnsignedLongMask(args[1]); in fcntl_ioctl()
Dzlibmodule.c.h691 value = (unsigned int)PyLong_AsUnsignedLongMask(args[1]); in zlib_adler32()
749 value = (unsigned int)PyLong_AsUnsignedLongMask(args[1]); in zlib_crc32()
Dbinascii.c.h356 crc = (unsigned int)PyLong_AsUnsignedLongMask(args[1]); in binascii_crc_hqx()
409 crc = (unsigned int)PyLong_AsUnsignedLongMask(args[1]); in binascii_crc32()
Dselectmodule.c.h697 eventmask = (unsigned int)PyLong_AsUnsignedLongMask(args[1]); in select_epoll_register()
752 eventmask = (unsigned int)PyLong_AsUnsignedLongMask(args[1]); in select_epoll_modify()
Dsignalmodule.c.h596 thread_id = PyLong_AsUnsignedLongMask(args[0]); in signal_pthread_kill()
D_cursesmodule.c.h2527 bstate = PyLong_AsUnsignedLongMask(args[4]); in _curses_ungetmouse()
3470 newmask = PyLong_AsUnsignedLongMask(arg); in _curses_mousemask()
Dposixmodule.c.h622 flags = PyLong_AsUnsignedLongMask(args[1]); in os_chflags()
680 flags = PyLong_AsUnsignedLongMask(args[1]); in os_lchflags()
8039 flags = (unsigned int)PyLong_AsUnsignedLongMask(args[1]); in os_memfd_create()
/third_party/python/Include/
Dlongobject.h28 PyAPI_FUNC(unsigned long) PyLong_AsUnsignedLongMask(PyObject *);
/third_party/python/Modules/_ctypes/
Dcfield.c364 x = PyLong_AsUnsignedLongMask(v); in get_long()
383 x = PyLong_AsUnsignedLongMask(v); in get_ulong()
1329 *(char **)ptr = (char *)PyLong_AsUnsignedLongMask(value); in z_set()
1367 *(wchar_t **)ptr = (wchar_t *)PyLong_AsUnsignedLongMask(value); in Z_set()
1482 v = (void *)PyLong_AsUnsignedLongMask(value); in P_set()
D_ctypes.c2491 stgdict->flags = PyLong_AsUnsignedLongMask(ob) | TYPEFLAG_ISPOINTER; in make_funcptrtype_dict()
3524 *pname = MAKEINTRESOURCEA(PyLong_AsUnsignedLongMask(obj) & 0xFFFF); in _get_name()
3928 flag = PyLong_AsUnsignedLongMask(PyTuple_GET_ITEM(item, 0)); in _build_callargs()
/third_party/python/PC/clinic/
Dmsvcrtmodule.c.h661 mode = (unsigned int)PyLong_AsUnsignedLongMask(arg); in msvcrt_SetErrorMode()
/third_party/python/Python/
Dgetargs.c734 ival = PyLong_AsUnsignedLongMask(arg); in convertsimple()
771 ival = PyLong_AsUnsignedLongMask(arg); in convertsimple()
808 ival = (unsigned int)PyLong_AsUnsignedLongMask(arg); in convertsimple()
850 ival = PyLong_AsUnsignedLongMask(arg); in convertsimple()
/third_party/python/PC/
Dpython3.def331 PyLong_AsUnsignedLongMask=python39.PyLong_AsUnsignedLongMask
/third_party/python/Doc/c-api/
Dlong.rst275 .. c:function:: unsigned long PyLong_AsUnsignedLongMask(PyObject *obj)
/third_party/python/Lib/test/
Dclinic.test792 long ival = PyLong_AsUnsignedLongMask(args[2]);
933 c = (unsigned short)PyLong_AsUnsignedLongMask(args[2]);
1100 c = (unsigned int)PyLong_AsUnsignedLongMask(args[2]);
1221 c = PyLong_AsUnsignedLongMask(args[2]);
/third_party/python/Modules/
D_winapi.c1590 dwArgs[i] = PyLong_AsUnsignedLongMask(oArgs[i]); in _winapi_SetNamedPipeHandleState_impl()
D_testcapimodule.c1225 value = PyLong_AsUnsignedLongMask(num); in test_k_code()
1245 value = PyLong_AsUnsignedLongMask(num); in test_k_code()
/third_party/python/Doc/data/
Drefcounts.dat1170 PyLong_AsUnsignedLongMask:unsigned long:::
1171 PyLong_AsUnsignedLongMask:PyObject*:obj:0:
/third_party/python/Objects/
Dlongobject.c785 PyLong_AsUnsignedLongMask(PyObject *op) in PyLong_AsUnsignedLongMask() function