Searched refs:zcurrent (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/osfmk/kern/
H A Dzalloc.c496 static int zcurrent = 0; /* index of the next slot in the log to use */ variable
1894 if (!corruption_debug_flag && zrecords[zcurrent].z_element && zrecorded < log_records) {
1899 * starting at zcurrent and wrap-around if we reach the end of the buffer. If the buffer
1900 * is already full, we just fall through and overwrite the element indexed by zcurrent.
1903 for (i = zcurrent; i < log_records; i++) {
1905 zcurrent = i;
1910 for (i = 0; i < zcurrent; i++) {
1912 zcurrent = i;
1923 if (zrecords[zcurrent].z_element == NULL)
1926 zrecords[zcurrent]
[all...]

Completed in 22 milliseconds