Searched refs:DEADBYTE (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Objects/ |
D | obmalloc.c | 1952 #undef DEADBYTE 1955 #define DEADBYTE 0xDB /* dead (newly freed) memory */ macro 2102 if (bytes[i] != DEADBYTE) { in _PyMem_IsFreed() 2130 memset(q, DEADBYTE, nbytes); in _PyMem_DebugRawFree() 2171 memset(data - 2*SST, DEADBYTE, original_nbytes + 4*SST); in _PyMem_DebugRawRealloc() 2175 memset(head, DEADBYTE, ERASED_SIZE + 2*SST); in _PyMem_DebugRawRealloc() 2177 memset(tail - ERASED_SIZE, DEADBYTE, ERASED_SIZE + 2*SST); in _PyMem_DebugRawRealloc()
|
/external/python/cpython2/Objects/ |
D | obmalloc.c | 1340 #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/cpython3/Misc/ |
D | SpecialBuilds.txt | 95 #define DEADBYTE 0xDB /* dead (newly freed) memory */ 119 DEADBYTE, to catch reference to freed memory. When a realloc- like function 121 filled with DEADBYTE.
|
/external/python/cpython2/Misc/ |
D | SpecialBuilds.txt | 93 #define DEADBYTE 0xDB /* dead (newly freed) memory */ 115 DEADBYTE, to catch reference to freed memory. When a realloc- like function 117 filled with DEADBYTE.
|