Home
last modified time | relevance | path

Searched refs:do_mktuple (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
Dmodsupport.c153 static PyObject *do_mktuple(const char**, va_list *, int, int, int);
286 do_mktuple(const char **p_format, va_list *p_va, int endchar, int n, int flags) in do_mktuple() function
324 return do_mktuple(p_format, p_va, ')', in do_mkvalue()
564 return do_mktuple(&f, &lva, '\0', n, flags); in va_build_value()
/external/python/cpython3/Python/
Dmodsupport.c88 static PyObject *do_mktuple(const char**, va_list *, char, Py_ssize_t, int);
250 do_mktuple(const char **p_format, va_list *p_va, char endchar, Py_ssize_t n, int flags) in do_mktuple() function
288 return do_mktuple(p_format, p_va, ')', in do_mkvalue()
548 retval = do_mktuple(&f, &lva, '\0', n, flags); in va_build_value()