Lines Matching refs:_PyLong_AsInt
49 argcount = _PyLong_AsInt(PyTuple_GET_ITEM(args, 0)); in code_new()
53 posonlyargcount = _PyLong_AsInt(PyTuple_GET_ITEM(args, 1)); in code_new()
57 kwonlyargcount = _PyLong_AsInt(PyTuple_GET_ITEM(args, 2)); in code_new()
61 nlocals = _PyLong_AsInt(PyTuple_GET_ITEM(args, 3)); in code_new()
65 stacksize = _PyLong_AsInt(PyTuple_GET_ITEM(args, 4)); in code_new()
69 flags = _PyLong_AsInt(PyTuple_GET_ITEM(args, 5)); in code_new()
109 firstlineno = _PyLong_AsInt(PyTuple_GET_ITEM(args, 12)); in code_new()
198 co_argcount = _PyLong_AsInt(args[0]); in code_replace()
207 co_posonlyargcount = _PyLong_AsInt(args[1]); in code_replace()
216 co_kwonlyargcount = _PyLong_AsInt(args[2]); in code_replace()
225 co_nlocals = _PyLong_AsInt(args[3]); in code_replace()
234 co_stacksize = _PyLong_AsInt(args[4]); in code_replace()
243 co_flags = _PyLong_AsInt(args[5]); in code_replace()
252 co_firstlineno = _PyLong_AsInt(args[6]); in code_replace()