Searched refs:oob_distance (Results 1 - 3 of 3) sorted by relevance

/external/compiler-rt/lib/asan/tests/
H A Dasan_test_utils.h75 string RightOOBErrorMessage(int oob_distance, bool is_write);
76 string RightOOBWriteMessage(int oob_distance);
77 string RightOOBReadMessage(int oob_distance);
78 string LeftOOBErrorMessage(int oob_distance, bool is_write);
79 string LeftOOBWriteMessage(int oob_distance);
80 string LeftOOBReadMessage(int oob_distance);
81 string LeftOOBAccessMessage(int oob_distance);
H A Dasan_test.cc715 string RightOOBErrorMessage(int oob_distance, bool is_write) { argument
716 assert(oob_distance >= 0);
726 oob_distance);
730 string RightOOBWriteMessage(int oob_distance) { argument
731 return RightOOBErrorMessage(oob_distance, /*is_write*/true);
734 string RightOOBReadMessage(int oob_distance) { argument
735 return RightOOBErrorMessage(oob_distance, /*is_write*/false);
739 string LeftOOBErrorMessage(int oob_distance, bool is_write) { argument
740 assert(oob_distance > 0);
750 oob_distance);
754 LeftOOBWriteMessage(int oob_distance) argument
758 LeftOOBReadMessage(int oob_distance) argument
762 LeftOOBAccessMessage(int oob_distance) argument
[all...]
H A Dasan_str_test.cc43 string LeftOOBReadMessage(OOBKind oob_kind, int oob_distance) { argument
45 : ::LeftOOBReadMessage(oob_distance);
48 string RightOOBReadMessage(OOBKind oob_kind, int oob_distance) { argument
50 : ::RightOOBReadMessage(oob_distance);

Completed in 191 milliseconds