Home
last modified time | relevance | path

Searched refs:FORBIDDENBYTE (Results 1 – 2 of 2) 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()
1571 assert(q[SST + i] == FORBIDDENBYTE); in _PyObject_DebugReallocApi()
1574 memset(tail, FORBIDDENBYTE, SST); in _PyObject_DebugReallocApi()
1621 if (*(q-i) != FORBIDDENBYTE) { in _PyObject_DebugCheckAddressApi()
1630 if (tail[i] != FORBIDDENBYTE) { in _PyObject_DebugCheckAddressApi()
1670 if (*(q-i) != FORBIDDENBYTE) { in _PyObject_DebugDumpAddress()
1679 FORBIDDENBYTE); in _PyObject_DebugDumpAddress()
[all …]
/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.