Searched refs:PYMEM_CLEANBYTE (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Include/internal/ |
D | pycore_pymem.h | 32 #define PYMEM_CLEANBYTE 0xCD macro
|
/third_party/python/Doc/c-api/ |
D | memory.rst | 504 ``0xCD`` (``PYMEM_CLEANBYTE``), freed memory is filled with the byte ``0xDD`` 545 The requested memory, filled with copies of PYMEM_CLEANBYTE, used to catch 548 PYMEM_CLEANBYTE. When a free-like function is called, these are 574 PYMEM_CLEANBYTE (meaning uninitialized memory is getting used). 585 Byte patterns ``0xCB`` (``PYMEM_CLEANBYTE``), ``0xDB`` (``PYMEM_DEADBYTE``)
|
/third_party/python/Objects/ |
D | obmalloc.c | 2478 memset(data, PYMEM_CLEANBYTE, nbytes); in _PyMem_DebugRawAlloc() 2625 memset(data + original_nbytes, PYMEM_CLEANBYTE, in _PyMem_DebugRawRealloc()
|
D | bytesobject.c | 3254 memset(writer->small_buffer, PYMEM_CLEANBYTE, in _PyBytesWriter_Init() 3384 memset(writer->small_buffer, PYMEM_CLEANBYTE, in _PyBytesWriter_Resize()
|