Lines Matching defs:count
5692 free_string_array(EXECV_CHAR **array, Py_ssize_t count)
5695 for (i = 0; i < count; i++)
7285 int cpu, ncpus, count;
7312 for (cpu = 0, count = CPU_COUNT_S(setsize, mask); count; cpu++) {
7315 --count;
9931 count as sbytes: Py_off_t
9936 Copy count bytes from file descriptor in_fd to file descriptor out_fd.
9951 count: Py_ssize_t
9956 Copy count bytes from file descriptor in_fd to file descriptor out_fd.
9961 Py_ssize_t count, PyObject *headers, PyObject *trailers,
9971 count: Py_ssize_t
9973 Copy count bytes from file descriptor in_fd to file descriptor out_fd.
9978 Py_ssize_t count)
10058 ret = sendfile(in_fd, out_fd, offset, count, &sf, &sbytes, flags);
10097 ret = sendfile(out_fd, in_fd, NULL, count);
10137 ret = sendfile(out_fd, in_fd, &offset, count);
10556 count: Py_ssize_t
10563 Copy count bytes from one file descriptor to another.
10570 os_copy_file_range_impl(PyObject *module, int src, int dst, Py_ssize_t count,
10584 if (count < 0) {
10585 PyErr_SetString(PyExc_ValueError, "negative value for 'count' not allowed");
10605 ret = copy_file_range(src, p_offset_src, dst, p_offset_dst, count, flags);
10625 count: Py_ssize_t
10634 Transfer count bytes from one pipe to a descriptor or vice versa.
10642 os_splice_impl(PyObject *module, int src, int dst, Py_ssize_t count,
10653 if (count < 0) {
10654 PyErr_SetString(PyExc_ValueError, "negative value for 'count' not allowed");
10674 ret = splice(src, p_offset_src, dst, p_offset_dst, count, flags);
15260 /* Fails if link count of the named file is greater than 1 */