Searched refs:_PyBytesWriter_Alloc (Results 1 - 6 of 6) sorted by relevance

/external/python/cpython3/Include/
H A Dbytesobject.h185 PyAPI_FUNC(void*) _PyBytesWriter_Alloc(_PyBytesWriter *writer,
/external/python/cpython3/Modules/
H A Dbinascii.c365 ascii_data = _PyBytesWriter_Alloc(&writer, out_len);
453 bin_data = _PyBytesWriter_Alloc(&writer, bin_len);
553 ascii_data = _PyBytesWriter_Alloc(&writer, out_len);
618 bin_data = _PyBytesWriter_Alloc(&writer, len + 2);
691 out_data = _PyBytesWriter_Alloc(&writer, len * 2 + 2);
755 ascii_data = _PyBytesWriter_Alloc(&writer, len * 2 + 2);
811 out_data = _PyBytesWriter_Alloc(&writer, in_len);
H A D_pickle.c2121 p = _PyBytesWriter_Alloc(&writer, size);
/external/python/cpython3/Objects/
H A Dbytesobject.c199 s = _PyBytesWriter_Alloc(&writer, strlen(format));
597 res = _PyBytesWriter_Alloc(&writer, fmtcnt);
1121 p = _PyBytesWriter_Alloc(&writer, len);
2374 buf = _PyBytesWriter_Alloc(&writer, hexlen / 2);
2697 str = _PyBytesWriter_Alloc(&writer, size);
3333 _PyBytesWriter_Alloc(_PyBytesWriter *writer, Py_ssize_t size) function
3335 /* ensure that _PyBytesWriter_Alloc() is only called once */
H A Dunicodeobject.c6730 str = _PyBytesWriter_Alloc(&writer, size);
/external/python/cpython3/Objects/stringlib/
H A Dcodecs.h290 p = _PyBytesWriter_Alloc(&writer, size * max_char_size);

Completed in 502 milliseconds