Searched refs:first_allocated_bytes (Results 1 – 3 of 3) sorted by relevance
28 size_t first_allocated_bytes = 0; in TestCheckForLeaks() local34 if (first_allocated_bytes == 0) { in TestCheckForLeaks()35 first_allocated_bytes = allocated_bytes; in TestCheckForLeaks()36 } else if (last_allocated_bytes > first_allocated_bytes) { in TestCheckForLeaks()38 ASSERT_LE(last_allocated_bytes - first_allocated_bytes, kMaxAllowedLeakBytes); in TestCheckForLeaks()
80 static void CheckForLeak(size_t loop, size_t* first_allocated_bytes, size_t* last_allocated_bytes) { in CheckForLeak() argument82 if (*first_allocated_bytes == 0) { in CheckForLeak()83 *first_allocated_bytes = allocated_bytes; in CheckForLeak()84 } else if (*last_allocated_bytes > *first_allocated_bytes) { in CheckForLeak()86 ASSERT_LE(*last_allocated_bytes - *first_allocated_bytes, kMaxAllowedLeakBytes) in CheckForLeak()87 << "Failed in loop " << loop << " first_allocated_bytes " << *first_allocated_bytes in CheckForLeak()100 size_t first_allocated_bytes = 0; in TEST() local104 ASSERT_NO_FATAL_FAILURE(CheckForLeak(i, &first_allocated_bytes, &last_allocated_bytes)); in TEST()137 size_t first_allocated_bytes = 0; in TEST() local141 ASSERT_NO_FATAL_FAILURE(CheckForLeak(i, &first_allocated_bytes, &last_allocated_bytes)); in TEST()
1846 size_t first_allocated_bytes = 0; in CheckForLeak() local1856 if (first_allocated_bytes == 0) { in CheckForLeak()1857 first_allocated_bytes = allocated_bytes; in CheckForLeak()1858 } else if (last_allocated_bytes > first_allocated_bytes) { in CheckForLeak()1860 ASSERT_LE(last_allocated_bytes - first_allocated_bytes, MAX_LEAK_BYTES); in CheckForLeak()