Searched refs:last_allocated_bytes (Results 1 – 3 of 3) sorted by relevance
29 size_t last_allocated_bytes = 0; in TestCheckForLeaks() local36 } else if (last_allocated_bytes > first_allocated_bytes) { in TestCheckForLeaks()38 ASSERT_LE(last_allocated_bytes - first_allocated_bytes, kMaxAllowedLeakBytes); in TestCheckForLeaks()40 last_allocated_bytes = allocated_bytes; in TestCheckForLeaks()
80 static void CheckForLeak(size_t loop, size_t* first_allocated_bytes, size_t* last_allocated_bytes) { in CheckForLeak() argument84 } else if (*last_allocated_bytes > *first_allocated_bytes) { in CheckForLeak()86 ASSERT_LE(*last_allocated_bytes - *first_allocated_bytes, kMaxAllowedLeakBytes) in CheckForLeak()88 << " last_allocated_bytes " << *last_allocated_bytes; in CheckForLeak()90 *last_allocated_bytes = allocated_bytes; in CheckForLeak()101 size_t last_allocated_bytes = 0; in TEST() local104 ASSERT_NO_FATAL_FAILURE(CheckForLeak(i, &first_allocated_bytes, &last_allocated_bytes)); in TEST()138 size_t last_allocated_bytes = 0; in TEST() local141 ASSERT_NO_FATAL_FAILURE(CheckForLeak(i, &first_allocated_bytes, &last_allocated_bytes)); in TEST()
1847 size_t last_allocated_bytes = 0; in CheckForLeak() local1858 } else if (last_allocated_bytes > first_allocated_bytes) { in CheckForLeak()1860 ASSERT_LE(last_allocated_bytes - first_allocated_bytes, MAX_LEAK_BYTES); in CheckForLeak()1862 last_allocated_bytes = allocated_bytes; in CheckForLeak()