Lines Matching defs:size

713      *  * We don't know its size in advance--it may be
819 * * We don't know its size in advance--it may be
2119 (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\
2134 {"st_size", "total size, in bytes"},
3100 long size = sysconf(_SC_TTY_NAME_MAX);
3101 if (size == -1) {
3104 char *buffer = (char *)PyMem_RawMalloc(size);
3108 int ret = ttyname_r(fd, buffer, size);
5703 Py_ssize_t size;
5709 *out = PyUnicode_AsWideCharString(ub, &size);
5715 size = PyBytes_GET_SIZE(ub);
5716 *out = PyMem_Malloc(size + 1);
5718 memcpy(*out, PyBytes_AS_STRING(ub), size + 1);
6499 uStackSize=0 cannot be used, the default stack size is too small for
7707 /* Double the group list size */
10111 // when the offset is equal or bigger than the in_fd size.
10427 Py_ssize_t size;
10433 size = pwrite(fd, buffer->buf, (size_t)buffer->len, offset);
10436 } while (size < 0 && errno == EINTR && !(async_err = PyErr_CheckSignals()));
10438 if (size < 0 && !async_err)
10440 return size;
11081 Py_ssize_t size;
11083 wchar_t *env = PyUnicode_AsWideCharString(unicode, &size);
11089 if (size > _MAX_ENV) {
13181 size: Py_ssize_t
13188 os_urandom_impl(PyObject *module, Py_ssize_t size)
13194 if (size < 0)
13197 bytes = PyBytes_FromStringAndSize(NULL, size);
13307 /* Terminal size querying */
13310 "A tuple of (columns, lines) for holding terminal window size");
13332 Return the size of the terminal window as (columns, lines).
14013 Py_ssize_t size;
14026 size = path_len + 1 + wcslen(filename) + 1;
14027 result = PyMem_New(wchar_t, size);
14099 Py_ssize_t size;
14114 size = path_len + 1 + filename_len + 1;
14115 result = PyMem_New(char, size);
14627 size: Py_ssize_t
14634 os_getrandom_impl(PyObject *module, Py_ssize_t size, int flags)
14640 if (size < 0) {
14645 bytes = PyBytes_FromStringAndSize(NULL, size);
14672 if (n != size) {