Home | History | Annotate | Download | only in tests

Lines Matching refs:l1

625   for (size_t l1 = 0; l1 < kSize; l1++) {
626 for (size_t s1 = 1; l1 + s1 <= kSize; s1++) {
629 // Poison [l1, l1+s1), [l2, l2+s2) and check result.
631 __asan_poison_memory_region(arr + l1, s1);
634 memset(expected + l1, true, s1);
641 // Unpoison [l1, l1+s1) and [l2, l2+s2) and check result.
643 __asan_unpoison_memory_region(arr + l1, s1);
646 memset(expected + l1, false, s1);