Lines Matching refs:l1
626 for (size_t l1 = 0; l1 < kSize; l1++) {
627 for (size_t s1 = 1; l1 + s1 <= kSize; s1++) {
630 // Poison [l1, l1+s1), [l2, l2+s2) and check result.
632 __asan_poison_memory_region(arr + l1, s1);
635 memset(expected + l1, true, s1);
642 // Unpoison [l1, l1+s1) and [l2, l2+s2) and check result.
644 __asan_unpoison_memory_region(arr + l1, s1);
647 memset(expected + l1, false, s1);