Home
last modified time | relevance | path

Searched refs:DEADBYTE (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dobmalloc.c1340 #undef DEADBYTE
1343 #define DEADBYTE 0xDB /* dead (newly freed) memory */ macro
1531 memset(q, DEADBYTE, nbytes); in _PyObject_DebugFreeApi()
1557 memset(q + nbytes, DEADBYTE, original_nbytes - nbytes + 2*SST); in _PyObject_DebugReallocApi()
/external/python/cpython2/Misc/
DSpecialBuilds.txt93 #define DEADBYTE 0xDB /* dead (newly freed) memory */
115 DEADBYTE, to catch reference to freed memory. When a realloc- like function
117 filled with DEADBYTE.