Home | History | Annotate | Download | only in tests

Lines Matching refs:l2

251       for (size_t l2 = 0; l2 < kSize; l2++) {
252 for (size_t s2 = 1; l2 + s2 <= kSize; s2++) {
253 // Poison [l1, l1+s1), [l2, l2+s2) and check result.
256 __asan_poison_memory_region(arr + l2, s2);
260 memset(expected + l2, true, s2);
265 // Unpoison [l1, l1+s1) and [l2, l2+s2) and check result.
268 __asan_unpoison_memory_region(arr + l2, s2);
272 memset(expected + l2, false, s2);