Lines Matching defs:size
1072 Py_ssize_t size;
1104 size = PyBytes_GET_SIZE(s);
1108 size = PyByteArray_GET_SIZE(s);
1121 size = PyBytes_GET_SIZE(s);
1137 needed size is allocated and the data
1145 set to the size of the buffer on input;
1151 the size of the buffer /excluding/ the
1166 *buffer = PyMem_NEW(char, size + 1);
1179 if (size + 1 > *psize) {
1184 (Py_ssize_t)size, (Py_ssize_t)(*psize - 1));
1188 memcpy(*buffer, ptr, size+1);
1190 *psize = size;
1199 - a new buffer of the needed size is
1206 if ((Py_ssize_t)strlen(ptr) != size) {
1212 *buffer = PyMem_NEW(char, size + 1);
1223 memcpy(*buffer, ptr, size+1);