Home
last modified time | relevance | path

Searched refs:FORBIDDENBYTE (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Objects/
Dobmalloc.c1341 #undef FORBIDDENBYTE
1344 #define FORBIDDENBYTE 0xFB /* untouchable bytes at each end of a block */ macro
1501 memset(p + SST + 1 , FORBIDDENBYTE, SST-1); in _PyObject_DebugMallocApi()
1508 memset(tail, FORBIDDENBYTE, SST); in _PyObject_DebugMallocApi()
1577 assert(q[SST + i] == FORBIDDENBYTE); in _PyObject_DebugReallocApi()
1580 memset(tail, FORBIDDENBYTE, SST); in _PyObject_DebugReallocApi()
1627 if (*(q-i) != FORBIDDENBYTE) { in _PyObject_DebugCheckAddressApi()
1636 if (tail[i] != FORBIDDENBYTE) { in _PyObject_DebugCheckAddressApi()
1676 if (*(q-i) != FORBIDDENBYTE) { in _PyObject_DebugDumpAddress()
1685 FORBIDDENBYTE); in _PyObject_DebugDumpAddress()
[all …]
/external/python/cpython3/Misc/
DSpecialBuilds.txt96 #define FORBIDDENBYTE 0xFB /* forbidden -- untouchable bytes */
113 Copies of FORBIDDENBYTE. Used to catch under- writes and reads.
123 Copies of FORBIDDENBYTE. Used to catch over- writes and reads.
/external/python/cpython2/Misc/
DSpecialBuilds.txt94 #define FORBIDDENBYTE 0xFB /* forbidden -- untouchable bytes */
109 Copies of FORBIDDENBYTE. Used to catch under- writes and reads.
119 Copies of FORBIDDENBYTE. Used to catch over- writes and reads.
/external/python/cpython3/Doc/c-api/
Dmemory.rst445 are surrounded by "forbidden bytes" (``FORBIDDENBYTE``: byte ``0xFD``).
477 ``0xFB`` (``FORBIDDENBYTE``) have been replaced with ``0xCD``, ``0xDD``
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a4.rst1368 Change the value of ``CLEANBYTE``, ``DEADDYTE`` and ``FORBIDDENBYTE``
/external/python/cpython3/Doc/whatsnew/
D3.6.rst675 The 7 pad bytes at p-7 are FORBIDDENBYTE, as expected.
676 The 8 pad bytes at tail=0x7fbcd41666fc are not all FORBIDDENBYTE (0xfb):