/aosp_15_r20/external/python/cpython2/Objects/ |
D | bytearrayobject.c | 176 result = PyByteArray_FromStringAndSize(NULL, view.len); in _PyByteArray_FromBufferObject() 188 PyByteArray_FromStringAndSize(const char *bytes, Py_ssize_t size) in PyByteArray_FromStringAndSize() function 314 PyByteArray_FromStringAndSize(NULL, va.len + vb.len); in PyByteArray_Concat() 382 result = (PyByteArrayObject *)PyByteArray_FromStringAndSize(NULL, size); in bytearray_repeat() 465 return PyByteArray_FromStringAndSize("", 0); in bytearray_subscript() 467 return PyByteArray_FromStringAndSize(self->ob_bytes + start, in bytearray_subscript() 482 result = PyByteArray_FromStringAndSize(result_buf, slicelength); in bytearray_subscript() 506 values = PyByteArray_FromStringAndSize(PyByteArray_AS_STRING(values), in bytearray_setslice() 1141 #define STRINGLIB_NEW PyByteArray_FromStringAndSize 1508 result = PyByteArray_FromStringAndSize((char *)NULL, inlen); in bytearray_translate() [all …]
|
D | bytesobject.c | 3281 writer->buffer = PyByteArray_FromStringAndSize(NULL, allocated); in _PyBytesWriter_Resize() 3390 result = PyByteArray_FromStringAndSize(writer->small_buffer, size); in _PyBytesWriter_Finish()
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | bytearrayobject.c | 96 result = PyByteArray_FromStringAndSize(NULL, view.len); in _PyByteArray_FromBufferObject() 108 PyByteArray_FromStringAndSize(const char *bytes, Py_ssize_t size) in PyByteArray_FromStringAndSize() function 269 PyByteArray_FromStringAndSize(NULL, va.len + vb.len); in PyByteArray_Concat() 329 PyByteArrayObject* result = (PyByteArrayObject *)PyByteArray_FromStringAndSize(NULL, size); in bytearray_repeat() 399 return PyByteArray_FromStringAndSize("", 0); in bytearray_subscript() 401 return PyByteArray_FromStringAndSize( in bytearray_subscript() 409 result = PyByteArray_FromStringAndSize(NULL, slicelength); in bytearray_subscript() 526 values = PyByteArray_FromStringAndSize(PyByteArray_AS_STRING(values), in bytearray_setslice() 1109 #define STRINGLIB_NEW PyByteArray_FromStringAndSize 1162 return PyByteArray_FromStringAndSize(PyByteArray_AS_STRING((PyObject *)self), in bytearray_copy_impl() [all …]
|
D | bytesobject.c | 3413 writer->buffer = PyByteArray_FromStringAndSize(NULL, allocated); in _PyBytesWriter_Resize() 3523 result = PyByteArray_FromStringAndSize(writer->small_buffer, size); in _PyBytesWriter_Finish()
|
/aosp_15_r20/external/AFLplusplus/src/ |
H A D | afl-fuzz-python.c | 84 py_value = PyByteArray_FromStringAndSize(buf, buf_size); in fuzz_py() 95 py_value = PyByteArray_FromStringAndSize(add_buf, add_buf_size); in fuzz_py() 209 PyObject *unused_bytes = PyByteArray_FromStringAndSize("OHAI", 4); in init_py_module() 525 py_value = PyByteArray_FromStringAndSize(buf, buf_size); in post_process_py() 581 py_value = PyByteArray_FromStringAndSize(buf, buf_size); in init_trim_py() 619 py_value = PyByteArray_FromStringAndSize(buf, buf_size); in fuzz_count_py() 739 py_value = PyByteArray_FromStringAndSize(buf, buf_size); in havoc_mutation_py() 918 py_value = PyByteArray_FromStringAndSize(buf, buf_size); in fuzz_send_py()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/ |
D | bytearrayobject.h | 30 PyAPI_FUNC(PyObject *) PyByteArray_FromStringAndSize(const char *, Py_ssize_t);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/ |
D | bytearrayobject.h | 30 PyAPI_FUNC(PyObject *) PyByteArray_FromStringAndSize(const char *, Py_ssize_t);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/ |
D | bytearrayobject.h | 30 PyAPI_FUNC(PyObject *) PyByteArray_FromStringAndSize(const char *, Py_ssize_t);
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | bytearrayobject.h | 30 PyAPI_FUNC(PyObject *) PyByteArray_FromStringAndSize(const char *, Py_ssize_t);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/ |
D | bytearrayobject.h | 30 PyAPI_FUNC(PyObject *) PyByteArray_FromStringAndSize(const char *, Py_ssize_t);
|
/aosp_15_r20/external/python/cpython2/Include/ |
D | bytearrayobject.h | 41 PyAPI_FUNC(PyObject *) PyByteArray_FromStringAndSize(const char *, Py_ssize_t);
|
/aosp_15_r20/external/python/cpython2/Modules/_io/ |
D | iobase.c | 471 buffer = PyByteArray_FromStringAndSize(NULL, 0); in iobase_readline() 816 b = PyByteArray_FromStringAndSize(NULL, n); in rawiobase_read()
|
/aosp_15_r20/external/python/cpython3/Modules/_io/ |
D | iobase.c | 542 buffer = PyByteArray_FromStringAndSize(NULL, 0); in _io__IOBase_readline_impl() 918 b = PyByteArray_FromStringAndSize(NULL, n); in _io__RawIOBase_read_impl()
|
/aosp_15_r20/external/python/cpython2/Doc/c-api/ |
D | bytearray.rst | 49 .. c:function:: PyObject* PyByteArray_FromStringAndSize(const char *string, Py_ssize_t len)
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | bytearray.rst | 46 .. c:function:: PyObject* PyByteArray_FromStringAndSize(const char *string, Py_ssize_t len)
|
/aosp_15_r20/external/dtc/pylibfdt/ |
H A D | libfdt.i | 1081 buff = PyByteArray_FromStringAndSize(
|
/aosp_15_r20/external/libnl/python/netlink/ |
H A D | capi.i | 810 $result = PyByteArray_FromStringAndSize($1, nla_len(arg1));
|
/aosp_15_r20/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 93 PyByteArray_FromStringAndSize:PyObject*::+1: 94 PyByteArray_FromStringAndSize:const char*:string:: 95 PyByteArray_FromStringAndSize:Py_ssize_t:len::
|
D | stable_abi.dat | 25 function,PyByteArray_FromStringAndSize,3.2,,
|
/aosp_15_r20/external/python/cpython3/PC/ |
D | python3dll.c | 109 EXPORT_FUNC(PyByteArray_FromStringAndSize)
|
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/ |
D | cursor.c | 421 converted = PyByteArray_FromStringAndSize(text, nbytes); in _pysqlite_fetch_one_row()
|
/aosp_15_r20/external/python/cpython3/Misc/ |
D | stable_abi.toml | 412 [function.PyByteArray_FromStringAndSize]
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | _pickle.c | 5571 bytearray = PyByteArray_FromStringAndSize(NULL, size); in load_counted_bytearray()
|
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/ |
D | 2.6.rst | 1016 :c:func:`PyByteArray_FromStringAndSize`,
|
/aosp_15_r20/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 1012 :c:func:`PyByteArray_FromStringAndSize`,
|