Home
last modified time | relevance | path

Searched refs:overallocate (Results 1 – 22 of 22) sorted by relevance

/third_party/python/Include/cpython/
Dbytesobject.h60 int overallocate; member
Dunicodeobject.h618 unsigned char overallocate; member
/third_party/python/Objects/
Dbytesobject.c242 writer.overallocate = 1; in PyBytes_FromFormatV()
635 writer.overallocate = 1; in _PyBytes_FormatEx()
840 writer.overallocate = 0; in _PyBytes_FormatEx()
1067 assert(writer.overallocate || fmtcnt == 0 || use_bytearray); in _PyBytes_FormatEx()
1105 writer.overallocate = 1; in _PyBytes_DecodeEscape()
2689 writer.overallocate = 1; in _PyBytes_FromList()
2771 writer.overallocate = 1; in _PyBytes_FromIterator()
3313 assert(!writer->overallocate); in _PyBytesWriter_CheckConsistency()
3338 if (writer->overallocate in _PyBytesWriter_Resize()
Dtupleobject.c323 writer.overallocate = 1; in tuplerepr()
356 writer.overallocate = 0; in tuplerepr()
Dstructseq.c251 writer.overallocate = 1; in structseq_repr()
Dunicodeobject.c2925 writer->overallocate = 0; in unicode_fromformat_arg()
3147 writer.overallocate = 1; in PyUnicode_FromFormatV()
3178 writer.overallocate = 0; in PyUnicode_FromFormatV()
4652 writer->overallocate = 1; in unicode_decode_call_errorhandler_writer()
7238 writer.overallocate = (collend < size); in unicode_encode_ucs1()
7338 assert(writer.overallocate || pos == size); in unicode_encode_ucs1()
8453 writer->overallocate = 1; in charmap_decode_mapping()
14124 if (writer->overallocate in _PyUnicodeWriter_PrepareInternal()
14137 if (writer->overallocate in _PyUnicodeWriter_PrepareInternal()
14229 if (writer->buffer == NULL && !writer->overallocate) { in _PyUnicodeWriter_WriteStr()
[all …]
Dlistobject.c378 writer.overallocate = 1; in list_repr()
404 writer.overallocate = 0; in list_repr()
Ddictobject.c2112 writer.overallocate = 1; in dict_repr()
2160 writer.overallocate = 0; in dict_repr()
/third_party/python/Objects/stringlib/
Dunicode_format.h885 writer->overallocate = 0; in do_markup()
893 writer->overallocate = 0; in do_markup()
922 writer.overallocate = 1; in build_string()
Dcodecs.h327 writer->overallocate = (endpos < size); in STRINGLIB()
424 assert(writer->overallocate || i == size); in STRINGLIB()
/third_party/python/Python/
Dast_unparse.c626 body_writer.overallocate = 1; in build_fstring_body()
963 writer.overallocate = 1; in expr_as_unicode()
/third_party/python/Modules/
Dbinascii.c872 writer.overallocate = 1; in binascii_rledecode_hqx_impl()
D_json.c401 writer.overallocate = 1; in scanstring_unicode()
D_pickle.c2596 writer.overallocate = 1; in raw_unicode_escape()
/third_party/mesa3d/docs/relnotes/
D19.0.0.rst1756 - winsys/amdgpu: overallocate buffers for faster address translation on
1764 - Revert "winsys/amdgpu: overallocate buffers for faster address
D21.1.0.rst3531 - mesa: don't overallocate ParameterValues 4 times (v2)
5100 - radv: do not overallocate the SQTT buffer
5138 - Revert "radv: do not overallocate the SQTT buffer"
5139 - radeonsi,radv: do not overallocate the SQTT buffer size
D21.0.0.rst2232 - mesa: overallocate program parameter values
D21.3.0.rst1739 - v3dv: don't overallocate tile state for meta TLB operations
D20.3.0.rst497 - panfrost: Don't overallocate attributes
D21.2.0.rst913 - agx: Ensure we don't overallocate registers
/third_party/python/Doc/whatsnew/
D3.8.rst1511 * The :class:`list` constructor does not overallocate the internal item buffer
/third_party/python/Misc/
DHISTORY16085 - Issue #3327: Don't overallocate in the modules_by_index list.