HomeSort by relevance Sort by last modified time
    Searched defs:PyByteArray_FromStringAndSize (Results 1 - 4 of 4) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytearrayobject.c 168 PyByteArray_FromStringAndSize(const char *bytes, Py_ssize_t size)
175 "Negative size passed to PyByteArray_FromStringAndSize");
295 result = (PyByteArrayObject *) PyByteArray_FromStringAndSize(NULL, size);
363 result = (PyByteArrayObject *)PyByteArray_FromStringAndSize(NULL, size);
446 return PyByteArray_FromStringAndSize("", 0);
448 return PyByteArray_FromStringAndSize(self->ob_bytes + start,
463 result = PyByteArray_FromStringAndSize(result_buf, slicelength);
1115 #define STRINGLIB_NEW PyByteArray_FromStringAndSize
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytearrayobject.c 168 PyByteArray_FromStringAndSize(const char *bytes, Py_ssize_t size)
175 "Negative size passed to PyByteArray_FromStringAndSize");
295 result = (PyByteArrayObject *) PyByteArray_FromStringAndSize(NULL, size);
363 result = (PyByteArrayObject *)PyByteArray_FromStringAndSize(NULL, size);
446 return PyByteArray_FromStringAndSize("", 0);
448 return PyByteArray_FromStringAndSize(self->ob_bytes + start,
463 result = PyByteArray_FromStringAndSize(result_buf, slicelength);
1111 #define STRINGLIB_NEW PyByteArray_FromStringAndSize
    [all...]
  /external/python/cpython2/Objects/
bytearrayobject.c 168 PyByteArray_FromStringAndSize(const char *bytes, Py_ssize_t size)
175 "Negative size passed to PyByteArray_FromStringAndSize");
294 PyByteArray_FromStringAndSize(NULL, va.len + vb.len);
362 result = (PyByteArrayObject *)PyByteArray_FromStringAndSize(NULL, size);
445 return PyByteArray_FromStringAndSize("", 0);
447 return PyByteArray_FromStringAndSize(self->ob_bytes + start,
462 result = PyByteArray_FromStringAndSize(result_buf, slicelength);
1120 #define STRINGLIB_NEW PyByteArray_FromStringAndSize
    [all...]
  /external/python/cpython3/Objects/
bytearrayobject.c 106 PyByteArray_FromStringAndSize(const char *bytes, Py_ssize_t size)
113 "Negative size passed to PyByteArray_FromStringAndSize");
267 PyByteArray_FromStringAndSize(NULL, va.len + vb.len);
329 result = (PyByteArrayObject *)PyByteArray_FromStringAndSize(NULL, size);
410 return PyByteArray_FromStringAndSize("", 0);
412 return PyByteArray_FromStringAndSize(
420 result = PyByteArray_FromStringAndSize(NULL, slicelength);
1083 #define STRINGLIB_NEW PyByteArray_FromStringAndSize
1136 return PyByteArray_FromStringAndSize(PyByteArray_AS_STRING((PyObject *)self),
    [all...]

Completed in 406 milliseconds