Searched refs:DEADBYTE (Results 1 - 2 of 2) sorted by relevance
/external/python/cpython2/Objects/ |
H A D | obmalloc.c | 1340 #undef DEADBYTE macro 1343 #define DEADBYTE 0xDB /* dead (newly freed) memory */ macro 1516 Then fills the original bytes with DEADBYTE. 1531 memset(q, DEADBYTE, nbytes); 1557 memset(q + nbytes, DEADBYTE, original_nbytes - nbytes + 2*SST); 1561 * case we didn't get the chance to mark the old memory with DEADBYTE,
|
/external/python/cpython3/Objects/ |
H A D | obmalloc.c | 1766 #undef DEADBYTE macro 1769 #define DEADBYTE 0xDB /* dead (newly freed) memory */ macro 1893 Then fills the original bytes with DEADBYTE. 1909 memset(q, DEADBYTE, nbytes); 1935 * case we didn't get the chance to mark the old memory with DEADBYTE, 1945 memset(q + nbytes, DEADBYTE, original_nbytes - nbytes);
|
Completed in 101 milliseconds