Home
last modified time | relevance | path

Searched refs:CLEANBYTE (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Misc/
DSpecialBuilds.txt94 #define CLEANBYTE 0xCB /* clean (newly allocated) memory */
115 The requested memory, filled with copies of CLEANBYTE, used to catch
118 CLEANBYTE. When a free-like function is called, these are overwritten with
/external/python/cpython2/Objects/
Dobmalloc.c1339 #undef CLEANBYTE
1342 #define CLEANBYTE 0xCB /* clean (newly allocated) memory */ macro
1504 memset(p + 2*SST, CLEANBYTE, nbytes); in _PyObject_DebugMallocApi()
1585 memset(q + original_nbytes, CLEANBYTE, in _PyObject_DebugReallocApi()
/external/python/cpython2/Misc/
DSpecialBuilds.txt92 #define CLEANBYTE 0xCB /* clean (newly allocated) memory */
111 The requested memory, filled with copies of CLEANBYTE, used to catch
114 CLEANBYTE. When a free-like function is called, these are overwritten with
/external/python/cpython3/Doc/c-api/
Dmemory.rst443 Newly allocated memory is filled with the byte ``0xCD`` (``CLEANBYTE``),
476 Byte patterns ``0xCB`` (``CLEANBYTE``), ``0xDB`` (``DEADBYTE``) and
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a4.rst1368 Change the value of ``CLEANBYTE``, ``DEADDYTE`` and ``FORBIDDENBYTE``